diff --git a/android/build.gradle b/android/build.gradle index cd1b1675..23974ed3 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -6,5 +6,5 @@ buildscript { } dependencies { - implementation 'com.facebook.android:facebook-android-sdk:15.1.0' + implementation 'com.facebook.android:facebook-android-sdk:16.0.0' } diff --git a/android/manifest b/android/manifest index 9fc81c2e..ea461978 100644 --- a/android/manifest +++ b/android/manifest @@ -2,7 +2,7 @@ # this is your module manifest and used by Titanium # during compilation, packaging, distribution, etc. # -version: 12.0.0 +version: 12.1.0 apiversion: 4 architectures: arm64-v8a armeabi-v7a x86 x86_64 description: facebook diff --git a/android/src/facebook/TiFacebookModule.java b/android/src/facebook/TiFacebookModule.java index 26d7ee6c..18365cee 100644 --- a/android/src/facebook/TiFacebookModule.java +++ b/android/src/facebook/TiFacebookModule.java @@ -133,8 +133,6 @@ public class TiFacebookModule extends KrollModule implements OnActivityResultEve @Kroll.constant public static final int LOGIN_BEHAVIOR_DEVICE_AUTH = 2; @Kroll.constant - public static final int LOGIN_BEHAVIOR_WEB = 3; - @Kroll.constant public static final int LOGIN_BEHAVIOR_NATIVE = 4; // TODO: Expose DIALOG_ONLY and KATANA_ONLY? @@ -466,9 +464,6 @@ public void setLoginBehavior(int behaviorConstant) case LOGIN_BEHAVIOR_BROWSER: loginBehavior = LoginBehavior.WEB_ONLY; break; - case LOGIN_BEHAVIOR_WEB: - loginBehavior = LoginBehavior.WEB_VIEW_ONLY; - break; case LOGIN_BEHAVIOR_DEVICE_AUTH: loginBehavior = LoginBehavior.DEVICE_AUTH; break; @@ -491,8 +486,6 @@ public int getLoginBehavior() switch (loginBehavior) { case WEB_ONLY: return LOGIN_BEHAVIOR_BROWSER; - case WEB_VIEW_ONLY: - return LOGIN_BEHAVIOR_WEB; case DEVICE_AUTH: return LOGIN_BEHAVIOR_DEVICE_AUTH; case NATIVE_ONLY: @@ -812,8 +805,14 @@ public void onSuccess(Sharer.Result results) } if (link != null) { - shareContent = - new ShareLinkContent.Builder().setContentUrl(Uri.parse(link)).setPlaceId(placeId).setRef(ref).build(); + ShareLinkContent.Builder builder = new ShareLinkContent.Builder().setContentUrl(Uri.parse(link)); + if (placeId != null) { + builder.setPlaceId(placeId); + } + if (ref != null) { + builder.setRef(ref); + } + shareContent = builder.build(); } else { Log.e(TAG, "The \"link\" property is required when showing a share dialog."); } diff --git a/ios/manifest b/ios/manifest index 44236079..2799e859 100644 --- a/ios/manifest +++ b/ios/manifest @@ -2,7 +2,7 @@ # this is your module manifest and used by Titanium # during compilation, packaging, distribution, etc. # -version: 13.0.0 +version: 14.0.0 apiversion: 2 description: Use the native Facebook iOS SDK in Axway Titanium. author: Mark Mokryn, Ng Chee Kiat and Hans Knoechel diff --git a/ios/platform/FBAEMKit.xcframework/Info.plist b/ios/platform/FBAEMKit.xcframework/Info.plist index aef04fce..3c485d86 100644 --- a/ios/platform/FBAEMKit.xcframework/Info.plist +++ b/ios/platform/FBAEMKit.xcframework/Info.plist @@ -5,24 +5,8 @@ AvailableLibraries - DebugSymbolsPath - dSYMs LibraryIdentifier - ios-arm64 - LibraryPath - FBAEMKit.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - ios - - - DebugSymbolsPath - dSYMs - LibraryIdentifier - ios-arm64_x86_64-simulator + ios-arm64_x86_64-maccatalyst LibraryPath FBAEMKit.framework SupportedArchitectures @@ -33,30 +17,23 @@ SupportedPlatform ios SupportedPlatformVariant - simulator + maccatalyst - DebugSymbolsPath - dSYMs LibraryIdentifier - ios-arm64_x86_64-maccatalyst + ios-arm64 LibraryPath FBAEMKit.framework SupportedArchitectures arm64 - x86_64 SupportedPlatform ios - SupportedPlatformVariant - maccatalyst - DebugSymbolsPath - dSYMs LibraryIdentifier - tvos-arm64_x86_64-simulator + ios-arm64_x86_64-simulator LibraryPath FBAEMKit.framework SupportedArchitectures @@ -65,24 +42,10 @@ x86_64 SupportedPlatform - tvos + ios SupportedPlatformVariant simulator - - DebugSymbolsPath - dSYMs - LibraryIdentifier - tvos-arm64 - LibraryPath - FBAEMKit.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - tvos - CFBundlePackageType XFWK diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/FBAEMKit b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/FBAEMKit old mode 100755 new mode 100644 index aee61c49..b86368b8 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/FBAEMKit and b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/FBAEMKit differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Headers/FBAEMKit-Swift.h b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Headers/FBAEMKit-Swift.h index 49c489a0..5fa6bbe1 100644 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Headers/FBAEMKit-Swift.h +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Headers/FBAEMKit-Swift.h @@ -1,4 +1,6 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +#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 FBAEMKIT_SWIFT_H #define FBAEMKIT_SWIFT_H #pragma clang diagnostic push @@ -21,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -181,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -191,6 +204,28 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" @@ -199,6 +234,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); @import ObjectiveC; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -206,6 +242,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -214,6 +251,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; SWIFT_PROTOCOL_NAMED("AEMNetworking") @@ -221,11 +259,15 @@ SWIFT_PROTOCOL_NAMED("AEMNetworking") - (void)startGraphRequestWithGraphPath:(NSString * _Nonnull)graphPath parameters:(NSDictionary * _Nonnull)parameters tokenString:(NSString * _Nullable)tokenString HTTPMethod:(NSString * _Nullable)method completion:(void (^ _Nonnull)(id _Nullable, NSError * _Nullable))completion; @end +@protocol FBSKAdNetworkReporting; +@protocol FBSDKDataPersisting; @class NSURL; @class NSNumber; SWIFT_CLASS_NAMED("AEMReporter") @interface FBAEMReporter : NSObject ++ (void)configureWithNetworker:(id _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id _Nullable)reporter; ++ (void)configureWithNetworker:(id _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id _Nullable)reporter analyticsAppID:(NSString * _Nullable)analyticsAppID store:(id _Nullable)store; /// Enable AEM reporting /// This function should be called in application(_:open:options:) from ApplicationDelegate + (void)enable; @@ -241,7 +283,7 @@ SWIFT_CLASS_NAMED("AEMReporter") + (void)setAdvertiserRuleMatchInServerEnabled:(BOOL)enabled; /// Handle deeplink /// This function should be called in application(_:open:options:) from ApplicationDelegate -+ (void)handle:(NSURL * _Nonnull)url; ++ (void)handle:(NSURL * _Nullable)url; /// Calculate the conversion value for the app event based on the AEM configuration /// This function should be called when you log any in-app events + (void)recordAndUpdateEvent:(NSString * _Nonnull)event currency:(NSString * _Nullable)currency value:(NSNumber * _Nullable)value parameters:(NSDictionary * _Nullable)parameters; @@ -256,8 +298,15 @@ SWIFT_PROTOCOL_NAMED("SKAdNetworkReporting") - (void)checkAndRevokeTimer; @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/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Info.plist b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Info.plist index a33aaac3..dcd77858 100644 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Info.plist and b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Info.plist differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.abi.json b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 00000000..36133bd5 --- /dev/null +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,17857 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "AEMAdvertiserMultiEntryRule", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type) -> FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8operatoryA2EmF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8operatoryA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "rules", + "printedName": "rules", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type) -> FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO5rulesyA2EmF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO5rulesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rules", + "printedName": "rules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(with:rules:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC4with5rulesAcA0bE8OperatorO_SayAA0bE8Matching_pGtcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC4with5rulesAcA0bE8OperatorO_SayAA0bE8Matching_pGtcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)init", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleFactory", + "printedName": "AEMAdvertiserRuleFactory", + "children": [ + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "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": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(dictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createMultiEntryRule", + "printedName": "createMultiEntryRule(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC016createMultiEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC016createMultiEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createSingleEntryRule", + "printedName": "createSingleEntryRule(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC017createSingleEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC017createSingleEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "primaryKey", + "printedName": "primaryKey(for:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC10primaryKey3forSSSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC10primaryKey3forSSSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getOperator", + "printedName": "getOperator(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC11getOperator4fromAA0bcF0OSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC11getOperator4fromAA0bcF0OSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOperatorForMultiEntryRule", + "printedName": "isOperatorForMultiEntryRule(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC023isOperatorForMultiEntryC0ySbAA0bcF0OF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC023isOperatorForMultiEntryC0ySbAA0bcF0OF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleFactory", + "printedName": "FBAEMKit.AEMAdvertiserRuleFactory", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryCACycfc", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleProviding", + "printedName": "AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "children": [ + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleOperator", + "printedName": "AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO7unknownyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO7unknownyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "and", + "printedName": "and", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO3andyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO3andyA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "or", + "printedName": "or", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO2oryA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO2oryA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "not", + "printedName": "not", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO3notyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO3notyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contains", + "printedName": "contains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8containsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8containsyA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "notContains", + "printedName": "notContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO11notContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO11notContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "startsWith", + "printedName": "startsWith", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO10startsWithyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO10startsWithyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "caseInsensitiveContains", + "printedName": "caseInsensitiveContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "caseInsensitiveNotContains", + "printedName": "caseInsensitiveNotContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO26caseInsensitiveNotContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO26caseInsensitiveNotContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "caseInsensitiveStartsWith", + "printedName": "caseInsensitiveStartsWith", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO25caseInsensitiveStartsWithyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO25caseInsensitiveStartsWithyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "regexMatch", + "printedName": "regexMatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO10regexMatchyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO10regexMatchyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "equal", + "printedName": "equal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO5equalyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO5equalyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "notEqual", + "printedName": "notEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8notEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8notEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "lessThan", + "printedName": "lessThan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8lessThanyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8lessThanyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "lessThanOrEqual", + "printedName": "lessThanOrEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO15lessThanOrEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO15lessThanOrEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "greaterThan", + "printedName": "greaterThan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO11greaterThanyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO11greaterThanyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "greaterThanOrEqual", + "printedName": "greaterThanOrEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO18greaterThanOrEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO18greaterThanOrEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "caseInsensitiveIsAny", + "printedName": "caseInsensitiveIsAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO20caseInsensitiveIsAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO20caseInsensitiveIsAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "caseInsensitiveIsNotAny", + "printedName": "caseInsensitiveIsNotAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveIsNotAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveIsNotAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 18 + }, + { + "kind": "Var", + "name": "isAny", + "printedName": "isAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO5isAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO5isAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 19 + }, + { + "kind": "Var", + "name": "isNotAny", + "printedName": "isNotAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8isNotAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8isNotAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 20 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueACSgSi_tcfc", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueACSgSi_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivp", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivg", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "Int", + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleProviding", + "printedName": "AEMAdvertiserRuleProviding", + "children": [ + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "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": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(dictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "AEMAdvertiserSingleEntryRule", + "children": [ + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvs", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvM", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "paramKey", + "printedName": "paramKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "linguisticCondition", + "printedName": "linguisticCondition", + "children": [ + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "numericalCondition", + "printedName": "numericalCondition", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arrayCondition", + "printedName": "arrayCondition", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(operator:paramKey:linguisticCondition:numericalCondition:arrayCondition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operator8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSdSgSaySSGSgtcfc", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operator8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSdSgSaySSGSgtcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(with:paramKey:linguisticCondition:numericalCondition:arrayCondition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC4with8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSo8NSNumberCSgSaySSGSgtcfc", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC4with8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSo8NSNumberCSgSaySSGSgtcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(eventParams:paramPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParameters11eventParams9paramPathSbSDySSypGSg_SaySSGtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParameters11eventParams9paramPathSbSDySSypGSg_SaySSGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withAsteriskParam:eventParameters:paramPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched17withAsteriskParam15eventParameters9paramPathSbSS_SDySSypGSaySSGtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched17withAsteriskParam15eventParameters9paramPathSbSS_SDySSypGSaySSGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withStringValue:numericalValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched15withStringValue09numericalJ0SbSSSg_SdSgtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched15withStringValue09numericalJ0SbSSSg_SdSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRegexMatch", + "printedName": "isRegexMatch(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC12isRegexMatchySbSSF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC12isRegexMatchySbSSF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isAny", + "printedName": "isAny(of:stringValue:ignoreCase:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC5isAny2of11stringValue10ignoreCaseSbSaySSG_SSSbtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC5isAny2of11stringValue10ignoreCaseSbSaySSG_SSSbtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "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@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "objc_name": "supportsSecureCoding", + "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@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cm)setSupportsSecureCoding:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvMZ", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)isEqual:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)init", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMConfiguration", + "printedName": "AEMConfiguration", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "defaultCurrency", + "printedName": "defaultCurrency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO15defaultCurrencyyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO15defaultCurrencyyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "cutoffTime", + "printedName": "cutoffTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO10cutoffTimeyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO10cutoffTimeyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "conversionValueRules", + "printedName": "conversionValueRules", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO20conversionValueRulesyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO20conversionValueRulesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "validFrom", + "printedName": "validFrom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO9validFromyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO9validFromyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO4modeyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO4modeyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "advertiserID", + "printedName": "advertiserID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO12advertiserIDyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO12advertiserIDyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO10businessIDyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO10businessIDyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "paramRule", + "printedName": "paramRule", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO9paramRuleyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO9paramRuleyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "cutoffTime", + "printedName": "cutoffTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC10cutoffTimeSivp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10cutoffTimeSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10cutoffTimeSivg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10cutoffTimeSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "validFrom", + "printedName": "validFrom", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC9validFromSivp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9validFromSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess", + "RawDocComment" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC9validFromSivg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9validFromSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultCurrency", + "printedName": "defaultCurrency", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC15defaultCurrencySSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC15defaultCurrencySSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC15defaultCurrencySSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC15defaultCurrencySSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC4modeSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4modeSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC4modeSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4modeSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "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:8FBAEMKit16AEMConfigurationC10businessIDSSSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10businessIDSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 4, + "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:8FBAEMKit16AEMConfigurationC10businessIDSSSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10businessIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "matchingRule", + "printedName": "matchingRule", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "conversionValueRules", + "printedName": "conversionValueRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventSet", + "printedName": "eventSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC8eventSetShySSGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC8eventSetShySSGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC8eventSetShySSGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC8eventSetShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currencySet", + "printedName": "currencySet", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC11currencySetShySSGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11currencySetShySSGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC11currencySetShySSGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11currencySetShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ruleProvider", + "printedName": "ruleProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvpZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvgZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(withRuleProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC9configure16withRuleProvideryAA013AEMAdvertiserE9Providing_p_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9configure16withRuleProvideryAA013AEMAdvertiserE9Providing_p_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC4jsonACSgSDySSypGSg_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4jsonACSgSDySSypGSg_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "parseRules", + "printedName": "parseRules(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBAEMKit.AEMRule]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC10parseRulesySayAA7AEMRuleCGSgSaySDySSypGGSgFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10parseRulesySayAA7AEMRuleCGSgSaySDySSypGGSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEventSet", + "printedName": "getEventSet(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC11getEventSet4fromShySSGSayAA7AEMRuleCG_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11getEventSet4fromShySSGSayAA7AEMRuleCG_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrencySet", + "printedName": "getCurrencySet(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC14getCurrencySet4fromShySSGSayAA7AEMRuleCG_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC14getCurrencySet4fromShySSGSayAA7AEMRuleCG_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSame", + "printedName": "isSame(validFrom:businessID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "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:8FBAEMKit16AEMConfigurationC6isSame9validFrom10businessIDSbSi_SSSgtF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC6isSame9validFrom10businessIDSbSi_SSSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSameBusinessID", + "printedName": "isSameBusinessID(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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:8FBAEMKit16AEMConfigurationC16isSameBusinessIDySbSSSgF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC16isSameBusinessIDySbSSSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit16AEMConfigurationC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)initWithCoder:", + "mangledName": "$s8FBAEMKit16AEMConfigurationC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)init", + "mangledName": "$s8FBAEMKit16AEMConfigurationCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration", + "mangledName": "$s8FBAEMKit16AEMConfigurationC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMEvent", + "printedName": "AEMEvent", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO9eventNameyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO9eventNameyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO6valuesyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO6valuesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8currencyyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8currencyyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO6amountyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO6amountyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC9eventNameSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC9eventNameSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC9eventNameSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC9eventNameSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC6valuesSDySSSdGSgvp", + "mangledName": "$s8FBAEMKit8AEMEventC6valuesSDySSSdGSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC6valuesSDySSSdGSgvg", + "mangledName": "$s8FBAEMKit8AEMEventC6valuesSDySSSdGSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dict:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC4dictACSgSDySSypGSg_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC4dictACSgSDySSypGSg_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit8AEMEventC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit8AEMEventC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)initWithCoder:", + "mangledName": "$s8FBAEMKit8AEMEventC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit8AEMEventC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)isEqual:", + "mangledName": "$s8FBAEMKit8AEMEventC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)init", + "mangledName": "$s8FBAEMKit8AEMEventCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent", + "mangledName": "$s8FBAEMKit8AEMEventC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "CommonCrypto.CommonHMAC", + "printedName": "CommonCrypto.CommonHMAC", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMInvocation", + "printedName": "AEMInvocation", + "children": [ + { + "kind": "Var", + "name": "campaignID", + "printedName": "campaignID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC10campaignIDSSvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "acsToken", + "printedName": "acsToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC8acsTokenSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC8acsTokenSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit13AEMInvocationC8acsTokenSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC8acsTokenSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "acsSharedSecret", + "printedName": "acsSharedSecret", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 2, + "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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "acsConfigurationID", + "printedName": "acsConfigurationID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 3, + "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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC10businessIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:8FBAEMKit13AEMInvocationC10businessIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC10businessIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10businessIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "catalogID", + "printedName": "catalogID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 5, + "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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC9catalogIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isTestMode", + "printedName": "isTestMode", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC10isTestModeSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10isTestModeSbvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 6, + "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:8FBAEMKit13AEMInvocationC10isTestModeSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10isTestModeSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasStoreKitAdNetwork", + "printedName": "hasStoreKitAdNetwork", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isConversionFilteringEligible", + "printedName": "isConversionFilteringEligible", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurationMode", + "printedName": "configurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC17configurationModeSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC17configurationModeSSvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 10, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC17configurationModeSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC17configurationModeSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurationID", + "printedName": "configurationID", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 11, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC15configurationIDSivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordedEvents", + "printedName": "recordedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 12, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordedValues", + "printedName": "recordedValues", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 13, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "conversionValue", + "printedName": "conversionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 14, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC15conversionValueSivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 15, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC8prioritySivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "conversionTimestamp", + "printedName": "conversionTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 16, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAggregated", + "printedName": "isAggregated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 17, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC12isAggregatedSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigurationMode", + "printedName": "ConfigurationMode", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO7defaultyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO7defaultyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "brand", + "printedName": "brand", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO5brandyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO5brandyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "cpas", + "printedName": "cpas", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO4cpasyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO4cpasyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLinkData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "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": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC11appLinkDataACSgSDys11AnyHashableVypGSg_tcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC11appLinkDataACSgSDys11AnyHashableVypGSg_tcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(campaignID:acsToken:acsSharedSecret:acsConfigurationID:businessID:catalogID:isTestMode:hasStoreKitAdNetwork:isConversionFilteringEligible:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD010isTestMode20hasStoreKitAdNetwork0L27ConversionFilteringEligibleACSgSS_S2SSgA3NS3btcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD010isTestMode20hasStoreKitAdNetwork0L27ConversionFilteringEligibleACSgSS_S2SSgA3NS3btcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(campaignID:acsToken:acsSharedSecret:acsConfigurationID:businessID:catalogID:timestamp:configurationMode:configurationID:recordedEvents:recordedValues:conversionValue:priority:conversionTimestamp:isAggregated:isTestMode:hasStoreKitAdNetwork:isConversionFilteringEligible:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD09timestamp17configurationMode0mD014recordedEvents0O6Values15conversionValue8priority0R9Timestamp12isAggregated0v4TestN020hasStoreKitAdNetwork0V27ConversionFilteringEligibleACSgSS_S2SSgA3W10Foundation4DateVSgSSSiShySSGSgSDySSSDySSypGGSgS2iA_S4btcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD09timestamp17configurationMode0mD014recordedEvents0O6Values15conversionValue8priority0R9Timestamp12isAggregated0v4TestN020hasStoreKitAdNetwork0V27ConversionFilteringEligibleACSgSS_S2SSgA3W10Foundation4DateVSgSSSiShySSGSgSDySSSDySSypGGSgS2iA_S4btcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "attributeEvent", + "printedName": "attributeEvent(_:currency:value:parameters:configurations:shouldUpdateCache:isRuleMatchInServer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC14attributeEvent_8currency5value10parameters14configurations17shouldUpdateCache19isRuleMatchInServerSbSS_SSSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGSgS2btF", + "mangledName": "$s8FBAEMKit13AEMInvocationC14attributeEvent_8currency5value10parameters14configurations17shouldUpdateCache19isRuleMatchInServerSbSS_SSSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGSgS2btF", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateConversionValue", + "printedName": "updateConversionValue(configurations:event:shouldBoostPriority:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC21updateConversionValue14configurations5event19shouldBoostPrioritySbSDySSSayAA16AEMConfigurationCGGSg_SSSbtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC21updateConversionValue14configurations5event19shouldBoostPrioritySbSDySSSayAA16AEMConfigurationCGGSg_SSSbtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOptimizedEvent", + "printedName": "isOptimizedEvent(_:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC16isOptimizedEvent_14configurationsSbSS_SDySSSayAA16AEMConfigurationCGGSgtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC16isOptimizedEvent_14configurationsSbSS_SDySSSayAA16AEMConfigurationCGGSgtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOutOfWindow", + "printedName": "isOutOfWindow(configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC13isOutOfWindow14configurationsSbSDySSSayAA16AEMConfigurationCGGSg_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC13isOutOfWindow14configurationsSbSDySSSayAA16AEMConfigurationCGGSg_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getHMAC", + "printedName": "getHMAC(delay:)", + "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:8FBAEMKit13AEMInvocationC7getHMAC5delaySSSgSi_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC7getHMAC5delaySSSgSi_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeBase64URLSafeString", + "printedName": "decodeBase64URLSafeString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC25decodeBase64URLSafeStringy10Foundation4DataVSgSSF", + "mangledName": "$s8FBAEMKit13AEMInvocationC25decodeBase64URLSafeStringy10Foundation4DataVSgSSF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProcessedParameters", + "printedName": "getProcessedParameters(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC22getProcessedParameters4fromSDySSypGSgAG_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC22getProcessedParameters4fromSDySSypGSgAG_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "findConfiguration", + "printedName": "findConfiguration(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC17findConfiguration2inAA16AEMConfigurationCSgSDySSSayAGGGSg_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17findConfiguration2inAA16AEMConfigurationCSgSDySSSayAGGGSg_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getConfigurationList", + "printedName": "getConfigurationList(mode:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC20getConfigurationList4mode14configurationsSayAA16AEMConfigurationCGAC0D4ModeO_SDySSAIGSgtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC20getConfigurationList4mode14configurationsSayAA16AEMConfigurationCGAC0D4ModeO_SDySSAIGSgtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConfiguration", + "printedName": "setConfiguration(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC16setConfigurationyyAA16AEMConfigurationCF", + "mangledName": "$s8FBAEMKit13AEMInvocationC16setConfigurationyyAA16AEMConfigurationCF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit13AEMInvocationC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit13AEMInvocationC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)initWithCoder:", + "mangledName": "$s8FBAEMKit13AEMInvocationC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit13AEMInvocationC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)init", + "mangledName": "$s8FBAEMKit13AEMInvocationCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation", + "mangledName": "$s8FBAEMKit13AEMInvocationC", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "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": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMNetworker", + "printedName": "AEMNetworker", + "children": [ + { + "kind": "TypeDecl", + "name": "Error", + "printedName": "Error", + "children": [ + { + "kind": "Var", + "name": "missingOperationQueue", + "printedName": "missingOperationQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO21missingOperationQueueyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO21missingOperationQueueyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "failedToCreateURL", + "printedName": "failedToCreateURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO17failedToCreateURLyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO17failedToCreateURLyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failedToParseJSON", + "printedName": "failedToParseJSON", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO17failedToParseJSONyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO17failedToParseJSONyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO2eeoiySbAE_AEtFZ", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO2eeoiySbAE_AEtFZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivg", + "moduleName": "FBAEMKit", + "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:8FBAEMKit12AEMNetworkerC5ErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO4hash4intoys6HasherVz_tF", + "moduleName": "FBAEMKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO", + "moduleName": "FBAEMKit", + "isEnumExhaustive": true, + "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": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvs", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvM", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userAgent", + "printedName": "userAgent", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "Lazy" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:8FBAEMKit12AEMNetworkerC9userAgentSSvs", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvM", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "$__lazy_storage_$_userAgent", + "printedName": "$__lazy_storage_$_userAgent", + "children": [ + { + "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:8FBAEMKit12AEMNetworkerC27$__lazy_storage_$_userAgent33_CA5D0A8FEAF39482D34FF23ED31512AELLSSSgvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC27$__lazy_storage_$_userAgent33_CA5D0A8FEAF39482D34FF23ED31512AELLSSSgvp", + "moduleName": "FBAEMKit", + "implicit": true, + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17startGraphRequest04withD4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBAEMKit", + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONResponse", + "printedName": "parseJSONResponse(data:error:statusCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC17parseJSONResponse4data5error10statusCodeSDySSypG10Foundation4DataVSg_s5Error_pSgzSitF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17parseJSONResponse4data5error10statusCodeSDySSypG10Foundation4DataVSg_s5Error_pSgzSitF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONOrOtherwise", + "printedName": "parseJSONOrOtherwise(unsafeString:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC20parseJSONOrOtherwise12unsafeString5errorypSgSSSg_s5Error_pSgztF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC20parseJSONOrOtherwise12unsafeString5errorypSgSSSg_s5Error_pSgztF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appendAttachments", + "printedName": "appendAttachments(attachments:toBody:addFormData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMRequestBody", + "printedName": "FBAEMKit.AEMRequestBody", + "usr": "s:8FBAEMKit14AEMRequestBodyC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC17appendAttachments11attachments6toBody11addFormDataySDySSypG_AA010AEMRequestG0CSbtF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17appendAttachments11attachments6toBody11addFormDataySDySSypG_AA010AEMRequestG0CSbtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworker", + "printedName": "FBAEMKit.AEMNetworker", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker(im)init", + "mangledName": "$s8FBAEMKit12AEMNetworkerCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker", + "mangledName": "$s8FBAEMKit12AEMNetworkerC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "children": [ + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s8FBAEMKit13AEMNetworkingP17startGraphRequest04withD4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMNetworking>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBAEMNetworking", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMReporter", + "printedName": "AEMReporter", + "children": [ + { + "kind": "Var", + "name": "networker", + "printedName": "networker", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)networker", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)networker", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setNetworker:", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)appID", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)appID", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAppID:", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC5appIDSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nullAppID", + "printedName": "nullAppID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)nullAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC9nullAppIDSSvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)nullAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC9nullAppIDSSvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "analyticsAppID", + "printedName": "analyticsAppID", + "children": [ + { + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)analyticsAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)analyticsAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAnalyticsAppID:", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reporter", + "printedName": "reporter", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)reporter", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)reporter", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setReporter:", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)dataStore", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)dataStore", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setDataStore:", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAEMReportEnabled", + "printedName": "isAEMReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isAEMReportEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isAEMReportEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsAEMReportEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isLoadingConfiguration", + "printedName": "isLoadingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isLoadingConfiguration", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isLoadingConfiguration", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsLoadingConfiguration:", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isConversionFilteringEnabled", + "printedName": "isConversionFilteringEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isConversionFilteringEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isConversionFilteringEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsConversionFilteringEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isCatalogMatchingEnabled", + "printedName": "isCatalogMatchingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isCatalogMatchingEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isCatalogMatchingEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsCatalogMatchingEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserRuleMatchInServerEnabled", + "printedName": "isAdvertiserRuleMatchInServerEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isAdvertiserRuleMatchInServerEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isAdvertiserRuleMatchInServerEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "serialQueue", + "printedName": "serialQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)serialQueue", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)serialQueue", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setSerialQueue:", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reportFile", + "printedName": "reportFile", + "children": [ + { + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)reportFile", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)reportFile", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setReportFile:", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC10reportFileSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configurations", + "printedName": "configurations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)configurations", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configurations", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConfigurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "invocations", + "printedName": "invocations", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)invocations", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)invocations", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setInvocations:", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configRefreshTimestamp", + "printedName": "configRefreshTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)configRefreshTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configRefreshTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConfigRefreshTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "minAggregationRequestTimestamp", + "printedName": "minAggregationRequestTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)minAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)minAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setMinAggregationRequestTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "completionBlocks", + "printedName": "completionBlocks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvpZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvgZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvsZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(networker:appID:reporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "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": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configureWithNetworker:appID:reporter:", + "mangledName": "$s8FBAEMKit11AEMReporterC9configure9networker5appID8reporteryAA13AEMNetworking_pSg_SSSgAA20SKAdNetworkReporting_pSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(networker:appID:reporter:analyticsAppID:store:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "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": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "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": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configureWithNetworker:appID:reporter:analyticsAppID:store:", + "mangledName": "$s8FBAEMKit11AEMReporterC9configure9networker5appID8reporter012analyticsAppF05storeyAA13AEMNetworking_pSg_SSSgAA20SKAdNetworkReporting_pSgALSo19FBSDKDataPersisting_pSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)enable", + "mangledName": "$s8FBAEMKit11AEMReporterC6enableyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConversionFilteringEnabled", + "printedName": "setConversionFilteringEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConversionFilteringEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC29setConversionFilteringEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCatalogMatchingEnabled", + "printedName": "setCatalogMatchingEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setCatalogMatchingEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC25setCatalogMatchingEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAdvertiserRuleMatchInServerEnabled", + "printedName": "setAdvertiserRuleMatchInServerEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC37setAdvertiserRuleMatchInServerEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handle", + "printedName": "handle(_:)", + "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": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)handle:", + "mangledName": "$s8FBAEMKit11AEMReporterC6handleyy10Foundation3URLVSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseURL", + "printedName": "parseURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "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": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)parseURL:", + "mangledName": "$s8FBAEMKit11AEMReporterC8parseURLyAA13AEMInvocationCSg10Foundation0D0VSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordAndUpdate", + "printedName": "recordAndUpdate(event:currency:value:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)recordAndUpdateEvent:currency:value:parameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC15recordAndUpdate5event8currency5value10parametersySS_SSSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "recordAndUpdateEvent:currency:value:parameters:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "attributedInvocation", + "printedName": "attributedInvocation(_:event:currency:value:parameters:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)attributedInvocation:event:currency:value:parameters:configurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC20attributedInvocation_5event8currency5value10parameters14configurationsAA13AEMInvocationCSgSayAKG_S2SSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isDoubleCounting", + "printedName": "isDoubleCounting(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isDoubleCounting:event:", + "mangledName": "$s8FBAEMKit11AEMReporterC16isDoubleCounting_5eventSbAA13AEMInvocationC_SStFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadConfiguration", + "printedName": "loadConfiguration(withRefreshForced:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.NSError?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadConfigurationWithRefreshForced:block:", + "mangledName": "$s8FBAEMKit11AEMReporterC17loadConfiguration17withRefreshForced5blockySb_ySo7NSErrorCSgcSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadCatalogOptimization", + "printedName": "loadCatalogOptimization(with:contentID:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadCatalogOptimizationWith:contentID:block:", + "mangledName": "$s8FBAEMKit11AEMReporterC23loadCatalogOptimization4with9contentID5blockyAA13AEMInvocationC_SSSgyyctFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadRuleMatch", + "printedName": "loadRuleMatch(_:event:currency:value:parameters:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadRuleMatch:event:currency:value:parameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC13loadRuleMatch_5event8currency5value10parametersySaySSG_S2SSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldReportConversion", + "printedName": "shouldReportConversion(inCatalogLevel:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldReportConversionInCatalogLevel:event:", + "mangledName": "$s8FBAEMKit11AEMReporterC22shouldReportConversion14inCatalogLevel5eventSbAA13AEMInvocationC_SStFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isContentOptimized", + "printedName": "isContentOptimized(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isContentOptimized:", + "mangledName": "$s8FBAEMKit11AEMReporterC18isContentOptimizedySbypSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requestParameters", + "printedName": "requestParameters()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)requestParameters", + "mangledName": "$s8FBAEMKit11AEMReporterC17requestParametersSDySSypGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "catalogRequestParameters", + "printedName": "catalogRequestParameters(_:contentID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)catalogRequestParameters:contentID:", + "mangledName": "$s8FBAEMKit11AEMReporterC24catalogRequestParameters_9contentIDSDySSypGSSSg_AGtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ruleMatchRequestParameters", + "printedName": "ruleMatchRequestParameters(_:content:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)ruleMatchRequestParameters:content:", + "mangledName": "$s8FBAEMKit11AEMReporterC26ruleMatchRequestParameters_7contentSDySSypGSaySSG_SSSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isConfigRefreshTimestampValid", + "printedName": "isConfigRefreshTimestampValid()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isConfigRefreshTimestampValid", + "mangledName": "$s8FBAEMKit11AEMReporterC29isConfigRefreshTimestampValidSbyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldRefresh", + "printedName": "shouldRefresh(withIsForced:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldRefreshWithIsForced:", + "mangledName": "$s8FBAEMKit11AEMReporterC13shouldRefresh12withIsForcedS2b_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldDelayAggregationRequest", + "printedName": "shouldDelayAggregationRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldDelayAggregationRequest", + "mangledName": "$s8FBAEMKit11AEMReporterC29shouldDelayAggregationRequestSbyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendDebuggingRequest", + "printedName": "sendDebuggingRequest(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)sendDebuggingRequest:", + "mangledName": "$s8FBAEMKit11AEMReporterC20sendDebuggingRequestyyAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "debuggingRequestParameters", + "printedName": "debuggingRequestParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)debuggingRequestParameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC26debuggingRequestParametersySDySSypGAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadMinAggregationRequestTimestamp", + "printedName": "loadMinAggregationRequestTimestamp()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadMinAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC34loadMinAggregationRequestTimestamp10Foundation4DateVSgyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateAggregationRequestTimestamp", + "printedName": "updateAggregationRequestTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)updateAggregationRequestTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC33updateAggregationRequestTimestampyySdFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadConfigurations", + "printedName": "loadConfigurations()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadConfigurations", + "mangledName": "$s8FBAEMKit11AEMReporterC18loadConfigurationsSDySSSayAA16AEMConfigurationCGGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addConfigurations", + "printedName": "addConfigurations(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)addConfigurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC17addConfigurationsyySaySDySSypGGFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadReportData", + "printedName": "loadReportData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadReportData", + "mangledName": "$s8FBAEMKit11AEMReporterC14loadReportDataSayAA13AEMInvocationCGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveReportData", + "printedName": "saveReportData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)saveReportData", + "mangledName": "$s8FBAEMKit11AEMReporterC14saveReportDatayyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAggregationRequest", + "printedName": "sendAggregationRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)sendAggregationRequest", + "mangledName": "$s8FBAEMKit11AEMReporterC22sendAggregationRequestyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "aggregationRequestParameters", + "printedName": "aggregationRequestParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)aggregationRequestParameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC28aggregationRequestParametersySDySSypGAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearCache", + "printedName": "clearCache()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)clearCache", + "mangledName": "$s8FBAEMKit11AEMReporterC10clearCacheyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearConfigurations", + "printedName": "clearConfigurations()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)clearConfigurations", + "mangledName": "$s8FBAEMKit11AEMReporterC19clearConfigurationsyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMReporter", + "printedName": "FBAEMKit.AEMReporter", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(im)init", + "mangledName": "$s8FBAEMKit11AEMReporterCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter", + "mangledName": "$s8FBAEMKit11AEMReporterC", + "moduleName": "FBAEMKit", + "objc_name": "FBAEMReporter", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMRequestBody", + "printedName": "AEMRequestBody", + "children": [ + { + "kind": "Function", + "name": "compressedData", + "printedName": "compressedData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit14AEMRequestBodyC14compressedData10Foundation0E0VSgyF", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC14compressedData10Foundation0E0VSgyF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvg", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvg", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_data", + "printedName": "_data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC5_data33_1FB9656C872A5478253A5AEB5A2CB886LL10Foundation4DataVvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC5_data33_1FB9656C872A5478253A5AEB5A2CB886LL10Foundation4DataVvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "json", + "printedName": "json", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC4json33_1FB9656C872A5478253A5AEB5A2CB886LLSDySSypGvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4json33_1FB9656C872A5478253A5AEB5A2CB886LLSDySSypGvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Function", + "name": "append", + "printedName": "append(withKey:formValue:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit14AEMRequestBodyC6append7withKey9formValueySSSg_AGtF", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC6append7withKey9formValueySSSg_AGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRequestBody", + "printedName": "FBAEMKit.AEMRequestBody", + "usr": "s:8FBAEMKit14AEMRequestBodyC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit14AEMRequestBodyCACycfc", + "mangledName": "$s8FBAEMKit14AEMRequestBodyCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit14AEMRequestBodyC", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMRule", + "printedName": "AEMRule", + "children": [ + { + "kind": "Var", + "name": "conversionValue", + "printedName": "conversionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC15conversionValueSivp", + "mangledName": "$s8FBAEMKit7AEMRuleC15conversionValueSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:8FBAEMKit7AEMRuleC15conversionValueSivg", + "mangledName": "$s8FBAEMKit7AEMRuleC15conversionValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC8prioritySivp", + "mangledName": "$s8FBAEMKit7AEMRuleC8prioritySivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit7AEMRuleC8prioritySivg", + "mangledName": "$s8FBAEMKit7AEMRuleC8prioritySivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvp", + "mangledName": "$s8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvg", + "mangledName": "$s8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit7AEMRuleC4jsonACSgSDySSypG_tcfc", + "mangledName": "$s8FBAEMKit7AEMRuleC4jsonACSgSDySSypG_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "containsEvent", + "printedName": "containsEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit7AEMRuleC13containsEventySbSSF", + "mangledName": "$s8FBAEMKit7AEMRuleC13containsEventySbSSF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withRecordedEvents:recordedValues:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit7AEMRuleC9isMatched18withRecordedEvents14recordedValuesSbShySSGSg_SDySSSDySSypGGSgtF", + "mangledName": "$s8FBAEMKit7AEMRuleC9isMatched18withRecordedEvents14recordedValuesSbShySSGSg_SDySSSDySSypGGSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit7AEMRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit7AEMRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit7AEMRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit7AEMRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)isEqual:", + "mangledName": "$s8FBAEMKit7AEMRuleC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)init", + "mangledName": "$s8FBAEMKit7AEMRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule", + "mangledName": "$s8FBAEMKit7AEMRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMSettings", + "printedName": "AEMSettings", + "children": [ + { + "kind": "Function", + "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": "Func", + "usr": "s:8FBAEMKit11AEMSettingsO5appIDSSSgyFZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO5appIDSSSgyFZ", + "moduleName": "FBAEMKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "bundle", + "printedName": "bundle", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvp", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvg", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvs", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvM", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleAESo8NSBundleC_tcfc", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleAESo8NSBundleC_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV", + "moduleName": "FBAEMKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvpZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvgZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvsZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvMZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvpZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvgZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvsZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvMZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit11AEMSettingsO", + "mangledName": "$s8FBAEMKit11AEMSettingsO", + "moduleName": "FBAEMKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ] + } + ], + "usr": "s:8FBAEMKit15DependentAsTypeP", + "mangledName": "$s8FBAEMKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMUtility", + "printedName": "AEMUtility", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit10AEMUtilityC6sharedACvpZ", + "mangledName": "$s8FBAEMKit10AEMUtilityC6sharedACvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit10AEMUtilityC6sharedACvgZ", + "mangledName": "$s8FBAEMKit10AEMUtilityC6sharedACvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getMatchedInvocation", + "printedName": "getMatchedInvocation(_:businessID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + }, + { + "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:8FBAEMKit10AEMUtilityC20getMatchedInvocation_10businessIDAA13AEMInvocationCSgSayAGG_SSSgtF", + "mangledName": "$s8FBAEMKit10AEMUtilityC20getMatchedInvocation_10businessIDAA13AEMInvocationCSgSayAGG_SSSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getInSegmentValue", + "printedName": "getInSegmentValue(_:matchingRule:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC17getInSegmentValue_12matchingRuleSo8NSNumberCSDySSypGSg_AA013AEMAdvertiserH8Matching_pSgtF", + "mangledName": "$s8FBAEMKit10AEMUtilityC17getInSegmentValue_12matchingRuleSo8NSNumberCSDySSypGSg_AA013AEMAdvertiserH8Matching_pSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContent", + "printedName": "getContent(_:)", + "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": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC10getContentySSSgSDySSypGSgF", + "mangledName": "$s8FBAEMKit10AEMUtilityC10getContentySSSgSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentID", + "printedName": "getContentID(_:)", + "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": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC12getContentIDySSSgSDySSypGSgF", + "mangledName": "$s8FBAEMKit10AEMUtilityC12getContentIDySSSgSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBusinessIDsInOrder", + "printedName": "getBusinessIDsInOrder(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC21getBusinessIDsInOrderySaySSGSayAA13AEMInvocationCGF", + "mangledName": "$s8FBAEMKit10AEMUtilityC21getBusinessIDsInOrderySaySSGSayAA13AEMInvocationCGF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit10AEMUtilityCACycfc", + "mangledName": "$s8FBAEMKit10AEMUtilityCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit10AEMUtilityC", + "mangledName": "$s8FBAEMKit10AEMUtilityC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:8FBAEMKit15DependentAsTypeP0D12DependenciesQa", + "mangledName": "$s8FBAEMKit15DependentAsTypeP0D12DependenciesQa", + "moduleName": "FBAEMKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvpZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvgZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvgZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvsZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvsZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvMZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvMZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvpZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvgZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvgZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypeP15setDependenciesyy0dF0QzFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP15setDependenciesyy0dF0QzFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypePAAE15setDependenciesyy0dF0QzFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE15setDependenciesyy0dF0QzFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypePAAE15getDependencies0dF0QzyKFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE15getDependencies0dF0QzyKFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit15DependentAsTypeP", + "mangledName": "$s8FBAEMKit15DependentAsTypeP", + "moduleName": "FBAEMKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV13dependentType33_A87604353953AE6AB47A0C00F7FE141DLLxmvp", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV13dependentType33_A87604353953AE6AB47A0C00F7FE141DLLxmvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBAEMKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:8FBAEMKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBAEMKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SKAdNetworkReporting", + "printedName": "SKAdNetworkReporting", + "children": [ + { + "kind": "Function", + "name": "shouldCutoff", + "printedName": "shouldCutoff()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)shouldCutoff", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP12shouldCutoffSbyF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isReportingEvent", + "printedName": "isReportingEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)isReportingEvent:", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP02isD5EventySbSSF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "isReportingEvent:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkAndRevokeTimer", + "printedName": "checkAndRevokeTimer()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)checkAndRevokeTimer", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP19checkAndRevokeTimeryyF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSKAdNetworkReporting", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserMultiEntryRule.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 27, + "value": "\"FBAEMKit.AEMAdvertiserMultiEntryRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 573, + "length": 10, + "value": "\"operator\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 607, + "length": 11, + "value": "\"param_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 648, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 14, + "value": "\"number_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 735, + "length": 13, + "value": "\"array_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 804, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 834, + "length": 5, + "value": "\"[*]\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "BooleanLiteral", + "offset": 8907, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 269, + "length": 28, + "value": "\"FBAEMKit.AEMAdvertiserSingleEntryRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 18, + "value": "\"default_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 13, + "value": "\"cutoff_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 24, + "value": "\"conversion_value_rules\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 12, + "value": "\"valid_from\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 554, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 13, + "value": "\"business_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 12, + "value": "\"param_rule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 18, + "value": "\"default_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 13, + "value": "\"cutoff_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 24, + "value": "\"conversion_value_rules\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 12, + "value": "\"valid_from\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 554, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 13, + "value": "\"business_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 12, + "value": "\"param_rule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 16, + "value": "\"FBAEMKit.AEMConfiguration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 339, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 339, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 8, + "value": "\"FBAEMKit.AEMEvent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1068, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1104, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1211, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 11, + "value": "\"acs_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 15, + "value": "\"shared_secret\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1402, + "length": 15, + "value": "\"acs_config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1448, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1493, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 15, + "value": "\"test_deeplink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1594, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1681, + "length": 17, + "value": "\"recorded_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1725, + "length": 17, + "value": "\"recorded_values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1770, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1838, + "length": 22, + "value": "\"conversion_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1885, + "length": 15, + "value": "\"is_aggregated\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 10, + "value": "\"has_skan\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 34, + "value": "\"is_conversion_filtering_eligible\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2097, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 11, + "value": "\"acs_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 15, + "value": "\"shared_secret\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1402, + "length": 15, + "value": "\"acs_config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1448, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1493, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 15, + "value": "\"test_deeplink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1594, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1681, + "length": 17, + "value": "\"recorded_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1725, + "length": 17, + "value": "\"recorded_values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1770, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1838, + "length": 22, + "value": "\"conversion_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1885, + "length": 15, + "value": "\"is_aggregated\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 10, + "value": "\"has_skan\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 34, + "value": "\"is_conversion_filtering_eligible\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2097, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 7, + "value": "\"BRAND\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2225, + "length": 6, + "value": "\"CPAS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 7, + "value": "\"BRAND\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2225, + "length": 6, + "value": "\"CPAS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 294, + "length": 13, + "value": "\"FBAEMKit.AEMInvocation\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 501, + "length": 6, + "value": "\"\r\n\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 539, + "length": 8, + "value": "\"16.1.3\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 588, + "length": 7, + "value": "\"v16.0\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 654, + "length": 10, + "value": "\"FBiOSAEM\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 699, + "length": 35, + "value": "\"https:\/\/graph.facebook.com\/v16.0\/\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 772, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 820, + "length": 21, + "value": "\"com.facebook.aemkit\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 865, + "length": 49, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 889, + "length": 1, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 913, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 21, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1142, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1264, + "length": 8, + "value": "\"\/macOS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 435, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 480, + "length": 16, + "value": "\"advertiser_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 528, + "length": 17, + "value": "\"fb_content_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 577, + "length": 17, + "value": "\"al_applink_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 623, + "length": 13, + "value": "\"campaign_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 669, + "length": 17, + "value": "\"conversion_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 18, + "value": "\"consumption_hour\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 762, + "length": 7, + "value": "\"token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 6, + "value": "\"hmac\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 864, + "length": 12, + "value": "\"delay_flow\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 916, + "length": 25, + "value": "\"is_conversion_filtering\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 16, + "value": "\"fb_content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1016, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 54, + "value": "\"com.facebook.sdk:FBAEMMinAggregationRequestTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1156, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1187, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1226, + "length": 17, + "value": "\"aem_conversions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1269, + "length": 9, + "value": "\"success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 16, + "value": "\"is_valid_match\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1363, + "length": 23, + "value": "\"matched_advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1419, + "length": 18, + "value": "\"in_segment_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1483, + "length": 34, + "value": "\"content_id_belongs_to_catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1587, + "length": 42, + "value": "\"com.facebook.appevents.AEM.FBAEMReporter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "IntegerLiteral", + "offset": 1714, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "IntegerLiteral", + "offset": 1760, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1823, + "length": 27, + "value": "\"FBSDKAEMReportData.report\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1878, + "length": 27, + "value": "\"FBSDKAEMReportData.config\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1972, + "length": 24, + "value": "\"aem_conversion_configs\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2034, + "length": 23, + "value": "\"aem_conversion_filter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2090, + "length": 17, + "value": "\"aem_attribution\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2163, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2191, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 8, + "value": "\"(null)\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2541, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2585, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2681, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Dictionary", + "offset": 2958, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Array", + "offset": 3006, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Array", + "offset": 3157, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRequestBody.swift", + "kind": "StringLiteral", + "offset": 584, + "length": 6, + "value": "\"\r\n\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 436, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 484, + "length": 10, + "value": "\"priority\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 522, + "length": 8, + "value": "\"events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 269, + "length": 7, + "value": "\"FBAEMKit.AEMRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 329, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 369, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 412, + "length": 12, + "value": "\"item_price\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 451, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 482, + "length": 10, + "value": "\"quantity\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.private.swiftinterface b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.private.swiftinterface new file mode 100644 index 00000000..520b9db8 --- /dev/null +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -0,0 +1,32 @@ +// 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-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import CommonCrypto.CommonHMAC +import FBSDKCoreKit_Basics +import Foundation +import Swift +import _Concurrency +import _StringProcessing +public typealias FBGraphRequestCompletion = (Any?, Swift.Error?) -> Swift.Void +@objc(FBAEMNetworking) public protocol AEMNetworking { + @objc(startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:) func startGraphRequest(withGraphPath graphPath: Swift.String, parameters: [Swift.String : Any], tokenString: Swift.String?, httpMethod method: Swift.String?, completion: @escaping FBAEMKit.FBGraphRequestCompletion) +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBAEMReporter) final public class AEMReporter : ObjectiveC.NSObject { + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?) + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?, analyticsAppID: Swift.String?, store: FBSDKCoreKit_Basics.DataPersisting?) + @objc public static func enable() + @objc public static func setConversionFilteringEnabled(_ enabled: Swift.Bool) + @objc public static func setCatalogMatchingEnabled(_ enabled: Swift.Bool) + @objc public static func setAdvertiserRuleMatchInServerEnabled(_ enabled: Swift.Bool) + @objc public static func handle(_ url: Foundation.URL?) + @objc(recordAndUpdateEvent:currency:value:parameters:) public static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) + @objc override dynamic public init() + @objc deinit +} +@objc(FBSKAdNetworkReporting) public protocol SKAdNetworkReporting { + @objc func shouldCutoff() -> Swift.Bool + @objc(isReportingEvent:) func isReportingEvent(_ event: Swift.String) -> Swift.Bool + @objc func checkAndRevokeTimer() +} diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.swiftdoc b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.swiftdoc index 6f8108e9..0403b289 100644 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.swiftdoc and b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.swiftinterface b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.swiftinterface index 0730dd91..520b9db8 100644 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.swiftinterface +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,22 +1,26 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import CommonCrypto import CommonCrypto.CommonHMAC import FBSDKCoreKit_Basics import Foundation import Swift import _Concurrency +import _StringProcessing public typealias FBGraphRequestCompletion = (Any?, Swift.Error?) -> Swift.Void @objc(FBAEMNetworking) public protocol AEMNetworking { @objc(startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:) func startGraphRequest(withGraphPath graphPath: Swift.String, parameters: [Swift.String : Any], tokenString: Swift.String?, httpMethod method: Swift.String?, completion: @escaping FBAEMKit.FBGraphRequestCompletion) } @_inheritsConvenienceInitializers @objcMembers @objc(FBAEMReporter) final public class AEMReporter : ObjectiveC.NSObject { + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?) + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?, analyticsAppID: Swift.String?, store: FBSDKCoreKit_Basics.DataPersisting?) @objc public static func enable() @objc public static func setConversionFilteringEnabled(_ enabled: Swift.Bool) @objc public static func setCatalogMatchingEnabled(_ enabled: Swift.Bool) @objc public static func setAdvertiserRuleMatchInServerEnabled(_ enabled: Swift.Bool) - @objc public static func handle(_ url: Foundation.URL) + @objc public static func handle(_ url: Foundation.URL?) @objc(recordAndUpdateEvent:currency:value:parameters:) public static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) @objc override dynamic public init() @objc deinit diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBAEMKit.xcframework/ios-arm64/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index aa3ea2ad..00000000 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBAEMKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit b/ios/platform/FBAEMKit.xcframework/ios-arm64/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit deleted file mode 100644 index 00aeae4b..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit and /dev/null differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/FBAEMKit b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/FBAEMKit deleted file mode 120000 index ed91c052..00000000 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/FBAEMKit +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/FBAEMKit \ No newline at end of file diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/FBAEMKit b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/FBAEMKit new file mode 100644 index 00000000..afab0e2a Binary files /dev/null and b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/FBAEMKit differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Headers b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Headers deleted file mode 120000 index a177d2a6..00000000 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Headers/FBAEMKit-Swift.h b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Headers/FBAEMKit-Swift.h similarity index 87% rename from ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Headers/FBAEMKit-Swift.h rename to ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Headers/FBAEMKit-Swift.h index ef900e3c..e96662cb 100644 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Headers/FBAEMKit-Swift.h +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Headers/FBAEMKit-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBAEMKIT_SWIFT_H #define FBAEMKIT_SWIFT_H #pragma clang diagnostic push @@ -23,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -183,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -193,6 +204,28 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" @@ -201,6 +234,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); @import ObjectiveC; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -208,6 +242,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -216,6 +251,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; SWIFT_PROTOCOL_NAMED("AEMNetworking") @@ -223,11 +259,15 @@ SWIFT_PROTOCOL_NAMED("AEMNetworking") - (void)startGraphRequestWithGraphPath:(NSString * _Nonnull)graphPath parameters:(NSDictionary * _Nonnull)parameters tokenString:(NSString * _Nullable)tokenString HTTPMethod:(NSString * _Nullable)method completion:(void (^ _Nonnull)(id _Nullable, NSError * _Nullable))completion; @end +@protocol FBSKAdNetworkReporting; +@protocol FBSDKDataPersisting; @class NSURL; @class NSNumber; SWIFT_CLASS_NAMED("AEMReporter") @interface FBAEMReporter : NSObject ++ (void)configureWithNetworker:(id _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id _Nullable)reporter; ++ (void)configureWithNetworker:(id _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id _Nullable)reporter analyticsAppID:(NSString * _Nullable)analyticsAppID store:(id _Nullable)store; /// Enable AEM reporting /// This function should be called in application(_:open:options:) from ApplicationDelegate + (void)enable; @@ -243,7 +283,7 @@ SWIFT_CLASS_NAMED("AEMReporter") + (void)setAdvertiserRuleMatchInServerEnabled:(BOOL)enabled; /// Handle deeplink /// This function should be called in application(_:open:options:) from ApplicationDelegate -+ (void)handle:(NSURL * _Nonnull)url; ++ (void)handle:(NSURL * _Nullable)url; /// Calculate the conversion value for the app event based on the AEM configuration /// This function should be called when you log any in-app events + (void)recordAndUpdateEvent:(NSString * _Nonnull)event currency:(NSString * _Nullable)currency value:(NSNumber * _Nullable)value parameters:(NSDictionary * _Nullable)parameters; @@ -258,6 +298,9 @@ SWIFT_PROTOCOL_NAMED("SKAdNetworkReporting") - (void)checkAndRevokeTimer; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif @@ -265,7 +308,7 @@ SWIFT_PROTOCOL_NAMED("SKAdNetworkReporting") #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBAEMKIT_SWIFT_H #define FBAEMKIT_SWIFT_H #pragma clang diagnostic push @@ -288,11 +331,20 @@ SWIFT_PROTOCOL_NAMED("SKAdNetworkReporting") # 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 @@ -448,9 +500,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -458,6 +512,28 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" @@ -466,6 +542,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); @import ObjectiveC; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -473,6 +550,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -481,6 +559,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; SWIFT_PROTOCOL_NAMED("AEMNetworking") @@ -488,11 +567,15 @@ SWIFT_PROTOCOL_NAMED("AEMNetworking") - (void)startGraphRequestWithGraphPath:(NSString * _Nonnull)graphPath parameters:(NSDictionary * _Nonnull)parameters tokenString:(NSString * _Nullable)tokenString HTTPMethod:(NSString * _Nullable)method completion:(void (^ _Nonnull)(id _Nullable, NSError * _Nullable))completion; @end +@protocol FBSKAdNetworkReporting; +@protocol FBSDKDataPersisting; @class NSURL; @class NSNumber; SWIFT_CLASS_NAMED("AEMReporter") @interface FBAEMReporter : NSObject ++ (void)configureWithNetworker:(id _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id _Nullable)reporter; ++ (void)configureWithNetworker:(id _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id _Nullable)reporter analyticsAppID:(NSString * _Nullable)analyticsAppID store:(id _Nullable)store; /// Enable AEM reporting /// This function should be called in application(_:open:options:) from ApplicationDelegate + (void)enable; @@ -508,7 +591,7 @@ SWIFT_CLASS_NAMED("AEMReporter") + (void)setAdvertiserRuleMatchInServerEnabled:(BOOL)enabled; /// Handle deeplink /// This function should be called in application(_:open:options:) from ApplicationDelegate -+ (void)handle:(NSURL * _Nonnull)url; ++ (void)handle:(NSURL * _Nullable)url; /// Calculate the conversion value for the app event based on the AEM configuration /// This function should be called when you log any in-app events + (void)recordAndUpdateEvent:(NSString * _Nonnull)event currency:(NSString * _Nullable)currency value:(NSNumber * _Nullable)value parameters:(NSDictionary * _Nullable)parameters; @@ -523,10 +606,15 @@ SWIFT_PROTOCOL_NAMED("SKAdNetworkReporting") - (void)checkAndRevokeTimer; @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/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules deleted file mode 120000 index 5736f318..00000000 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.abi.json b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.abi.json new file mode 100644 index 00000000..36133bd5 --- /dev/null +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.abi.json @@ -0,0 +1,17857 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "AEMAdvertiserMultiEntryRule", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type) -> FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8operatoryA2EmF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8operatoryA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "rules", + "printedName": "rules", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type) -> FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO5rulesyA2EmF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO5rulesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rules", + "printedName": "rules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(with:rules:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC4with5rulesAcA0bE8OperatorO_SayAA0bE8Matching_pGtcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC4with5rulesAcA0bE8OperatorO_SayAA0bE8Matching_pGtcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)init", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleFactory", + "printedName": "AEMAdvertiserRuleFactory", + "children": [ + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "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": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(dictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createMultiEntryRule", + "printedName": "createMultiEntryRule(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC016createMultiEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC016createMultiEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createSingleEntryRule", + "printedName": "createSingleEntryRule(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC017createSingleEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC017createSingleEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "primaryKey", + "printedName": "primaryKey(for:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC10primaryKey3forSSSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC10primaryKey3forSSSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getOperator", + "printedName": "getOperator(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC11getOperator4fromAA0bcF0OSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC11getOperator4fromAA0bcF0OSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOperatorForMultiEntryRule", + "printedName": "isOperatorForMultiEntryRule(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC023isOperatorForMultiEntryC0ySbAA0bcF0OF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC023isOperatorForMultiEntryC0ySbAA0bcF0OF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleFactory", + "printedName": "FBAEMKit.AEMAdvertiserRuleFactory", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryCACycfc", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleProviding", + "printedName": "AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "children": [ + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleOperator", + "printedName": "AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO7unknownyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO7unknownyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "and", + "printedName": "and", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO3andyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO3andyA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "or", + "printedName": "or", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO2oryA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO2oryA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "not", + "printedName": "not", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO3notyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO3notyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contains", + "printedName": "contains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8containsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8containsyA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "notContains", + "printedName": "notContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO11notContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO11notContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "startsWith", + "printedName": "startsWith", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO10startsWithyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO10startsWithyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "caseInsensitiveContains", + "printedName": "caseInsensitiveContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "caseInsensitiveNotContains", + "printedName": "caseInsensitiveNotContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO26caseInsensitiveNotContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO26caseInsensitiveNotContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "caseInsensitiveStartsWith", + "printedName": "caseInsensitiveStartsWith", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO25caseInsensitiveStartsWithyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO25caseInsensitiveStartsWithyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "regexMatch", + "printedName": "regexMatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO10regexMatchyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO10regexMatchyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "equal", + "printedName": "equal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO5equalyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO5equalyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "notEqual", + "printedName": "notEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8notEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8notEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "lessThan", + "printedName": "lessThan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8lessThanyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8lessThanyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "lessThanOrEqual", + "printedName": "lessThanOrEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO15lessThanOrEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO15lessThanOrEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "greaterThan", + "printedName": "greaterThan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO11greaterThanyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO11greaterThanyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "greaterThanOrEqual", + "printedName": "greaterThanOrEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO18greaterThanOrEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO18greaterThanOrEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "caseInsensitiveIsAny", + "printedName": "caseInsensitiveIsAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO20caseInsensitiveIsAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO20caseInsensitiveIsAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "caseInsensitiveIsNotAny", + "printedName": "caseInsensitiveIsNotAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveIsNotAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveIsNotAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 18 + }, + { + "kind": "Var", + "name": "isAny", + "printedName": "isAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO5isAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO5isAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 19 + }, + { + "kind": "Var", + "name": "isNotAny", + "printedName": "isNotAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8isNotAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8isNotAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 20 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueACSgSi_tcfc", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueACSgSi_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivp", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivg", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "Int", + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleProviding", + "printedName": "AEMAdvertiserRuleProviding", + "children": [ + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "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": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(dictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "AEMAdvertiserSingleEntryRule", + "children": [ + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvs", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvM", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "paramKey", + "printedName": "paramKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "linguisticCondition", + "printedName": "linguisticCondition", + "children": [ + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "numericalCondition", + "printedName": "numericalCondition", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arrayCondition", + "printedName": "arrayCondition", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(operator:paramKey:linguisticCondition:numericalCondition:arrayCondition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operator8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSdSgSaySSGSgtcfc", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operator8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSdSgSaySSGSgtcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(with:paramKey:linguisticCondition:numericalCondition:arrayCondition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC4with8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSo8NSNumberCSgSaySSGSgtcfc", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC4with8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSo8NSNumberCSgSaySSGSgtcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(eventParams:paramPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParameters11eventParams9paramPathSbSDySSypGSg_SaySSGtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParameters11eventParams9paramPathSbSDySSypGSg_SaySSGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withAsteriskParam:eventParameters:paramPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched17withAsteriskParam15eventParameters9paramPathSbSS_SDySSypGSaySSGtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched17withAsteriskParam15eventParameters9paramPathSbSS_SDySSypGSaySSGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withStringValue:numericalValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched15withStringValue09numericalJ0SbSSSg_SdSgtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched15withStringValue09numericalJ0SbSSSg_SdSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRegexMatch", + "printedName": "isRegexMatch(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC12isRegexMatchySbSSF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC12isRegexMatchySbSSF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isAny", + "printedName": "isAny(of:stringValue:ignoreCase:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC5isAny2of11stringValue10ignoreCaseSbSaySSG_SSSbtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC5isAny2of11stringValue10ignoreCaseSbSaySSG_SSSbtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "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@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "objc_name": "supportsSecureCoding", + "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@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cm)setSupportsSecureCoding:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvMZ", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)isEqual:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)init", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMConfiguration", + "printedName": "AEMConfiguration", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "defaultCurrency", + "printedName": "defaultCurrency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO15defaultCurrencyyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO15defaultCurrencyyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "cutoffTime", + "printedName": "cutoffTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO10cutoffTimeyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO10cutoffTimeyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "conversionValueRules", + "printedName": "conversionValueRules", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO20conversionValueRulesyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO20conversionValueRulesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "validFrom", + "printedName": "validFrom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO9validFromyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO9validFromyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO4modeyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO4modeyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "advertiserID", + "printedName": "advertiserID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO12advertiserIDyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO12advertiserIDyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO10businessIDyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO10businessIDyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "paramRule", + "printedName": "paramRule", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO9paramRuleyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO9paramRuleyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "cutoffTime", + "printedName": "cutoffTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC10cutoffTimeSivp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10cutoffTimeSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10cutoffTimeSivg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10cutoffTimeSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "validFrom", + "printedName": "validFrom", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC9validFromSivp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9validFromSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess", + "RawDocComment" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC9validFromSivg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9validFromSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultCurrency", + "printedName": "defaultCurrency", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC15defaultCurrencySSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC15defaultCurrencySSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC15defaultCurrencySSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC15defaultCurrencySSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC4modeSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4modeSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC4modeSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4modeSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "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:8FBAEMKit16AEMConfigurationC10businessIDSSSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10businessIDSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 4, + "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:8FBAEMKit16AEMConfigurationC10businessIDSSSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10businessIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "matchingRule", + "printedName": "matchingRule", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "conversionValueRules", + "printedName": "conversionValueRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventSet", + "printedName": "eventSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC8eventSetShySSGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC8eventSetShySSGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC8eventSetShySSGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC8eventSetShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currencySet", + "printedName": "currencySet", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC11currencySetShySSGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11currencySetShySSGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC11currencySetShySSGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11currencySetShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ruleProvider", + "printedName": "ruleProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvpZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvgZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(withRuleProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC9configure16withRuleProvideryAA013AEMAdvertiserE9Providing_p_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9configure16withRuleProvideryAA013AEMAdvertiserE9Providing_p_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC4jsonACSgSDySSypGSg_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4jsonACSgSDySSypGSg_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "parseRules", + "printedName": "parseRules(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBAEMKit.AEMRule]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC10parseRulesySayAA7AEMRuleCGSgSaySDySSypGGSgFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10parseRulesySayAA7AEMRuleCGSgSaySDySSypGGSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEventSet", + "printedName": "getEventSet(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC11getEventSet4fromShySSGSayAA7AEMRuleCG_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11getEventSet4fromShySSGSayAA7AEMRuleCG_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrencySet", + "printedName": "getCurrencySet(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC14getCurrencySet4fromShySSGSayAA7AEMRuleCG_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC14getCurrencySet4fromShySSGSayAA7AEMRuleCG_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSame", + "printedName": "isSame(validFrom:businessID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "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:8FBAEMKit16AEMConfigurationC6isSame9validFrom10businessIDSbSi_SSSgtF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC6isSame9validFrom10businessIDSbSi_SSSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSameBusinessID", + "printedName": "isSameBusinessID(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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:8FBAEMKit16AEMConfigurationC16isSameBusinessIDySbSSSgF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC16isSameBusinessIDySbSSSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit16AEMConfigurationC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)initWithCoder:", + "mangledName": "$s8FBAEMKit16AEMConfigurationC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)init", + "mangledName": "$s8FBAEMKit16AEMConfigurationCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration", + "mangledName": "$s8FBAEMKit16AEMConfigurationC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMEvent", + "printedName": "AEMEvent", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO9eventNameyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO9eventNameyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO6valuesyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO6valuesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8currencyyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8currencyyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO6amountyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO6amountyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC9eventNameSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC9eventNameSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC9eventNameSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC9eventNameSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC6valuesSDySSSdGSgvp", + "mangledName": "$s8FBAEMKit8AEMEventC6valuesSDySSSdGSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC6valuesSDySSSdGSgvg", + "mangledName": "$s8FBAEMKit8AEMEventC6valuesSDySSSdGSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dict:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC4dictACSgSDySSypGSg_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC4dictACSgSDySSypGSg_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit8AEMEventC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit8AEMEventC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)initWithCoder:", + "mangledName": "$s8FBAEMKit8AEMEventC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit8AEMEventC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)isEqual:", + "mangledName": "$s8FBAEMKit8AEMEventC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)init", + "mangledName": "$s8FBAEMKit8AEMEventCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent", + "mangledName": "$s8FBAEMKit8AEMEventC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "CommonCrypto.CommonHMAC", + "printedName": "CommonCrypto.CommonHMAC", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMInvocation", + "printedName": "AEMInvocation", + "children": [ + { + "kind": "Var", + "name": "campaignID", + "printedName": "campaignID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC10campaignIDSSvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "acsToken", + "printedName": "acsToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC8acsTokenSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC8acsTokenSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit13AEMInvocationC8acsTokenSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC8acsTokenSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "acsSharedSecret", + "printedName": "acsSharedSecret", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 2, + "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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "acsConfigurationID", + "printedName": "acsConfigurationID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 3, + "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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC10businessIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:8FBAEMKit13AEMInvocationC10businessIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC10businessIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10businessIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "catalogID", + "printedName": "catalogID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 5, + "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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC9catalogIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isTestMode", + "printedName": "isTestMode", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC10isTestModeSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10isTestModeSbvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 6, + "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:8FBAEMKit13AEMInvocationC10isTestModeSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10isTestModeSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasStoreKitAdNetwork", + "printedName": "hasStoreKitAdNetwork", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isConversionFilteringEligible", + "printedName": "isConversionFilteringEligible", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurationMode", + "printedName": "configurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC17configurationModeSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC17configurationModeSSvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 10, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC17configurationModeSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC17configurationModeSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurationID", + "printedName": "configurationID", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 11, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC15configurationIDSivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordedEvents", + "printedName": "recordedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 12, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordedValues", + "printedName": "recordedValues", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 13, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "conversionValue", + "printedName": "conversionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 14, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC15conversionValueSivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 15, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC8prioritySivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "conversionTimestamp", + "printedName": "conversionTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 16, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAggregated", + "printedName": "isAggregated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 17, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC12isAggregatedSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigurationMode", + "printedName": "ConfigurationMode", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO7defaultyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO7defaultyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "brand", + "printedName": "brand", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO5brandyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO5brandyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "cpas", + "printedName": "cpas", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO4cpasyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO4cpasyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLinkData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "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": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC11appLinkDataACSgSDys11AnyHashableVypGSg_tcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC11appLinkDataACSgSDys11AnyHashableVypGSg_tcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(campaignID:acsToken:acsSharedSecret:acsConfigurationID:businessID:catalogID:isTestMode:hasStoreKitAdNetwork:isConversionFilteringEligible:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD010isTestMode20hasStoreKitAdNetwork0L27ConversionFilteringEligibleACSgSS_S2SSgA3NS3btcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD010isTestMode20hasStoreKitAdNetwork0L27ConversionFilteringEligibleACSgSS_S2SSgA3NS3btcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(campaignID:acsToken:acsSharedSecret:acsConfigurationID:businessID:catalogID:timestamp:configurationMode:configurationID:recordedEvents:recordedValues:conversionValue:priority:conversionTimestamp:isAggregated:isTestMode:hasStoreKitAdNetwork:isConversionFilteringEligible:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD09timestamp17configurationMode0mD014recordedEvents0O6Values15conversionValue8priority0R9Timestamp12isAggregated0v4TestN020hasStoreKitAdNetwork0V27ConversionFilteringEligibleACSgSS_S2SSgA3W10Foundation4DateVSgSSSiShySSGSgSDySSSDySSypGGSgS2iA_S4btcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD09timestamp17configurationMode0mD014recordedEvents0O6Values15conversionValue8priority0R9Timestamp12isAggregated0v4TestN020hasStoreKitAdNetwork0V27ConversionFilteringEligibleACSgSS_S2SSgA3W10Foundation4DateVSgSSSiShySSGSgSDySSSDySSypGGSgS2iA_S4btcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "attributeEvent", + "printedName": "attributeEvent(_:currency:value:parameters:configurations:shouldUpdateCache:isRuleMatchInServer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC14attributeEvent_8currency5value10parameters14configurations17shouldUpdateCache19isRuleMatchInServerSbSS_SSSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGSgS2btF", + "mangledName": "$s8FBAEMKit13AEMInvocationC14attributeEvent_8currency5value10parameters14configurations17shouldUpdateCache19isRuleMatchInServerSbSS_SSSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGSgS2btF", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateConversionValue", + "printedName": "updateConversionValue(configurations:event:shouldBoostPriority:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC21updateConversionValue14configurations5event19shouldBoostPrioritySbSDySSSayAA16AEMConfigurationCGGSg_SSSbtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC21updateConversionValue14configurations5event19shouldBoostPrioritySbSDySSSayAA16AEMConfigurationCGGSg_SSSbtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOptimizedEvent", + "printedName": "isOptimizedEvent(_:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC16isOptimizedEvent_14configurationsSbSS_SDySSSayAA16AEMConfigurationCGGSgtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC16isOptimizedEvent_14configurationsSbSS_SDySSSayAA16AEMConfigurationCGGSgtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOutOfWindow", + "printedName": "isOutOfWindow(configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC13isOutOfWindow14configurationsSbSDySSSayAA16AEMConfigurationCGGSg_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC13isOutOfWindow14configurationsSbSDySSSayAA16AEMConfigurationCGGSg_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getHMAC", + "printedName": "getHMAC(delay:)", + "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:8FBAEMKit13AEMInvocationC7getHMAC5delaySSSgSi_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC7getHMAC5delaySSSgSi_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeBase64URLSafeString", + "printedName": "decodeBase64URLSafeString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC25decodeBase64URLSafeStringy10Foundation4DataVSgSSF", + "mangledName": "$s8FBAEMKit13AEMInvocationC25decodeBase64URLSafeStringy10Foundation4DataVSgSSF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProcessedParameters", + "printedName": "getProcessedParameters(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC22getProcessedParameters4fromSDySSypGSgAG_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC22getProcessedParameters4fromSDySSypGSgAG_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "findConfiguration", + "printedName": "findConfiguration(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC17findConfiguration2inAA16AEMConfigurationCSgSDySSSayAGGGSg_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17findConfiguration2inAA16AEMConfigurationCSgSDySSSayAGGGSg_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getConfigurationList", + "printedName": "getConfigurationList(mode:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC20getConfigurationList4mode14configurationsSayAA16AEMConfigurationCGAC0D4ModeO_SDySSAIGSgtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC20getConfigurationList4mode14configurationsSayAA16AEMConfigurationCGAC0D4ModeO_SDySSAIGSgtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConfiguration", + "printedName": "setConfiguration(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC16setConfigurationyyAA16AEMConfigurationCF", + "mangledName": "$s8FBAEMKit13AEMInvocationC16setConfigurationyyAA16AEMConfigurationCF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit13AEMInvocationC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit13AEMInvocationC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)initWithCoder:", + "mangledName": "$s8FBAEMKit13AEMInvocationC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit13AEMInvocationC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)init", + "mangledName": "$s8FBAEMKit13AEMInvocationCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation", + "mangledName": "$s8FBAEMKit13AEMInvocationC", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "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": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMNetworker", + "printedName": "AEMNetworker", + "children": [ + { + "kind": "TypeDecl", + "name": "Error", + "printedName": "Error", + "children": [ + { + "kind": "Var", + "name": "missingOperationQueue", + "printedName": "missingOperationQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO21missingOperationQueueyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO21missingOperationQueueyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "failedToCreateURL", + "printedName": "failedToCreateURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO17failedToCreateURLyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO17failedToCreateURLyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failedToParseJSON", + "printedName": "failedToParseJSON", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO17failedToParseJSONyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO17failedToParseJSONyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO2eeoiySbAE_AEtFZ", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO2eeoiySbAE_AEtFZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivg", + "moduleName": "FBAEMKit", + "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:8FBAEMKit12AEMNetworkerC5ErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO4hash4intoys6HasherVz_tF", + "moduleName": "FBAEMKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO", + "moduleName": "FBAEMKit", + "isEnumExhaustive": true, + "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": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvs", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvM", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userAgent", + "printedName": "userAgent", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "Lazy" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:8FBAEMKit12AEMNetworkerC9userAgentSSvs", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvM", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "$__lazy_storage_$_userAgent", + "printedName": "$__lazy_storage_$_userAgent", + "children": [ + { + "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:8FBAEMKit12AEMNetworkerC27$__lazy_storage_$_userAgent33_CA5D0A8FEAF39482D34FF23ED31512AELLSSSgvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC27$__lazy_storage_$_userAgent33_CA5D0A8FEAF39482D34FF23ED31512AELLSSSgvp", + "moduleName": "FBAEMKit", + "implicit": true, + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17startGraphRequest04withD4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBAEMKit", + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONResponse", + "printedName": "parseJSONResponse(data:error:statusCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC17parseJSONResponse4data5error10statusCodeSDySSypG10Foundation4DataVSg_s5Error_pSgzSitF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17parseJSONResponse4data5error10statusCodeSDySSypG10Foundation4DataVSg_s5Error_pSgzSitF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONOrOtherwise", + "printedName": "parseJSONOrOtherwise(unsafeString:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC20parseJSONOrOtherwise12unsafeString5errorypSgSSSg_s5Error_pSgztF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC20parseJSONOrOtherwise12unsafeString5errorypSgSSSg_s5Error_pSgztF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appendAttachments", + "printedName": "appendAttachments(attachments:toBody:addFormData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMRequestBody", + "printedName": "FBAEMKit.AEMRequestBody", + "usr": "s:8FBAEMKit14AEMRequestBodyC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC17appendAttachments11attachments6toBody11addFormDataySDySSypG_AA010AEMRequestG0CSbtF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17appendAttachments11attachments6toBody11addFormDataySDySSypG_AA010AEMRequestG0CSbtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworker", + "printedName": "FBAEMKit.AEMNetworker", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker(im)init", + "mangledName": "$s8FBAEMKit12AEMNetworkerCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker", + "mangledName": "$s8FBAEMKit12AEMNetworkerC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "children": [ + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s8FBAEMKit13AEMNetworkingP17startGraphRequest04withD4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMNetworking>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBAEMNetworking", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMReporter", + "printedName": "AEMReporter", + "children": [ + { + "kind": "Var", + "name": "networker", + "printedName": "networker", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)networker", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)networker", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setNetworker:", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)appID", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)appID", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAppID:", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC5appIDSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nullAppID", + "printedName": "nullAppID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)nullAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC9nullAppIDSSvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)nullAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC9nullAppIDSSvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "analyticsAppID", + "printedName": "analyticsAppID", + "children": [ + { + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)analyticsAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)analyticsAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAnalyticsAppID:", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reporter", + "printedName": "reporter", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)reporter", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)reporter", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setReporter:", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)dataStore", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)dataStore", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setDataStore:", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAEMReportEnabled", + "printedName": "isAEMReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isAEMReportEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isAEMReportEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsAEMReportEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isLoadingConfiguration", + "printedName": "isLoadingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isLoadingConfiguration", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isLoadingConfiguration", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsLoadingConfiguration:", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isConversionFilteringEnabled", + "printedName": "isConversionFilteringEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isConversionFilteringEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isConversionFilteringEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsConversionFilteringEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isCatalogMatchingEnabled", + "printedName": "isCatalogMatchingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isCatalogMatchingEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isCatalogMatchingEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsCatalogMatchingEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserRuleMatchInServerEnabled", + "printedName": "isAdvertiserRuleMatchInServerEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isAdvertiserRuleMatchInServerEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isAdvertiserRuleMatchInServerEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "serialQueue", + "printedName": "serialQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)serialQueue", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)serialQueue", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setSerialQueue:", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reportFile", + "printedName": "reportFile", + "children": [ + { + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)reportFile", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)reportFile", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setReportFile:", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC10reportFileSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configurations", + "printedName": "configurations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)configurations", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configurations", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConfigurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "invocations", + "printedName": "invocations", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)invocations", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)invocations", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setInvocations:", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configRefreshTimestamp", + "printedName": "configRefreshTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)configRefreshTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configRefreshTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConfigRefreshTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "minAggregationRequestTimestamp", + "printedName": "minAggregationRequestTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)minAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)minAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setMinAggregationRequestTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "completionBlocks", + "printedName": "completionBlocks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvpZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvgZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvsZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(networker:appID:reporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "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": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configureWithNetworker:appID:reporter:", + "mangledName": "$s8FBAEMKit11AEMReporterC9configure9networker5appID8reporteryAA13AEMNetworking_pSg_SSSgAA20SKAdNetworkReporting_pSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(networker:appID:reporter:analyticsAppID:store:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "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": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "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": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configureWithNetworker:appID:reporter:analyticsAppID:store:", + "mangledName": "$s8FBAEMKit11AEMReporterC9configure9networker5appID8reporter012analyticsAppF05storeyAA13AEMNetworking_pSg_SSSgAA20SKAdNetworkReporting_pSgALSo19FBSDKDataPersisting_pSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)enable", + "mangledName": "$s8FBAEMKit11AEMReporterC6enableyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConversionFilteringEnabled", + "printedName": "setConversionFilteringEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConversionFilteringEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC29setConversionFilteringEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCatalogMatchingEnabled", + "printedName": "setCatalogMatchingEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setCatalogMatchingEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC25setCatalogMatchingEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAdvertiserRuleMatchInServerEnabled", + "printedName": "setAdvertiserRuleMatchInServerEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC37setAdvertiserRuleMatchInServerEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handle", + "printedName": "handle(_:)", + "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": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)handle:", + "mangledName": "$s8FBAEMKit11AEMReporterC6handleyy10Foundation3URLVSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseURL", + "printedName": "parseURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "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": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)parseURL:", + "mangledName": "$s8FBAEMKit11AEMReporterC8parseURLyAA13AEMInvocationCSg10Foundation0D0VSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordAndUpdate", + "printedName": "recordAndUpdate(event:currency:value:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)recordAndUpdateEvent:currency:value:parameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC15recordAndUpdate5event8currency5value10parametersySS_SSSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "recordAndUpdateEvent:currency:value:parameters:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "attributedInvocation", + "printedName": "attributedInvocation(_:event:currency:value:parameters:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)attributedInvocation:event:currency:value:parameters:configurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC20attributedInvocation_5event8currency5value10parameters14configurationsAA13AEMInvocationCSgSayAKG_S2SSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isDoubleCounting", + "printedName": "isDoubleCounting(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isDoubleCounting:event:", + "mangledName": "$s8FBAEMKit11AEMReporterC16isDoubleCounting_5eventSbAA13AEMInvocationC_SStFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadConfiguration", + "printedName": "loadConfiguration(withRefreshForced:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.NSError?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadConfigurationWithRefreshForced:block:", + "mangledName": "$s8FBAEMKit11AEMReporterC17loadConfiguration17withRefreshForced5blockySb_ySo7NSErrorCSgcSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadCatalogOptimization", + "printedName": "loadCatalogOptimization(with:contentID:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadCatalogOptimizationWith:contentID:block:", + "mangledName": "$s8FBAEMKit11AEMReporterC23loadCatalogOptimization4with9contentID5blockyAA13AEMInvocationC_SSSgyyctFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadRuleMatch", + "printedName": "loadRuleMatch(_:event:currency:value:parameters:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadRuleMatch:event:currency:value:parameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC13loadRuleMatch_5event8currency5value10parametersySaySSG_S2SSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldReportConversion", + "printedName": "shouldReportConversion(inCatalogLevel:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldReportConversionInCatalogLevel:event:", + "mangledName": "$s8FBAEMKit11AEMReporterC22shouldReportConversion14inCatalogLevel5eventSbAA13AEMInvocationC_SStFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isContentOptimized", + "printedName": "isContentOptimized(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isContentOptimized:", + "mangledName": "$s8FBAEMKit11AEMReporterC18isContentOptimizedySbypSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requestParameters", + "printedName": "requestParameters()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)requestParameters", + "mangledName": "$s8FBAEMKit11AEMReporterC17requestParametersSDySSypGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "catalogRequestParameters", + "printedName": "catalogRequestParameters(_:contentID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)catalogRequestParameters:contentID:", + "mangledName": "$s8FBAEMKit11AEMReporterC24catalogRequestParameters_9contentIDSDySSypGSSSg_AGtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ruleMatchRequestParameters", + "printedName": "ruleMatchRequestParameters(_:content:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)ruleMatchRequestParameters:content:", + "mangledName": "$s8FBAEMKit11AEMReporterC26ruleMatchRequestParameters_7contentSDySSypGSaySSG_SSSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isConfigRefreshTimestampValid", + "printedName": "isConfigRefreshTimestampValid()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isConfigRefreshTimestampValid", + "mangledName": "$s8FBAEMKit11AEMReporterC29isConfigRefreshTimestampValidSbyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldRefresh", + "printedName": "shouldRefresh(withIsForced:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldRefreshWithIsForced:", + "mangledName": "$s8FBAEMKit11AEMReporterC13shouldRefresh12withIsForcedS2b_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldDelayAggregationRequest", + "printedName": "shouldDelayAggregationRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldDelayAggregationRequest", + "mangledName": "$s8FBAEMKit11AEMReporterC29shouldDelayAggregationRequestSbyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendDebuggingRequest", + "printedName": "sendDebuggingRequest(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)sendDebuggingRequest:", + "mangledName": "$s8FBAEMKit11AEMReporterC20sendDebuggingRequestyyAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "debuggingRequestParameters", + "printedName": "debuggingRequestParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)debuggingRequestParameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC26debuggingRequestParametersySDySSypGAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadMinAggregationRequestTimestamp", + "printedName": "loadMinAggregationRequestTimestamp()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadMinAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC34loadMinAggregationRequestTimestamp10Foundation4DateVSgyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateAggregationRequestTimestamp", + "printedName": "updateAggregationRequestTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)updateAggregationRequestTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC33updateAggregationRequestTimestampyySdFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadConfigurations", + "printedName": "loadConfigurations()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadConfigurations", + "mangledName": "$s8FBAEMKit11AEMReporterC18loadConfigurationsSDySSSayAA16AEMConfigurationCGGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addConfigurations", + "printedName": "addConfigurations(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)addConfigurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC17addConfigurationsyySaySDySSypGGFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadReportData", + "printedName": "loadReportData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadReportData", + "mangledName": "$s8FBAEMKit11AEMReporterC14loadReportDataSayAA13AEMInvocationCGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveReportData", + "printedName": "saveReportData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)saveReportData", + "mangledName": "$s8FBAEMKit11AEMReporterC14saveReportDatayyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAggregationRequest", + "printedName": "sendAggregationRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)sendAggregationRequest", + "mangledName": "$s8FBAEMKit11AEMReporterC22sendAggregationRequestyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "aggregationRequestParameters", + "printedName": "aggregationRequestParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)aggregationRequestParameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC28aggregationRequestParametersySDySSypGAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearCache", + "printedName": "clearCache()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)clearCache", + "mangledName": "$s8FBAEMKit11AEMReporterC10clearCacheyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearConfigurations", + "printedName": "clearConfigurations()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)clearConfigurations", + "mangledName": "$s8FBAEMKit11AEMReporterC19clearConfigurationsyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMReporter", + "printedName": "FBAEMKit.AEMReporter", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(im)init", + "mangledName": "$s8FBAEMKit11AEMReporterCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter", + "mangledName": "$s8FBAEMKit11AEMReporterC", + "moduleName": "FBAEMKit", + "objc_name": "FBAEMReporter", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMRequestBody", + "printedName": "AEMRequestBody", + "children": [ + { + "kind": "Function", + "name": "compressedData", + "printedName": "compressedData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit14AEMRequestBodyC14compressedData10Foundation0E0VSgyF", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC14compressedData10Foundation0E0VSgyF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvg", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvg", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_data", + "printedName": "_data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC5_data33_1FB9656C872A5478253A5AEB5A2CB886LL10Foundation4DataVvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC5_data33_1FB9656C872A5478253A5AEB5A2CB886LL10Foundation4DataVvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "json", + "printedName": "json", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC4json33_1FB9656C872A5478253A5AEB5A2CB886LLSDySSypGvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4json33_1FB9656C872A5478253A5AEB5A2CB886LLSDySSypGvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Function", + "name": "append", + "printedName": "append(withKey:formValue:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit14AEMRequestBodyC6append7withKey9formValueySSSg_AGtF", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC6append7withKey9formValueySSSg_AGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRequestBody", + "printedName": "FBAEMKit.AEMRequestBody", + "usr": "s:8FBAEMKit14AEMRequestBodyC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit14AEMRequestBodyCACycfc", + "mangledName": "$s8FBAEMKit14AEMRequestBodyCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit14AEMRequestBodyC", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMRule", + "printedName": "AEMRule", + "children": [ + { + "kind": "Var", + "name": "conversionValue", + "printedName": "conversionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC15conversionValueSivp", + "mangledName": "$s8FBAEMKit7AEMRuleC15conversionValueSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:8FBAEMKit7AEMRuleC15conversionValueSivg", + "mangledName": "$s8FBAEMKit7AEMRuleC15conversionValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC8prioritySivp", + "mangledName": "$s8FBAEMKit7AEMRuleC8prioritySivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit7AEMRuleC8prioritySivg", + "mangledName": "$s8FBAEMKit7AEMRuleC8prioritySivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvp", + "mangledName": "$s8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvg", + "mangledName": "$s8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit7AEMRuleC4jsonACSgSDySSypG_tcfc", + "mangledName": "$s8FBAEMKit7AEMRuleC4jsonACSgSDySSypG_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "containsEvent", + "printedName": "containsEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit7AEMRuleC13containsEventySbSSF", + "mangledName": "$s8FBAEMKit7AEMRuleC13containsEventySbSSF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withRecordedEvents:recordedValues:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit7AEMRuleC9isMatched18withRecordedEvents14recordedValuesSbShySSGSg_SDySSSDySSypGGSgtF", + "mangledName": "$s8FBAEMKit7AEMRuleC9isMatched18withRecordedEvents14recordedValuesSbShySSGSg_SDySSSDySSypGGSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit7AEMRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit7AEMRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit7AEMRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit7AEMRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)isEqual:", + "mangledName": "$s8FBAEMKit7AEMRuleC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)init", + "mangledName": "$s8FBAEMKit7AEMRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule", + "mangledName": "$s8FBAEMKit7AEMRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMSettings", + "printedName": "AEMSettings", + "children": [ + { + "kind": "Function", + "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": "Func", + "usr": "s:8FBAEMKit11AEMSettingsO5appIDSSSgyFZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO5appIDSSSgyFZ", + "moduleName": "FBAEMKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "bundle", + "printedName": "bundle", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvp", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvg", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvs", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvM", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleAESo8NSBundleC_tcfc", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleAESo8NSBundleC_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV", + "moduleName": "FBAEMKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvpZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvgZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvsZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvMZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvpZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvgZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvsZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvMZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit11AEMSettingsO", + "mangledName": "$s8FBAEMKit11AEMSettingsO", + "moduleName": "FBAEMKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ] + } + ], + "usr": "s:8FBAEMKit15DependentAsTypeP", + "mangledName": "$s8FBAEMKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMUtility", + "printedName": "AEMUtility", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit10AEMUtilityC6sharedACvpZ", + "mangledName": "$s8FBAEMKit10AEMUtilityC6sharedACvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit10AEMUtilityC6sharedACvgZ", + "mangledName": "$s8FBAEMKit10AEMUtilityC6sharedACvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getMatchedInvocation", + "printedName": "getMatchedInvocation(_:businessID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + }, + { + "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:8FBAEMKit10AEMUtilityC20getMatchedInvocation_10businessIDAA13AEMInvocationCSgSayAGG_SSSgtF", + "mangledName": "$s8FBAEMKit10AEMUtilityC20getMatchedInvocation_10businessIDAA13AEMInvocationCSgSayAGG_SSSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getInSegmentValue", + "printedName": "getInSegmentValue(_:matchingRule:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC17getInSegmentValue_12matchingRuleSo8NSNumberCSDySSypGSg_AA013AEMAdvertiserH8Matching_pSgtF", + "mangledName": "$s8FBAEMKit10AEMUtilityC17getInSegmentValue_12matchingRuleSo8NSNumberCSDySSypGSg_AA013AEMAdvertiserH8Matching_pSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContent", + "printedName": "getContent(_:)", + "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": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC10getContentySSSgSDySSypGSgF", + "mangledName": "$s8FBAEMKit10AEMUtilityC10getContentySSSgSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentID", + "printedName": "getContentID(_:)", + "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": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC12getContentIDySSSgSDySSypGSgF", + "mangledName": "$s8FBAEMKit10AEMUtilityC12getContentIDySSSgSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBusinessIDsInOrder", + "printedName": "getBusinessIDsInOrder(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC21getBusinessIDsInOrderySaySSGSayAA13AEMInvocationCGF", + "mangledName": "$s8FBAEMKit10AEMUtilityC21getBusinessIDsInOrderySaySSGSayAA13AEMInvocationCGF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit10AEMUtilityCACycfc", + "mangledName": "$s8FBAEMKit10AEMUtilityCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit10AEMUtilityC", + "mangledName": "$s8FBAEMKit10AEMUtilityC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:8FBAEMKit15DependentAsTypeP0D12DependenciesQa", + "mangledName": "$s8FBAEMKit15DependentAsTypeP0D12DependenciesQa", + "moduleName": "FBAEMKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvpZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvgZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvgZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvsZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvsZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvMZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvMZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvpZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvgZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvgZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypeP15setDependenciesyy0dF0QzFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP15setDependenciesyy0dF0QzFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypePAAE15setDependenciesyy0dF0QzFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE15setDependenciesyy0dF0QzFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypePAAE15getDependencies0dF0QzyKFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE15getDependencies0dF0QzyKFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit15DependentAsTypeP", + "mangledName": "$s8FBAEMKit15DependentAsTypeP", + "moduleName": "FBAEMKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV13dependentType33_A87604353953AE6AB47A0C00F7FE141DLLxmvp", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV13dependentType33_A87604353953AE6AB47A0C00F7FE141DLLxmvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBAEMKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:8FBAEMKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBAEMKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SKAdNetworkReporting", + "printedName": "SKAdNetworkReporting", + "children": [ + { + "kind": "Function", + "name": "shouldCutoff", + "printedName": "shouldCutoff()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)shouldCutoff", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP12shouldCutoffSbyF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isReportingEvent", + "printedName": "isReportingEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)isReportingEvent:", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP02isD5EventySbSSF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "isReportingEvent:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkAndRevokeTimer", + "printedName": "checkAndRevokeTimer()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)checkAndRevokeTimer", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP19checkAndRevokeTimeryyF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSKAdNetworkReporting", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserMultiEntryRule.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 27, + "value": "\"FBAEMKit.AEMAdvertiserMultiEntryRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 573, + "length": 10, + "value": "\"operator\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 607, + "length": 11, + "value": "\"param_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 648, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 14, + "value": "\"number_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 735, + "length": 13, + "value": "\"array_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 804, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 834, + "length": 5, + "value": "\"[*]\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "BooleanLiteral", + "offset": 8907, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 269, + "length": 28, + "value": "\"FBAEMKit.AEMAdvertiserSingleEntryRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 18, + "value": "\"default_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 13, + "value": "\"cutoff_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 24, + "value": "\"conversion_value_rules\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 12, + "value": "\"valid_from\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 554, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 13, + "value": "\"business_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 12, + "value": "\"param_rule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 18, + "value": "\"default_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 13, + "value": "\"cutoff_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 24, + "value": "\"conversion_value_rules\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 12, + "value": "\"valid_from\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 554, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 13, + "value": "\"business_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 12, + "value": "\"param_rule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 16, + "value": "\"FBAEMKit.AEMConfiguration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 339, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 339, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 8, + "value": "\"FBAEMKit.AEMEvent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1068, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1104, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1211, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 11, + "value": "\"acs_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 15, + "value": "\"shared_secret\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1402, + "length": 15, + "value": "\"acs_config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1448, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1493, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 15, + "value": "\"test_deeplink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1594, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1681, + "length": 17, + "value": "\"recorded_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1725, + "length": 17, + "value": "\"recorded_values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1770, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1838, + "length": 22, + "value": "\"conversion_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1885, + "length": 15, + "value": "\"is_aggregated\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 10, + "value": "\"has_skan\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 34, + "value": "\"is_conversion_filtering_eligible\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2097, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 11, + "value": "\"acs_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 15, + "value": "\"shared_secret\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1402, + "length": 15, + "value": "\"acs_config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1448, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1493, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 15, + "value": "\"test_deeplink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1594, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1681, + "length": 17, + "value": "\"recorded_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1725, + "length": 17, + "value": "\"recorded_values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1770, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1838, + "length": 22, + "value": "\"conversion_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1885, + "length": 15, + "value": "\"is_aggregated\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 10, + "value": "\"has_skan\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 34, + "value": "\"is_conversion_filtering_eligible\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2097, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 7, + "value": "\"BRAND\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2225, + "length": 6, + "value": "\"CPAS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 7, + "value": "\"BRAND\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2225, + "length": 6, + "value": "\"CPAS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 294, + "length": 13, + "value": "\"FBAEMKit.AEMInvocation\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 501, + "length": 6, + "value": "\"\r\n\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 539, + "length": 8, + "value": "\"16.1.3\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 588, + "length": 7, + "value": "\"v16.0\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 654, + "length": 10, + "value": "\"FBiOSAEM\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 699, + "length": 35, + "value": "\"https:\/\/graph.facebook.com\/v16.0\/\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 772, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 820, + "length": 21, + "value": "\"com.facebook.aemkit\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 865, + "length": 49, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 889, + "length": 1, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 913, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 21, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1142, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1264, + "length": 8, + "value": "\"\/macOS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 435, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 480, + "length": 16, + "value": "\"advertiser_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 528, + "length": 17, + "value": "\"fb_content_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 577, + "length": 17, + "value": "\"al_applink_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 623, + "length": 13, + "value": "\"campaign_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 669, + "length": 17, + "value": "\"conversion_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 18, + "value": "\"consumption_hour\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 762, + "length": 7, + "value": "\"token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 6, + "value": "\"hmac\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 864, + "length": 12, + "value": "\"delay_flow\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 916, + "length": 25, + "value": "\"is_conversion_filtering\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 16, + "value": "\"fb_content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1016, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 54, + "value": "\"com.facebook.sdk:FBAEMMinAggregationRequestTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1156, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1187, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1226, + "length": 17, + "value": "\"aem_conversions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1269, + "length": 9, + "value": "\"success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 16, + "value": "\"is_valid_match\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1363, + "length": 23, + "value": "\"matched_advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1419, + "length": 18, + "value": "\"in_segment_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1483, + "length": 34, + "value": "\"content_id_belongs_to_catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1587, + "length": 42, + "value": "\"com.facebook.appevents.AEM.FBAEMReporter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "IntegerLiteral", + "offset": 1714, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "IntegerLiteral", + "offset": 1760, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1823, + "length": 27, + "value": "\"FBSDKAEMReportData.report\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1878, + "length": 27, + "value": "\"FBSDKAEMReportData.config\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1972, + "length": 24, + "value": "\"aem_conversion_configs\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2034, + "length": 23, + "value": "\"aem_conversion_filter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2090, + "length": 17, + "value": "\"aem_attribution\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2163, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2191, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 8, + "value": "\"(null)\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2541, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2585, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2681, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Dictionary", + "offset": 2958, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Array", + "offset": 3006, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Array", + "offset": 3157, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRequestBody.swift", + "kind": "StringLiteral", + "offset": 584, + "length": 6, + "value": "\"\r\n\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 436, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 484, + "length": 10, + "value": "\"priority\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 522, + "length": 8, + "value": "\"events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 269, + "length": 7, + "value": "\"FBAEMKit.AEMRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 329, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 369, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 412, + "length": 12, + "value": "\"item_price\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 451, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 482, + "length": 10, + "value": "\"quantity\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface new file mode 100644 index 00000000..ce6ab124 --- /dev/null +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface @@ -0,0 +1,32 @@ +// 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-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import CommonCrypto.CommonHMAC +import FBSDKCoreKit_Basics +import Foundation +import Swift +import _Concurrency +import _StringProcessing +public typealias FBGraphRequestCompletion = (Any?, Swift.Error?) -> Swift.Void +@objc(FBAEMNetworking) public protocol AEMNetworking { + @objc(startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:) func startGraphRequest(withGraphPath graphPath: Swift.String, parameters: [Swift.String : Any], tokenString: Swift.String?, httpMethod method: Swift.String?, completion: @escaping FBAEMKit.FBGraphRequestCompletion) +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBAEMReporter) final public class AEMReporter : ObjectiveC.NSObject { + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?) + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?, analyticsAppID: Swift.String?, store: FBSDKCoreKit_Basics.DataPersisting?) + @objc public static func enable() + @objc public static func setConversionFilteringEnabled(_ enabled: Swift.Bool) + @objc public static func setCatalogMatchingEnabled(_ enabled: Swift.Bool) + @objc public static func setAdvertiserRuleMatchInServerEnabled(_ enabled: Swift.Bool) + @objc public static func handle(_ url: Foundation.URL?) + @objc(recordAndUpdateEvent:currency:value:parameters:) public static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) + @objc override dynamic public init() + @objc deinit +} +@objc(FBSKAdNetworkReporting) public protocol SKAdNetworkReporting { + @objc func shouldCutoff() -> Swift.Bool + @objc(isReportingEvent:) func isReportingEvent(_ event: Swift.String) -> Swift.Bool + @objc func checkAndRevokeTimer() +} diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc similarity index 92% rename from ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc rename to ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc index 2b44516e..fa2963b6 100644 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc and b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface similarity index 74% rename from ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface rename to ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface index 2849da0d..ce6ab124 100644 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface @@ -1,22 +1,26 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import CommonCrypto import CommonCrypto.CommonHMAC import FBSDKCoreKit_Basics import Foundation import Swift import _Concurrency +import _StringProcessing public typealias FBGraphRequestCompletion = (Any?, Swift.Error?) -> Swift.Void @objc(FBAEMNetworking) public protocol AEMNetworking { @objc(startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:) func startGraphRequest(withGraphPath graphPath: Swift.String, parameters: [Swift.String : Any], tokenString: Swift.String?, httpMethod method: Swift.String?, completion: @escaping FBAEMKit.FBGraphRequestCompletion) } @_inheritsConvenienceInitializers @objcMembers @objc(FBAEMReporter) final public class AEMReporter : ObjectiveC.NSObject { + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?) + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?, analyticsAppID: Swift.String?, store: FBSDKCoreKit_Basics.DataPersisting?) @objc public static func enable() @objc public static func setConversionFilteringEnabled(_ enabled: Swift.Bool) @objc public static func setCatalogMatchingEnabled(_ enabled: Swift.Bool) @objc public static func setAdvertiserRuleMatchInServerEnabled(_ enabled: Swift.Bool) - @objc public static func handle(_ url: Foundation.URL) + @objc public static func handle(_ url: Foundation.URL?) @objc(recordAndUpdateEvent:currency:value:parameters:) public static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) @objc override dynamic public init() @objc deinit diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.abi.json b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.abi.json new file mode 100644 index 00000000..36133bd5 --- /dev/null +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.abi.json @@ -0,0 +1,17857 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "AEMAdvertiserMultiEntryRule", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type) -> FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8operatoryA2EmF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8operatoryA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "rules", + "printedName": "rules", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type) -> FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO5rulesyA2EmF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO5rulesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rules", + "printedName": "rules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(with:rules:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC4with5rulesAcA0bE8OperatorO_SayAA0bE8Matching_pGtcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC4with5rulesAcA0bE8OperatorO_SayAA0bE8Matching_pGtcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)init", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleFactory", + "printedName": "AEMAdvertiserRuleFactory", + "children": [ + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "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": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(dictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createMultiEntryRule", + "printedName": "createMultiEntryRule(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC016createMultiEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC016createMultiEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createSingleEntryRule", + "printedName": "createSingleEntryRule(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC017createSingleEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC017createSingleEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "primaryKey", + "printedName": "primaryKey(for:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC10primaryKey3forSSSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC10primaryKey3forSSSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getOperator", + "printedName": "getOperator(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC11getOperator4fromAA0bcF0OSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC11getOperator4fromAA0bcF0OSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOperatorForMultiEntryRule", + "printedName": "isOperatorForMultiEntryRule(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC023isOperatorForMultiEntryC0ySbAA0bcF0OF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC023isOperatorForMultiEntryC0ySbAA0bcF0OF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleFactory", + "printedName": "FBAEMKit.AEMAdvertiserRuleFactory", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryCACycfc", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleProviding", + "printedName": "AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "children": [ + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleOperator", + "printedName": "AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO7unknownyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO7unknownyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "and", + "printedName": "and", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO3andyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO3andyA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "or", + "printedName": "or", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO2oryA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO2oryA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "not", + "printedName": "not", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO3notyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO3notyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contains", + "printedName": "contains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8containsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8containsyA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "notContains", + "printedName": "notContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO11notContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO11notContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "startsWith", + "printedName": "startsWith", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO10startsWithyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO10startsWithyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "caseInsensitiveContains", + "printedName": "caseInsensitiveContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "caseInsensitiveNotContains", + "printedName": "caseInsensitiveNotContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO26caseInsensitiveNotContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO26caseInsensitiveNotContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "caseInsensitiveStartsWith", + "printedName": "caseInsensitiveStartsWith", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO25caseInsensitiveStartsWithyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO25caseInsensitiveStartsWithyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "regexMatch", + "printedName": "regexMatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO10regexMatchyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO10regexMatchyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "equal", + "printedName": "equal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO5equalyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO5equalyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "notEqual", + "printedName": "notEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8notEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8notEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "lessThan", + "printedName": "lessThan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8lessThanyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8lessThanyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "lessThanOrEqual", + "printedName": "lessThanOrEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO15lessThanOrEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO15lessThanOrEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "greaterThan", + "printedName": "greaterThan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO11greaterThanyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO11greaterThanyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "greaterThanOrEqual", + "printedName": "greaterThanOrEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO18greaterThanOrEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO18greaterThanOrEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "caseInsensitiveIsAny", + "printedName": "caseInsensitiveIsAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO20caseInsensitiveIsAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO20caseInsensitiveIsAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "caseInsensitiveIsNotAny", + "printedName": "caseInsensitiveIsNotAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveIsNotAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveIsNotAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 18 + }, + { + "kind": "Var", + "name": "isAny", + "printedName": "isAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO5isAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO5isAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 19 + }, + { + "kind": "Var", + "name": "isNotAny", + "printedName": "isNotAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8isNotAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8isNotAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 20 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueACSgSi_tcfc", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueACSgSi_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivp", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivg", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "Int", + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleProviding", + "printedName": "AEMAdvertiserRuleProviding", + "children": [ + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "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": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(dictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "AEMAdvertiserSingleEntryRule", + "children": [ + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvs", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvM", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "paramKey", + "printedName": "paramKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "linguisticCondition", + "printedName": "linguisticCondition", + "children": [ + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "numericalCondition", + "printedName": "numericalCondition", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arrayCondition", + "printedName": "arrayCondition", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(operator:paramKey:linguisticCondition:numericalCondition:arrayCondition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operator8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSdSgSaySSGSgtcfc", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operator8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSdSgSaySSGSgtcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(with:paramKey:linguisticCondition:numericalCondition:arrayCondition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC4with8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSo8NSNumberCSgSaySSGSgtcfc", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC4with8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSo8NSNumberCSgSaySSGSgtcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(eventParams:paramPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParameters11eventParams9paramPathSbSDySSypGSg_SaySSGtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParameters11eventParams9paramPathSbSDySSypGSg_SaySSGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withAsteriskParam:eventParameters:paramPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched17withAsteriskParam15eventParameters9paramPathSbSS_SDySSypGSaySSGtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched17withAsteriskParam15eventParameters9paramPathSbSS_SDySSypGSaySSGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withStringValue:numericalValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched15withStringValue09numericalJ0SbSSSg_SdSgtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched15withStringValue09numericalJ0SbSSSg_SdSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRegexMatch", + "printedName": "isRegexMatch(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC12isRegexMatchySbSSF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC12isRegexMatchySbSSF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isAny", + "printedName": "isAny(of:stringValue:ignoreCase:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC5isAny2of11stringValue10ignoreCaseSbSaySSG_SSSbtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC5isAny2of11stringValue10ignoreCaseSbSaySSG_SSSbtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "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@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "objc_name": "supportsSecureCoding", + "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@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cm)setSupportsSecureCoding:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvMZ", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)isEqual:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)init", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMConfiguration", + "printedName": "AEMConfiguration", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "defaultCurrency", + "printedName": "defaultCurrency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO15defaultCurrencyyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO15defaultCurrencyyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "cutoffTime", + "printedName": "cutoffTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO10cutoffTimeyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO10cutoffTimeyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "conversionValueRules", + "printedName": "conversionValueRules", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO20conversionValueRulesyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO20conversionValueRulesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "validFrom", + "printedName": "validFrom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO9validFromyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO9validFromyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO4modeyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO4modeyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "advertiserID", + "printedName": "advertiserID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO12advertiserIDyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO12advertiserIDyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO10businessIDyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO10businessIDyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "paramRule", + "printedName": "paramRule", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO9paramRuleyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO9paramRuleyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "cutoffTime", + "printedName": "cutoffTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC10cutoffTimeSivp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10cutoffTimeSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10cutoffTimeSivg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10cutoffTimeSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "validFrom", + "printedName": "validFrom", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC9validFromSivp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9validFromSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess", + "RawDocComment" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC9validFromSivg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9validFromSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultCurrency", + "printedName": "defaultCurrency", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC15defaultCurrencySSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC15defaultCurrencySSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC15defaultCurrencySSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC15defaultCurrencySSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC4modeSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4modeSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC4modeSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4modeSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "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:8FBAEMKit16AEMConfigurationC10businessIDSSSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10businessIDSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 4, + "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:8FBAEMKit16AEMConfigurationC10businessIDSSSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10businessIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "matchingRule", + "printedName": "matchingRule", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "conversionValueRules", + "printedName": "conversionValueRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventSet", + "printedName": "eventSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC8eventSetShySSGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC8eventSetShySSGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC8eventSetShySSGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC8eventSetShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currencySet", + "printedName": "currencySet", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC11currencySetShySSGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11currencySetShySSGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC11currencySetShySSGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11currencySetShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ruleProvider", + "printedName": "ruleProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvpZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvgZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(withRuleProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC9configure16withRuleProvideryAA013AEMAdvertiserE9Providing_p_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9configure16withRuleProvideryAA013AEMAdvertiserE9Providing_p_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC4jsonACSgSDySSypGSg_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4jsonACSgSDySSypGSg_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "parseRules", + "printedName": "parseRules(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBAEMKit.AEMRule]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC10parseRulesySayAA7AEMRuleCGSgSaySDySSypGGSgFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10parseRulesySayAA7AEMRuleCGSgSaySDySSypGGSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEventSet", + "printedName": "getEventSet(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC11getEventSet4fromShySSGSayAA7AEMRuleCG_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11getEventSet4fromShySSGSayAA7AEMRuleCG_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrencySet", + "printedName": "getCurrencySet(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC14getCurrencySet4fromShySSGSayAA7AEMRuleCG_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC14getCurrencySet4fromShySSGSayAA7AEMRuleCG_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSame", + "printedName": "isSame(validFrom:businessID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "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:8FBAEMKit16AEMConfigurationC6isSame9validFrom10businessIDSbSi_SSSgtF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC6isSame9validFrom10businessIDSbSi_SSSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSameBusinessID", + "printedName": "isSameBusinessID(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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:8FBAEMKit16AEMConfigurationC16isSameBusinessIDySbSSSgF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC16isSameBusinessIDySbSSSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit16AEMConfigurationC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)initWithCoder:", + "mangledName": "$s8FBAEMKit16AEMConfigurationC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)init", + "mangledName": "$s8FBAEMKit16AEMConfigurationCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration", + "mangledName": "$s8FBAEMKit16AEMConfigurationC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMEvent", + "printedName": "AEMEvent", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO9eventNameyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO9eventNameyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO6valuesyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO6valuesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8currencyyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8currencyyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO6amountyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO6amountyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC9eventNameSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC9eventNameSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC9eventNameSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC9eventNameSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC6valuesSDySSSdGSgvp", + "mangledName": "$s8FBAEMKit8AEMEventC6valuesSDySSSdGSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC6valuesSDySSSdGSgvg", + "mangledName": "$s8FBAEMKit8AEMEventC6valuesSDySSSdGSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dict:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC4dictACSgSDySSypGSg_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC4dictACSgSDySSypGSg_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit8AEMEventC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit8AEMEventC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)initWithCoder:", + "mangledName": "$s8FBAEMKit8AEMEventC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit8AEMEventC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)isEqual:", + "mangledName": "$s8FBAEMKit8AEMEventC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)init", + "mangledName": "$s8FBAEMKit8AEMEventCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent", + "mangledName": "$s8FBAEMKit8AEMEventC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "CommonCrypto.CommonHMAC", + "printedName": "CommonCrypto.CommonHMAC", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMInvocation", + "printedName": "AEMInvocation", + "children": [ + { + "kind": "Var", + "name": "campaignID", + "printedName": "campaignID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC10campaignIDSSvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "acsToken", + "printedName": "acsToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC8acsTokenSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC8acsTokenSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit13AEMInvocationC8acsTokenSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC8acsTokenSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "acsSharedSecret", + "printedName": "acsSharedSecret", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 2, + "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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "acsConfigurationID", + "printedName": "acsConfigurationID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 3, + "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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC10businessIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:8FBAEMKit13AEMInvocationC10businessIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC10businessIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10businessIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "catalogID", + "printedName": "catalogID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 5, + "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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC9catalogIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isTestMode", + "printedName": "isTestMode", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC10isTestModeSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10isTestModeSbvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 6, + "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:8FBAEMKit13AEMInvocationC10isTestModeSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10isTestModeSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasStoreKitAdNetwork", + "printedName": "hasStoreKitAdNetwork", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isConversionFilteringEligible", + "printedName": "isConversionFilteringEligible", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurationMode", + "printedName": "configurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC17configurationModeSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC17configurationModeSSvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 10, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC17configurationModeSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC17configurationModeSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurationID", + "printedName": "configurationID", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 11, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC15configurationIDSivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordedEvents", + "printedName": "recordedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 12, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordedValues", + "printedName": "recordedValues", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 13, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "conversionValue", + "printedName": "conversionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 14, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC15conversionValueSivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 15, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC8prioritySivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "conversionTimestamp", + "printedName": "conversionTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 16, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAggregated", + "printedName": "isAggregated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 17, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC12isAggregatedSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigurationMode", + "printedName": "ConfigurationMode", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO7defaultyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO7defaultyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "brand", + "printedName": "brand", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO5brandyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO5brandyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "cpas", + "printedName": "cpas", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO4cpasyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO4cpasyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLinkData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "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": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC11appLinkDataACSgSDys11AnyHashableVypGSg_tcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC11appLinkDataACSgSDys11AnyHashableVypGSg_tcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(campaignID:acsToken:acsSharedSecret:acsConfigurationID:businessID:catalogID:isTestMode:hasStoreKitAdNetwork:isConversionFilteringEligible:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD010isTestMode20hasStoreKitAdNetwork0L27ConversionFilteringEligibleACSgSS_S2SSgA3NS3btcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD010isTestMode20hasStoreKitAdNetwork0L27ConversionFilteringEligibleACSgSS_S2SSgA3NS3btcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(campaignID:acsToken:acsSharedSecret:acsConfigurationID:businessID:catalogID:timestamp:configurationMode:configurationID:recordedEvents:recordedValues:conversionValue:priority:conversionTimestamp:isAggregated:isTestMode:hasStoreKitAdNetwork:isConversionFilteringEligible:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD09timestamp17configurationMode0mD014recordedEvents0O6Values15conversionValue8priority0R9Timestamp12isAggregated0v4TestN020hasStoreKitAdNetwork0V27ConversionFilteringEligibleACSgSS_S2SSgA3W10Foundation4DateVSgSSSiShySSGSgSDySSSDySSypGGSgS2iA_S4btcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD09timestamp17configurationMode0mD014recordedEvents0O6Values15conversionValue8priority0R9Timestamp12isAggregated0v4TestN020hasStoreKitAdNetwork0V27ConversionFilteringEligibleACSgSS_S2SSgA3W10Foundation4DateVSgSSSiShySSGSgSDySSSDySSypGGSgS2iA_S4btcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "attributeEvent", + "printedName": "attributeEvent(_:currency:value:parameters:configurations:shouldUpdateCache:isRuleMatchInServer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC14attributeEvent_8currency5value10parameters14configurations17shouldUpdateCache19isRuleMatchInServerSbSS_SSSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGSgS2btF", + "mangledName": "$s8FBAEMKit13AEMInvocationC14attributeEvent_8currency5value10parameters14configurations17shouldUpdateCache19isRuleMatchInServerSbSS_SSSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGSgS2btF", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateConversionValue", + "printedName": "updateConversionValue(configurations:event:shouldBoostPriority:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC21updateConversionValue14configurations5event19shouldBoostPrioritySbSDySSSayAA16AEMConfigurationCGGSg_SSSbtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC21updateConversionValue14configurations5event19shouldBoostPrioritySbSDySSSayAA16AEMConfigurationCGGSg_SSSbtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOptimizedEvent", + "printedName": "isOptimizedEvent(_:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC16isOptimizedEvent_14configurationsSbSS_SDySSSayAA16AEMConfigurationCGGSgtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC16isOptimizedEvent_14configurationsSbSS_SDySSSayAA16AEMConfigurationCGGSgtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOutOfWindow", + "printedName": "isOutOfWindow(configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC13isOutOfWindow14configurationsSbSDySSSayAA16AEMConfigurationCGGSg_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC13isOutOfWindow14configurationsSbSDySSSayAA16AEMConfigurationCGGSg_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getHMAC", + "printedName": "getHMAC(delay:)", + "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:8FBAEMKit13AEMInvocationC7getHMAC5delaySSSgSi_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC7getHMAC5delaySSSgSi_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeBase64URLSafeString", + "printedName": "decodeBase64URLSafeString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC25decodeBase64URLSafeStringy10Foundation4DataVSgSSF", + "mangledName": "$s8FBAEMKit13AEMInvocationC25decodeBase64URLSafeStringy10Foundation4DataVSgSSF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProcessedParameters", + "printedName": "getProcessedParameters(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC22getProcessedParameters4fromSDySSypGSgAG_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC22getProcessedParameters4fromSDySSypGSgAG_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "findConfiguration", + "printedName": "findConfiguration(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC17findConfiguration2inAA16AEMConfigurationCSgSDySSSayAGGGSg_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17findConfiguration2inAA16AEMConfigurationCSgSDySSSayAGGGSg_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getConfigurationList", + "printedName": "getConfigurationList(mode:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC20getConfigurationList4mode14configurationsSayAA16AEMConfigurationCGAC0D4ModeO_SDySSAIGSgtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC20getConfigurationList4mode14configurationsSayAA16AEMConfigurationCGAC0D4ModeO_SDySSAIGSgtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConfiguration", + "printedName": "setConfiguration(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC16setConfigurationyyAA16AEMConfigurationCF", + "mangledName": "$s8FBAEMKit13AEMInvocationC16setConfigurationyyAA16AEMConfigurationCF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit13AEMInvocationC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit13AEMInvocationC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)initWithCoder:", + "mangledName": "$s8FBAEMKit13AEMInvocationC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit13AEMInvocationC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)init", + "mangledName": "$s8FBAEMKit13AEMInvocationCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation", + "mangledName": "$s8FBAEMKit13AEMInvocationC", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "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": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMNetworker", + "printedName": "AEMNetworker", + "children": [ + { + "kind": "TypeDecl", + "name": "Error", + "printedName": "Error", + "children": [ + { + "kind": "Var", + "name": "missingOperationQueue", + "printedName": "missingOperationQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO21missingOperationQueueyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO21missingOperationQueueyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "failedToCreateURL", + "printedName": "failedToCreateURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO17failedToCreateURLyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO17failedToCreateURLyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failedToParseJSON", + "printedName": "failedToParseJSON", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO17failedToParseJSONyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO17failedToParseJSONyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO2eeoiySbAE_AEtFZ", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO2eeoiySbAE_AEtFZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivg", + "moduleName": "FBAEMKit", + "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:8FBAEMKit12AEMNetworkerC5ErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO4hash4intoys6HasherVz_tF", + "moduleName": "FBAEMKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO", + "moduleName": "FBAEMKit", + "isEnumExhaustive": true, + "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": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvs", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvM", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userAgent", + "printedName": "userAgent", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "Lazy" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:8FBAEMKit12AEMNetworkerC9userAgentSSvs", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvM", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "$__lazy_storage_$_userAgent", + "printedName": "$__lazy_storage_$_userAgent", + "children": [ + { + "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:8FBAEMKit12AEMNetworkerC27$__lazy_storage_$_userAgent33_CA5D0A8FEAF39482D34FF23ED31512AELLSSSgvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC27$__lazy_storage_$_userAgent33_CA5D0A8FEAF39482D34FF23ED31512AELLSSSgvp", + "moduleName": "FBAEMKit", + "implicit": true, + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17startGraphRequest04withD4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBAEMKit", + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONResponse", + "printedName": "parseJSONResponse(data:error:statusCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC17parseJSONResponse4data5error10statusCodeSDySSypG10Foundation4DataVSg_s5Error_pSgzSitF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17parseJSONResponse4data5error10statusCodeSDySSypG10Foundation4DataVSg_s5Error_pSgzSitF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONOrOtherwise", + "printedName": "parseJSONOrOtherwise(unsafeString:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC20parseJSONOrOtherwise12unsafeString5errorypSgSSSg_s5Error_pSgztF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC20parseJSONOrOtherwise12unsafeString5errorypSgSSSg_s5Error_pSgztF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appendAttachments", + "printedName": "appendAttachments(attachments:toBody:addFormData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMRequestBody", + "printedName": "FBAEMKit.AEMRequestBody", + "usr": "s:8FBAEMKit14AEMRequestBodyC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC17appendAttachments11attachments6toBody11addFormDataySDySSypG_AA010AEMRequestG0CSbtF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17appendAttachments11attachments6toBody11addFormDataySDySSypG_AA010AEMRequestG0CSbtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworker", + "printedName": "FBAEMKit.AEMNetworker", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker(im)init", + "mangledName": "$s8FBAEMKit12AEMNetworkerCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker", + "mangledName": "$s8FBAEMKit12AEMNetworkerC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "children": [ + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s8FBAEMKit13AEMNetworkingP17startGraphRequest04withD4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMNetworking>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBAEMNetworking", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMReporter", + "printedName": "AEMReporter", + "children": [ + { + "kind": "Var", + "name": "networker", + "printedName": "networker", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)networker", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)networker", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setNetworker:", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)appID", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)appID", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAppID:", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC5appIDSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nullAppID", + "printedName": "nullAppID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)nullAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC9nullAppIDSSvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)nullAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC9nullAppIDSSvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "analyticsAppID", + "printedName": "analyticsAppID", + "children": [ + { + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)analyticsAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)analyticsAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAnalyticsAppID:", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reporter", + "printedName": "reporter", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)reporter", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)reporter", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setReporter:", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)dataStore", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)dataStore", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setDataStore:", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAEMReportEnabled", + "printedName": "isAEMReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isAEMReportEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isAEMReportEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsAEMReportEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isLoadingConfiguration", + "printedName": "isLoadingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isLoadingConfiguration", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isLoadingConfiguration", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsLoadingConfiguration:", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isConversionFilteringEnabled", + "printedName": "isConversionFilteringEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isConversionFilteringEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isConversionFilteringEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsConversionFilteringEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isCatalogMatchingEnabled", + "printedName": "isCatalogMatchingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isCatalogMatchingEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isCatalogMatchingEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsCatalogMatchingEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserRuleMatchInServerEnabled", + "printedName": "isAdvertiserRuleMatchInServerEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isAdvertiserRuleMatchInServerEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isAdvertiserRuleMatchInServerEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "serialQueue", + "printedName": "serialQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)serialQueue", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)serialQueue", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setSerialQueue:", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reportFile", + "printedName": "reportFile", + "children": [ + { + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)reportFile", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)reportFile", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setReportFile:", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC10reportFileSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configurations", + "printedName": "configurations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)configurations", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configurations", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConfigurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "invocations", + "printedName": "invocations", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)invocations", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)invocations", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setInvocations:", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configRefreshTimestamp", + "printedName": "configRefreshTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)configRefreshTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configRefreshTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConfigRefreshTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "minAggregationRequestTimestamp", + "printedName": "minAggregationRequestTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)minAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)minAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setMinAggregationRequestTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "completionBlocks", + "printedName": "completionBlocks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvpZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvgZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvsZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(networker:appID:reporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "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": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configureWithNetworker:appID:reporter:", + "mangledName": "$s8FBAEMKit11AEMReporterC9configure9networker5appID8reporteryAA13AEMNetworking_pSg_SSSgAA20SKAdNetworkReporting_pSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(networker:appID:reporter:analyticsAppID:store:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "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": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "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": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configureWithNetworker:appID:reporter:analyticsAppID:store:", + "mangledName": "$s8FBAEMKit11AEMReporterC9configure9networker5appID8reporter012analyticsAppF05storeyAA13AEMNetworking_pSg_SSSgAA20SKAdNetworkReporting_pSgALSo19FBSDKDataPersisting_pSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)enable", + "mangledName": "$s8FBAEMKit11AEMReporterC6enableyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConversionFilteringEnabled", + "printedName": "setConversionFilteringEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConversionFilteringEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC29setConversionFilteringEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCatalogMatchingEnabled", + "printedName": "setCatalogMatchingEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setCatalogMatchingEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC25setCatalogMatchingEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAdvertiserRuleMatchInServerEnabled", + "printedName": "setAdvertiserRuleMatchInServerEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC37setAdvertiserRuleMatchInServerEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handle", + "printedName": "handle(_:)", + "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": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)handle:", + "mangledName": "$s8FBAEMKit11AEMReporterC6handleyy10Foundation3URLVSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseURL", + "printedName": "parseURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "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": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)parseURL:", + "mangledName": "$s8FBAEMKit11AEMReporterC8parseURLyAA13AEMInvocationCSg10Foundation0D0VSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordAndUpdate", + "printedName": "recordAndUpdate(event:currency:value:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)recordAndUpdateEvent:currency:value:parameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC15recordAndUpdate5event8currency5value10parametersySS_SSSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "recordAndUpdateEvent:currency:value:parameters:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "attributedInvocation", + "printedName": "attributedInvocation(_:event:currency:value:parameters:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)attributedInvocation:event:currency:value:parameters:configurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC20attributedInvocation_5event8currency5value10parameters14configurationsAA13AEMInvocationCSgSayAKG_S2SSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isDoubleCounting", + "printedName": "isDoubleCounting(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isDoubleCounting:event:", + "mangledName": "$s8FBAEMKit11AEMReporterC16isDoubleCounting_5eventSbAA13AEMInvocationC_SStFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadConfiguration", + "printedName": "loadConfiguration(withRefreshForced:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.NSError?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadConfigurationWithRefreshForced:block:", + "mangledName": "$s8FBAEMKit11AEMReporterC17loadConfiguration17withRefreshForced5blockySb_ySo7NSErrorCSgcSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadCatalogOptimization", + "printedName": "loadCatalogOptimization(with:contentID:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadCatalogOptimizationWith:contentID:block:", + "mangledName": "$s8FBAEMKit11AEMReporterC23loadCatalogOptimization4with9contentID5blockyAA13AEMInvocationC_SSSgyyctFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadRuleMatch", + "printedName": "loadRuleMatch(_:event:currency:value:parameters:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadRuleMatch:event:currency:value:parameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC13loadRuleMatch_5event8currency5value10parametersySaySSG_S2SSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldReportConversion", + "printedName": "shouldReportConversion(inCatalogLevel:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldReportConversionInCatalogLevel:event:", + "mangledName": "$s8FBAEMKit11AEMReporterC22shouldReportConversion14inCatalogLevel5eventSbAA13AEMInvocationC_SStFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isContentOptimized", + "printedName": "isContentOptimized(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isContentOptimized:", + "mangledName": "$s8FBAEMKit11AEMReporterC18isContentOptimizedySbypSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requestParameters", + "printedName": "requestParameters()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)requestParameters", + "mangledName": "$s8FBAEMKit11AEMReporterC17requestParametersSDySSypGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "catalogRequestParameters", + "printedName": "catalogRequestParameters(_:contentID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)catalogRequestParameters:contentID:", + "mangledName": "$s8FBAEMKit11AEMReporterC24catalogRequestParameters_9contentIDSDySSypGSSSg_AGtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ruleMatchRequestParameters", + "printedName": "ruleMatchRequestParameters(_:content:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)ruleMatchRequestParameters:content:", + "mangledName": "$s8FBAEMKit11AEMReporterC26ruleMatchRequestParameters_7contentSDySSypGSaySSG_SSSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isConfigRefreshTimestampValid", + "printedName": "isConfigRefreshTimestampValid()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isConfigRefreshTimestampValid", + "mangledName": "$s8FBAEMKit11AEMReporterC29isConfigRefreshTimestampValidSbyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldRefresh", + "printedName": "shouldRefresh(withIsForced:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldRefreshWithIsForced:", + "mangledName": "$s8FBAEMKit11AEMReporterC13shouldRefresh12withIsForcedS2b_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldDelayAggregationRequest", + "printedName": "shouldDelayAggregationRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldDelayAggregationRequest", + "mangledName": "$s8FBAEMKit11AEMReporterC29shouldDelayAggregationRequestSbyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendDebuggingRequest", + "printedName": "sendDebuggingRequest(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)sendDebuggingRequest:", + "mangledName": "$s8FBAEMKit11AEMReporterC20sendDebuggingRequestyyAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "debuggingRequestParameters", + "printedName": "debuggingRequestParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)debuggingRequestParameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC26debuggingRequestParametersySDySSypGAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadMinAggregationRequestTimestamp", + "printedName": "loadMinAggregationRequestTimestamp()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadMinAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC34loadMinAggregationRequestTimestamp10Foundation4DateVSgyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateAggregationRequestTimestamp", + "printedName": "updateAggregationRequestTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)updateAggregationRequestTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC33updateAggregationRequestTimestampyySdFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadConfigurations", + "printedName": "loadConfigurations()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadConfigurations", + "mangledName": "$s8FBAEMKit11AEMReporterC18loadConfigurationsSDySSSayAA16AEMConfigurationCGGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addConfigurations", + "printedName": "addConfigurations(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)addConfigurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC17addConfigurationsyySaySDySSypGGFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadReportData", + "printedName": "loadReportData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadReportData", + "mangledName": "$s8FBAEMKit11AEMReporterC14loadReportDataSayAA13AEMInvocationCGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveReportData", + "printedName": "saveReportData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)saveReportData", + "mangledName": "$s8FBAEMKit11AEMReporterC14saveReportDatayyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAggregationRequest", + "printedName": "sendAggregationRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)sendAggregationRequest", + "mangledName": "$s8FBAEMKit11AEMReporterC22sendAggregationRequestyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "aggregationRequestParameters", + "printedName": "aggregationRequestParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)aggregationRequestParameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC28aggregationRequestParametersySDySSypGAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearCache", + "printedName": "clearCache()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)clearCache", + "mangledName": "$s8FBAEMKit11AEMReporterC10clearCacheyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearConfigurations", + "printedName": "clearConfigurations()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)clearConfigurations", + "mangledName": "$s8FBAEMKit11AEMReporterC19clearConfigurationsyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMReporter", + "printedName": "FBAEMKit.AEMReporter", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(im)init", + "mangledName": "$s8FBAEMKit11AEMReporterCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter", + "mangledName": "$s8FBAEMKit11AEMReporterC", + "moduleName": "FBAEMKit", + "objc_name": "FBAEMReporter", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMRequestBody", + "printedName": "AEMRequestBody", + "children": [ + { + "kind": "Function", + "name": "compressedData", + "printedName": "compressedData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit14AEMRequestBodyC14compressedData10Foundation0E0VSgyF", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC14compressedData10Foundation0E0VSgyF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvg", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvg", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_data", + "printedName": "_data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC5_data33_1FB9656C872A5478253A5AEB5A2CB886LL10Foundation4DataVvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC5_data33_1FB9656C872A5478253A5AEB5A2CB886LL10Foundation4DataVvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "json", + "printedName": "json", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC4json33_1FB9656C872A5478253A5AEB5A2CB886LLSDySSypGvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4json33_1FB9656C872A5478253A5AEB5A2CB886LLSDySSypGvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Function", + "name": "append", + "printedName": "append(withKey:formValue:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit14AEMRequestBodyC6append7withKey9formValueySSSg_AGtF", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC6append7withKey9formValueySSSg_AGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRequestBody", + "printedName": "FBAEMKit.AEMRequestBody", + "usr": "s:8FBAEMKit14AEMRequestBodyC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit14AEMRequestBodyCACycfc", + "mangledName": "$s8FBAEMKit14AEMRequestBodyCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit14AEMRequestBodyC", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMRule", + "printedName": "AEMRule", + "children": [ + { + "kind": "Var", + "name": "conversionValue", + "printedName": "conversionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC15conversionValueSivp", + "mangledName": "$s8FBAEMKit7AEMRuleC15conversionValueSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:8FBAEMKit7AEMRuleC15conversionValueSivg", + "mangledName": "$s8FBAEMKit7AEMRuleC15conversionValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC8prioritySivp", + "mangledName": "$s8FBAEMKit7AEMRuleC8prioritySivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit7AEMRuleC8prioritySivg", + "mangledName": "$s8FBAEMKit7AEMRuleC8prioritySivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvp", + "mangledName": "$s8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvg", + "mangledName": "$s8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit7AEMRuleC4jsonACSgSDySSypG_tcfc", + "mangledName": "$s8FBAEMKit7AEMRuleC4jsonACSgSDySSypG_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "containsEvent", + "printedName": "containsEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit7AEMRuleC13containsEventySbSSF", + "mangledName": "$s8FBAEMKit7AEMRuleC13containsEventySbSSF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withRecordedEvents:recordedValues:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit7AEMRuleC9isMatched18withRecordedEvents14recordedValuesSbShySSGSg_SDySSSDySSypGGSgtF", + "mangledName": "$s8FBAEMKit7AEMRuleC9isMatched18withRecordedEvents14recordedValuesSbShySSGSg_SDySSSDySSypGGSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit7AEMRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit7AEMRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit7AEMRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit7AEMRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)isEqual:", + "mangledName": "$s8FBAEMKit7AEMRuleC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)init", + "mangledName": "$s8FBAEMKit7AEMRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule", + "mangledName": "$s8FBAEMKit7AEMRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMSettings", + "printedName": "AEMSettings", + "children": [ + { + "kind": "Function", + "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": "Func", + "usr": "s:8FBAEMKit11AEMSettingsO5appIDSSSgyFZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO5appIDSSSgyFZ", + "moduleName": "FBAEMKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "bundle", + "printedName": "bundle", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvp", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvg", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvs", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvM", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleAESo8NSBundleC_tcfc", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleAESo8NSBundleC_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV", + "moduleName": "FBAEMKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvpZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvgZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvsZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvMZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvpZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvgZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvsZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvMZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit11AEMSettingsO", + "mangledName": "$s8FBAEMKit11AEMSettingsO", + "moduleName": "FBAEMKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ] + } + ], + "usr": "s:8FBAEMKit15DependentAsTypeP", + "mangledName": "$s8FBAEMKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMUtility", + "printedName": "AEMUtility", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit10AEMUtilityC6sharedACvpZ", + "mangledName": "$s8FBAEMKit10AEMUtilityC6sharedACvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit10AEMUtilityC6sharedACvgZ", + "mangledName": "$s8FBAEMKit10AEMUtilityC6sharedACvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getMatchedInvocation", + "printedName": "getMatchedInvocation(_:businessID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + }, + { + "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:8FBAEMKit10AEMUtilityC20getMatchedInvocation_10businessIDAA13AEMInvocationCSgSayAGG_SSSgtF", + "mangledName": "$s8FBAEMKit10AEMUtilityC20getMatchedInvocation_10businessIDAA13AEMInvocationCSgSayAGG_SSSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getInSegmentValue", + "printedName": "getInSegmentValue(_:matchingRule:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC17getInSegmentValue_12matchingRuleSo8NSNumberCSDySSypGSg_AA013AEMAdvertiserH8Matching_pSgtF", + "mangledName": "$s8FBAEMKit10AEMUtilityC17getInSegmentValue_12matchingRuleSo8NSNumberCSDySSypGSg_AA013AEMAdvertiserH8Matching_pSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContent", + "printedName": "getContent(_:)", + "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": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC10getContentySSSgSDySSypGSgF", + "mangledName": "$s8FBAEMKit10AEMUtilityC10getContentySSSgSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentID", + "printedName": "getContentID(_:)", + "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": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC12getContentIDySSSgSDySSypGSgF", + "mangledName": "$s8FBAEMKit10AEMUtilityC12getContentIDySSSgSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBusinessIDsInOrder", + "printedName": "getBusinessIDsInOrder(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC21getBusinessIDsInOrderySaySSGSayAA13AEMInvocationCGF", + "mangledName": "$s8FBAEMKit10AEMUtilityC21getBusinessIDsInOrderySaySSGSayAA13AEMInvocationCGF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit10AEMUtilityCACycfc", + "mangledName": "$s8FBAEMKit10AEMUtilityCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit10AEMUtilityC", + "mangledName": "$s8FBAEMKit10AEMUtilityC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:8FBAEMKit15DependentAsTypeP0D12DependenciesQa", + "mangledName": "$s8FBAEMKit15DependentAsTypeP0D12DependenciesQa", + "moduleName": "FBAEMKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvpZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvgZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvgZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvsZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvsZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvMZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvMZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvpZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvgZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvgZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypeP15setDependenciesyy0dF0QzFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP15setDependenciesyy0dF0QzFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypePAAE15setDependenciesyy0dF0QzFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE15setDependenciesyy0dF0QzFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypePAAE15getDependencies0dF0QzyKFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE15getDependencies0dF0QzyKFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit15DependentAsTypeP", + "mangledName": "$s8FBAEMKit15DependentAsTypeP", + "moduleName": "FBAEMKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV13dependentType33_A87604353953AE6AB47A0C00F7FE141DLLxmvp", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV13dependentType33_A87604353953AE6AB47A0C00F7FE141DLLxmvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBAEMKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:8FBAEMKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBAEMKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SKAdNetworkReporting", + "printedName": "SKAdNetworkReporting", + "children": [ + { + "kind": "Function", + "name": "shouldCutoff", + "printedName": "shouldCutoff()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)shouldCutoff", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP12shouldCutoffSbyF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isReportingEvent", + "printedName": "isReportingEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)isReportingEvent:", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP02isD5EventySbSSF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "isReportingEvent:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkAndRevokeTimer", + "printedName": "checkAndRevokeTimer()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)checkAndRevokeTimer", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP19checkAndRevokeTimeryyF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSKAdNetworkReporting", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserMultiEntryRule.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 27, + "value": "\"FBAEMKit.AEMAdvertiserMultiEntryRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 573, + "length": 10, + "value": "\"operator\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 607, + "length": 11, + "value": "\"param_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 648, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 14, + "value": "\"number_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 735, + "length": 13, + "value": "\"array_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 804, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 834, + "length": 5, + "value": "\"[*]\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "BooleanLiteral", + "offset": 8907, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 269, + "length": 28, + "value": "\"FBAEMKit.AEMAdvertiserSingleEntryRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 18, + "value": "\"default_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 13, + "value": "\"cutoff_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 24, + "value": "\"conversion_value_rules\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 12, + "value": "\"valid_from\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 554, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 13, + "value": "\"business_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 12, + "value": "\"param_rule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 18, + "value": "\"default_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 13, + "value": "\"cutoff_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 24, + "value": "\"conversion_value_rules\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 12, + "value": "\"valid_from\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 554, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 13, + "value": "\"business_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 12, + "value": "\"param_rule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 16, + "value": "\"FBAEMKit.AEMConfiguration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 339, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 339, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 8, + "value": "\"FBAEMKit.AEMEvent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1068, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1104, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1211, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 11, + "value": "\"acs_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 15, + "value": "\"shared_secret\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1402, + "length": 15, + "value": "\"acs_config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1448, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1493, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 15, + "value": "\"test_deeplink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1594, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1681, + "length": 17, + "value": "\"recorded_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1725, + "length": 17, + "value": "\"recorded_values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1770, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1838, + "length": 22, + "value": "\"conversion_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1885, + "length": 15, + "value": "\"is_aggregated\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 10, + "value": "\"has_skan\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 34, + "value": "\"is_conversion_filtering_eligible\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2097, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 11, + "value": "\"acs_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 15, + "value": "\"shared_secret\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1402, + "length": 15, + "value": "\"acs_config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1448, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1493, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 15, + "value": "\"test_deeplink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1594, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1681, + "length": 17, + "value": "\"recorded_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1725, + "length": 17, + "value": "\"recorded_values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1770, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1838, + "length": 22, + "value": "\"conversion_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1885, + "length": 15, + "value": "\"is_aggregated\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 10, + "value": "\"has_skan\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 34, + "value": "\"is_conversion_filtering_eligible\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2097, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 7, + "value": "\"BRAND\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2225, + "length": 6, + "value": "\"CPAS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 7, + "value": "\"BRAND\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2225, + "length": 6, + "value": "\"CPAS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 294, + "length": 13, + "value": "\"FBAEMKit.AEMInvocation\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 501, + "length": 6, + "value": "\"\r\n\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 539, + "length": 8, + "value": "\"16.1.3\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 588, + "length": 7, + "value": "\"v16.0\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 654, + "length": 10, + "value": "\"FBiOSAEM\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 699, + "length": 35, + "value": "\"https:\/\/graph.facebook.com\/v16.0\/\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 772, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 820, + "length": 21, + "value": "\"com.facebook.aemkit\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 865, + "length": 49, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 889, + "length": 1, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 913, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 21, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1142, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1264, + "length": 8, + "value": "\"\/macOS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 435, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 480, + "length": 16, + "value": "\"advertiser_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 528, + "length": 17, + "value": "\"fb_content_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 577, + "length": 17, + "value": "\"al_applink_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 623, + "length": 13, + "value": "\"campaign_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 669, + "length": 17, + "value": "\"conversion_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 18, + "value": "\"consumption_hour\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 762, + "length": 7, + "value": "\"token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 6, + "value": "\"hmac\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 864, + "length": 12, + "value": "\"delay_flow\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 916, + "length": 25, + "value": "\"is_conversion_filtering\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 16, + "value": "\"fb_content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1016, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 54, + "value": "\"com.facebook.sdk:FBAEMMinAggregationRequestTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1156, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1187, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1226, + "length": 17, + "value": "\"aem_conversions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1269, + "length": 9, + "value": "\"success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 16, + "value": "\"is_valid_match\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1363, + "length": 23, + "value": "\"matched_advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1419, + "length": 18, + "value": "\"in_segment_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1483, + "length": 34, + "value": "\"content_id_belongs_to_catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1587, + "length": 42, + "value": "\"com.facebook.appevents.AEM.FBAEMReporter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "IntegerLiteral", + "offset": 1714, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "IntegerLiteral", + "offset": 1760, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1823, + "length": 27, + "value": "\"FBSDKAEMReportData.report\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1878, + "length": 27, + "value": "\"FBSDKAEMReportData.config\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1972, + "length": 24, + "value": "\"aem_conversion_configs\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2034, + "length": 23, + "value": "\"aem_conversion_filter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2090, + "length": 17, + "value": "\"aem_attribution\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2163, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2191, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 8, + "value": "\"(null)\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2541, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2585, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2681, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Dictionary", + "offset": 2958, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Array", + "offset": 3006, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Array", + "offset": 3157, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRequestBody.swift", + "kind": "StringLiteral", + "offset": 584, + "length": 6, + "value": "\"\r\n\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 436, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 484, + "length": 10, + "value": "\"priority\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 522, + "length": 8, + "value": "\"events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 269, + "length": 7, + "value": "\"FBAEMKit.AEMRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 329, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 369, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 412, + "length": 12, + "value": "\"item_price\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 451, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 482, + "length": 10, + "value": "\"quantity\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface new file mode 100644 index 00000000..2316e31f --- /dev/null +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface @@ -0,0 +1,32 @@ +// 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-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import CommonCrypto.CommonHMAC +import FBSDKCoreKit_Basics +import Foundation +import Swift +import _Concurrency +import _StringProcessing +public typealias FBGraphRequestCompletion = (Any?, Swift.Error?) -> Swift.Void +@objc(FBAEMNetworking) public protocol AEMNetworking { + @objc(startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:) func startGraphRequest(withGraphPath graphPath: Swift.String, parameters: [Swift.String : Any], tokenString: Swift.String?, httpMethod method: Swift.String?, completion: @escaping FBAEMKit.FBGraphRequestCompletion) +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBAEMReporter) final public class AEMReporter : ObjectiveC.NSObject { + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?) + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?, analyticsAppID: Swift.String?, store: FBSDKCoreKit_Basics.DataPersisting?) + @objc public static func enable() + @objc public static func setConversionFilteringEnabled(_ enabled: Swift.Bool) + @objc public static func setCatalogMatchingEnabled(_ enabled: Swift.Bool) + @objc public static func setAdvertiserRuleMatchInServerEnabled(_ enabled: Swift.Bool) + @objc public static func handle(_ url: Foundation.URL?) + @objc(recordAndUpdateEvent:currency:value:parameters:) public static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) + @objc override dynamic public init() + @objc deinit +} +@objc(FBSKAdNetworkReporting) public protocol SKAdNetworkReporting { + @objc func shouldCutoff() -> Swift.Bool + @objc(isReportingEvent:) func isReportingEvent(_ event: Swift.String) -> Swift.Bool + @objc func checkAndRevokeTimer() +} diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc similarity index 92% rename from ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc rename to ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc index 0532f817..54adc2e4 100644 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc and b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface similarity index 74% rename from ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface rename to ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface index fb435c1a..2316e31f 100644 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface @@ -1,22 +1,26 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import CommonCrypto import CommonCrypto.CommonHMAC import FBSDKCoreKit_Basics import Foundation import Swift import _Concurrency +import _StringProcessing public typealias FBGraphRequestCompletion = (Any?, Swift.Error?) -> Swift.Void @objc(FBAEMNetworking) public protocol AEMNetworking { @objc(startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:) func startGraphRequest(withGraphPath graphPath: Swift.String, parameters: [Swift.String : Any], tokenString: Swift.String?, httpMethod method: Swift.String?, completion: @escaping FBAEMKit.FBGraphRequestCompletion) } @_inheritsConvenienceInitializers @objcMembers @objc(FBAEMReporter) final public class AEMReporter : ObjectiveC.NSObject { + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?) + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?, analyticsAppID: Swift.String?, store: FBSDKCoreKit_Basics.DataPersisting?) @objc public static func enable() @objc public static func setConversionFilteringEnabled(_ enabled: Swift.Bool) @objc public static func setCatalogMatchingEnabled(_ enabled: Swift.Bool) @objc public static func setAdvertiserRuleMatchInServerEnabled(_ enabled: Swift.Bool) - @objc public static func handle(_ url: Foundation.URL) + @objc public static func handle(_ url: Foundation.URL?) @objc(recordAndUpdateEvent:currency:value:parameters:) public static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) @objc override dynamic public init() @objc deinit diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/module.modulemap b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/module.modulemap similarity index 100% rename from ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Modules/module.modulemap rename to ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Modules/module.modulemap diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Resources b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Resources deleted file mode 120000 index 953ee36f..00000000 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Resources/Info.plist b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Resources/Info.plist similarity index 85% rename from ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Resources/Info.plist rename to ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Resources/Info.plist index 99784c3b..51aa45c6 100644 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/Resources/Info.plist +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Resources/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 21G115 + 22F82 CFBundleDevelopmentRegion en CFBundleExecutable @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 15.1.0 + 16.1.3 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 13F100 + 14C18 DTPlatformName macosx DTPlatformVersion - 12.3 + 13.1 DTSDKBuild - 21E226 + 22C55 DTSDKName - macosx12.3 + macosx13.1 DTXcode - 1341 + 1420 DTXcodeBuild - 13F100 + 14C18 LSMinimumSystemVersion 10.15 UIDeviceFamily diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/FBAEMKit b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/FBAEMKit deleted file mode 100755 index 92ae3bcc..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/A/FBAEMKit and /dev/null differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/Current b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/Current deleted file mode 120000 index 8c7e5a66..00000000 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/FBAEMKit.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index aa3ea2ad..00000000 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBAEMKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit deleted file mode 100644 index 704fa0f1..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit and /dev/null differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/FBAEMKit b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/FBAEMKit old mode 100755 new mode 100644 index ac9fefb9..dbdfda10 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/FBAEMKit and b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/FBAEMKit differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Headers/FBAEMKit-Swift.h b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Headers/FBAEMKit-Swift.h index ef900e3c..e96662cb 100644 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Headers/FBAEMKit-Swift.h +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Headers/FBAEMKit-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBAEMKIT_SWIFT_H #define FBAEMKIT_SWIFT_H #pragma clang diagnostic push @@ -23,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -183,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -193,6 +204,28 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" @@ -201,6 +234,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); @import ObjectiveC; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -208,6 +242,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -216,6 +251,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; SWIFT_PROTOCOL_NAMED("AEMNetworking") @@ -223,11 +259,15 @@ SWIFT_PROTOCOL_NAMED("AEMNetworking") - (void)startGraphRequestWithGraphPath:(NSString * _Nonnull)graphPath parameters:(NSDictionary * _Nonnull)parameters tokenString:(NSString * _Nullable)tokenString HTTPMethod:(NSString * _Nullable)method completion:(void (^ _Nonnull)(id _Nullable, NSError * _Nullable))completion; @end +@protocol FBSKAdNetworkReporting; +@protocol FBSDKDataPersisting; @class NSURL; @class NSNumber; SWIFT_CLASS_NAMED("AEMReporter") @interface FBAEMReporter : NSObject ++ (void)configureWithNetworker:(id _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id _Nullable)reporter; ++ (void)configureWithNetworker:(id _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id _Nullable)reporter analyticsAppID:(NSString * _Nullable)analyticsAppID store:(id _Nullable)store; /// Enable AEM reporting /// This function should be called in application(_:open:options:) from ApplicationDelegate + (void)enable; @@ -243,7 +283,7 @@ SWIFT_CLASS_NAMED("AEMReporter") + (void)setAdvertiserRuleMatchInServerEnabled:(BOOL)enabled; /// Handle deeplink /// This function should be called in application(_:open:options:) from ApplicationDelegate -+ (void)handle:(NSURL * _Nonnull)url; ++ (void)handle:(NSURL * _Nullable)url; /// Calculate the conversion value for the app event based on the AEM configuration /// This function should be called when you log any in-app events + (void)recordAndUpdateEvent:(NSString * _Nonnull)event currency:(NSString * _Nullable)currency value:(NSNumber * _Nullable)value parameters:(NSDictionary * _Nullable)parameters; @@ -258,6 +298,9 @@ SWIFT_PROTOCOL_NAMED("SKAdNetworkReporting") - (void)checkAndRevokeTimer; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif @@ -265,7 +308,7 @@ SWIFT_PROTOCOL_NAMED("SKAdNetworkReporting") #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBAEMKIT_SWIFT_H #define FBAEMKIT_SWIFT_H #pragma clang diagnostic push @@ -288,11 +331,20 @@ SWIFT_PROTOCOL_NAMED("SKAdNetworkReporting") # 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 @@ -448,9 +500,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -458,6 +512,28 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" @@ -466,6 +542,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); @import ObjectiveC; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -473,6 +550,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -481,6 +559,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; SWIFT_PROTOCOL_NAMED("AEMNetworking") @@ -488,11 +567,15 @@ SWIFT_PROTOCOL_NAMED("AEMNetworking") - (void)startGraphRequestWithGraphPath:(NSString * _Nonnull)graphPath parameters:(NSDictionary * _Nonnull)parameters tokenString:(NSString * _Nullable)tokenString HTTPMethod:(NSString * _Nullable)method completion:(void (^ _Nonnull)(id _Nullable, NSError * _Nullable))completion; @end +@protocol FBSKAdNetworkReporting; +@protocol FBSDKDataPersisting; @class NSURL; @class NSNumber; SWIFT_CLASS_NAMED("AEMReporter") @interface FBAEMReporter : NSObject ++ (void)configureWithNetworker:(id _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id _Nullable)reporter; ++ (void)configureWithNetworker:(id _Nullable)networker appID:(NSString * _Nullable)appID reporter:(id _Nullable)reporter analyticsAppID:(NSString * _Nullable)analyticsAppID store:(id _Nullable)store; /// Enable AEM reporting /// This function should be called in application(_:open:options:) from ApplicationDelegate + (void)enable; @@ -508,7 +591,7 @@ SWIFT_CLASS_NAMED("AEMReporter") + (void)setAdvertiserRuleMatchInServerEnabled:(BOOL)enabled; /// Handle deeplink /// This function should be called in application(_:open:options:) from ApplicationDelegate -+ (void)handle:(NSURL * _Nonnull)url; ++ (void)handle:(NSURL * _Nullable)url; /// Calculate the conversion value for the app event based on the AEM configuration /// This function should be called when you log any in-app events + (void)recordAndUpdateEvent:(NSString * _Nonnull)event currency:(NSString * _Nullable)currency value:(NSNumber * _Nullable)value parameters:(NSDictionary * _Nullable)parameters; @@ -523,10 +606,15 @@ SWIFT_PROTOCOL_NAMED("SKAdNetworkReporting") - (void)checkAndRevokeTimer; @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/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Info.plist b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Info.plist index cd0da44d..45feef9e 100644 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Info.plist and b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Info.plist differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.abi.json b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 00000000..36133bd5 --- /dev/null +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,17857 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "AEMAdvertiserMultiEntryRule", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type) -> FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8operatoryA2EmF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8operatoryA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "rules", + "printedName": "rules", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type) -> FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO5rulesyA2EmF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO5rulesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rules", + "printedName": "rules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(with:rules:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC4with5rulesAcA0bE8OperatorO_SayAA0bE8Matching_pGtcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC4with5rulesAcA0bE8OperatorO_SayAA0bE8Matching_pGtcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)init", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleFactory", + "printedName": "AEMAdvertiserRuleFactory", + "children": [ + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "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": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(dictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createMultiEntryRule", + "printedName": "createMultiEntryRule(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC016createMultiEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC016createMultiEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createSingleEntryRule", + "printedName": "createSingleEntryRule(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC017createSingleEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC017createSingleEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "primaryKey", + "printedName": "primaryKey(for:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC10primaryKey3forSSSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC10primaryKey3forSSSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getOperator", + "printedName": "getOperator(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC11getOperator4fromAA0bcF0OSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC11getOperator4fromAA0bcF0OSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOperatorForMultiEntryRule", + "printedName": "isOperatorForMultiEntryRule(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC023isOperatorForMultiEntryC0ySbAA0bcF0OF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC023isOperatorForMultiEntryC0ySbAA0bcF0OF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleFactory", + "printedName": "FBAEMKit.AEMAdvertiserRuleFactory", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryCACycfc", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleProviding", + "printedName": "AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "children": [ + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleOperator", + "printedName": "AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO7unknownyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO7unknownyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "and", + "printedName": "and", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO3andyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO3andyA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "or", + "printedName": "or", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO2oryA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO2oryA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "not", + "printedName": "not", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO3notyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO3notyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contains", + "printedName": "contains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8containsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8containsyA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "notContains", + "printedName": "notContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO11notContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO11notContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "startsWith", + "printedName": "startsWith", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO10startsWithyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO10startsWithyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "caseInsensitiveContains", + "printedName": "caseInsensitiveContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "caseInsensitiveNotContains", + "printedName": "caseInsensitiveNotContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO26caseInsensitiveNotContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO26caseInsensitiveNotContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "caseInsensitiveStartsWith", + "printedName": "caseInsensitiveStartsWith", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO25caseInsensitiveStartsWithyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO25caseInsensitiveStartsWithyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "regexMatch", + "printedName": "regexMatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO10regexMatchyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO10regexMatchyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "equal", + "printedName": "equal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO5equalyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO5equalyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "notEqual", + "printedName": "notEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8notEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8notEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "lessThan", + "printedName": "lessThan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8lessThanyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8lessThanyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "lessThanOrEqual", + "printedName": "lessThanOrEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO15lessThanOrEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO15lessThanOrEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "greaterThan", + "printedName": "greaterThan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO11greaterThanyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO11greaterThanyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "greaterThanOrEqual", + "printedName": "greaterThanOrEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO18greaterThanOrEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO18greaterThanOrEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "caseInsensitiveIsAny", + "printedName": "caseInsensitiveIsAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO20caseInsensitiveIsAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO20caseInsensitiveIsAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "caseInsensitiveIsNotAny", + "printedName": "caseInsensitiveIsNotAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveIsNotAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveIsNotAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 18 + }, + { + "kind": "Var", + "name": "isAny", + "printedName": "isAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO5isAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO5isAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 19 + }, + { + "kind": "Var", + "name": "isNotAny", + "printedName": "isNotAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8isNotAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8isNotAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 20 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueACSgSi_tcfc", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueACSgSi_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivp", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivg", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "Int", + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleProviding", + "printedName": "AEMAdvertiserRuleProviding", + "children": [ + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "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": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(dictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "AEMAdvertiserSingleEntryRule", + "children": [ + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvs", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvM", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "paramKey", + "printedName": "paramKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "linguisticCondition", + "printedName": "linguisticCondition", + "children": [ + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "numericalCondition", + "printedName": "numericalCondition", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arrayCondition", + "printedName": "arrayCondition", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(operator:paramKey:linguisticCondition:numericalCondition:arrayCondition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operator8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSdSgSaySSGSgtcfc", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operator8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSdSgSaySSGSgtcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(with:paramKey:linguisticCondition:numericalCondition:arrayCondition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC4with8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSo8NSNumberCSgSaySSGSgtcfc", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC4with8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSo8NSNumberCSgSaySSGSgtcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(eventParams:paramPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParameters11eventParams9paramPathSbSDySSypGSg_SaySSGtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParameters11eventParams9paramPathSbSDySSypGSg_SaySSGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withAsteriskParam:eventParameters:paramPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched17withAsteriskParam15eventParameters9paramPathSbSS_SDySSypGSaySSGtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched17withAsteriskParam15eventParameters9paramPathSbSS_SDySSypGSaySSGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withStringValue:numericalValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched15withStringValue09numericalJ0SbSSSg_SdSgtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched15withStringValue09numericalJ0SbSSSg_SdSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRegexMatch", + "printedName": "isRegexMatch(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC12isRegexMatchySbSSF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC12isRegexMatchySbSSF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isAny", + "printedName": "isAny(of:stringValue:ignoreCase:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC5isAny2of11stringValue10ignoreCaseSbSaySSG_SSSbtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC5isAny2of11stringValue10ignoreCaseSbSaySSG_SSSbtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "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@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "objc_name": "supportsSecureCoding", + "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@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cm)setSupportsSecureCoding:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvMZ", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)isEqual:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)init", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMConfiguration", + "printedName": "AEMConfiguration", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "defaultCurrency", + "printedName": "defaultCurrency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO15defaultCurrencyyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO15defaultCurrencyyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "cutoffTime", + "printedName": "cutoffTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO10cutoffTimeyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO10cutoffTimeyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "conversionValueRules", + "printedName": "conversionValueRules", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO20conversionValueRulesyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO20conversionValueRulesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "validFrom", + "printedName": "validFrom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO9validFromyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO9validFromyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO4modeyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO4modeyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "advertiserID", + "printedName": "advertiserID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO12advertiserIDyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO12advertiserIDyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO10businessIDyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO10businessIDyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "paramRule", + "printedName": "paramRule", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO9paramRuleyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO9paramRuleyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "cutoffTime", + "printedName": "cutoffTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC10cutoffTimeSivp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10cutoffTimeSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10cutoffTimeSivg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10cutoffTimeSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "validFrom", + "printedName": "validFrom", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC9validFromSivp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9validFromSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess", + "RawDocComment" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC9validFromSivg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9validFromSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultCurrency", + "printedName": "defaultCurrency", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC15defaultCurrencySSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC15defaultCurrencySSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC15defaultCurrencySSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC15defaultCurrencySSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC4modeSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4modeSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC4modeSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4modeSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "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:8FBAEMKit16AEMConfigurationC10businessIDSSSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10businessIDSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 4, + "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:8FBAEMKit16AEMConfigurationC10businessIDSSSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10businessIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "matchingRule", + "printedName": "matchingRule", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "conversionValueRules", + "printedName": "conversionValueRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventSet", + "printedName": "eventSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC8eventSetShySSGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC8eventSetShySSGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC8eventSetShySSGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC8eventSetShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currencySet", + "printedName": "currencySet", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC11currencySetShySSGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11currencySetShySSGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC11currencySetShySSGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11currencySetShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ruleProvider", + "printedName": "ruleProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvpZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvgZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(withRuleProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC9configure16withRuleProvideryAA013AEMAdvertiserE9Providing_p_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9configure16withRuleProvideryAA013AEMAdvertiserE9Providing_p_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC4jsonACSgSDySSypGSg_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4jsonACSgSDySSypGSg_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "parseRules", + "printedName": "parseRules(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBAEMKit.AEMRule]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC10parseRulesySayAA7AEMRuleCGSgSaySDySSypGGSgFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10parseRulesySayAA7AEMRuleCGSgSaySDySSypGGSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEventSet", + "printedName": "getEventSet(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC11getEventSet4fromShySSGSayAA7AEMRuleCG_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11getEventSet4fromShySSGSayAA7AEMRuleCG_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrencySet", + "printedName": "getCurrencySet(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC14getCurrencySet4fromShySSGSayAA7AEMRuleCG_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC14getCurrencySet4fromShySSGSayAA7AEMRuleCG_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSame", + "printedName": "isSame(validFrom:businessID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "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:8FBAEMKit16AEMConfigurationC6isSame9validFrom10businessIDSbSi_SSSgtF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC6isSame9validFrom10businessIDSbSi_SSSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSameBusinessID", + "printedName": "isSameBusinessID(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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:8FBAEMKit16AEMConfigurationC16isSameBusinessIDySbSSSgF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC16isSameBusinessIDySbSSSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit16AEMConfigurationC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)initWithCoder:", + "mangledName": "$s8FBAEMKit16AEMConfigurationC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)init", + "mangledName": "$s8FBAEMKit16AEMConfigurationCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration", + "mangledName": "$s8FBAEMKit16AEMConfigurationC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMEvent", + "printedName": "AEMEvent", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO9eventNameyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO9eventNameyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO6valuesyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO6valuesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8currencyyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8currencyyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO6amountyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO6amountyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC9eventNameSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC9eventNameSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC9eventNameSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC9eventNameSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC6valuesSDySSSdGSgvp", + "mangledName": "$s8FBAEMKit8AEMEventC6valuesSDySSSdGSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC6valuesSDySSSdGSgvg", + "mangledName": "$s8FBAEMKit8AEMEventC6valuesSDySSSdGSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dict:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC4dictACSgSDySSypGSg_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC4dictACSgSDySSypGSg_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit8AEMEventC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit8AEMEventC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)initWithCoder:", + "mangledName": "$s8FBAEMKit8AEMEventC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit8AEMEventC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)isEqual:", + "mangledName": "$s8FBAEMKit8AEMEventC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)init", + "mangledName": "$s8FBAEMKit8AEMEventCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent", + "mangledName": "$s8FBAEMKit8AEMEventC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "CommonCrypto.CommonHMAC", + "printedName": "CommonCrypto.CommonHMAC", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMInvocation", + "printedName": "AEMInvocation", + "children": [ + { + "kind": "Var", + "name": "campaignID", + "printedName": "campaignID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC10campaignIDSSvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "acsToken", + "printedName": "acsToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC8acsTokenSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC8acsTokenSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit13AEMInvocationC8acsTokenSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC8acsTokenSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "acsSharedSecret", + "printedName": "acsSharedSecret", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 2, + "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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "acsConfigurationID", + "printedName": "acsConfigurationID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 3, + "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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC10businessIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:8FBAEMKit13AEMInvocationC10businessIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC10businessIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10businessIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "catalogID", + "printedName": "catalogID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 5, + "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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC9catalogIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isTestMode", + "printedName": "isTestMode", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC10isTestModeSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10isTestModeSbvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 6, + "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:8FBAEMKit13AEMInvocationC10isTestModeSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10isTestModeSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasStoreKitAdNetwork", + "printedName": "hasStoreKitAdNetwork", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isConversionFilteringEligible", + "printedName": "isConversionFilteringEligible", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurationMode", + "printedName": "configurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC17configurationModeSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC17configurationModeSSvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 10, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC17configurationModeSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC17configurationModeSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurationID", + "printedName": "configurationID", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 11, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC15configurationIDSivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordedEvents", + "printedName": "recordedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 12, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordedValues", + "printedName": "recordedValues", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 13, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "conversionValue", + "printedName": "conversionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 14, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC15conversionValueSivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 15, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC8prioritySivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "conversionTimestamp", + "printedName": "conversionTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 16, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAggregated", + "printedName": "isAggregated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 17, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC12isAggregatedSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigurationMode", + "printedName": "ConfigurationMode", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO7defaultyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO7defaultyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "brand", + "printedName": "brand", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO5brandyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO5brandyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "cpas", + "printedName": "cpas", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO4cpasyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO4cpasyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLinkData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "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": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC11appLinkDataACSgSDys11AnyHashableVypGSg_tcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC11appLinkDataACSgSDys11AnyHashableVypGSg_tcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(campaignID:acsToken:acsSharedSecret:acsConfigurationID:businessID:catalogID:isTestMode:hasStoreKitAdNetwork:isConversionFilteringEligible:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD010isTestMode20hasStoreKitAdNetwork0L27ConversionFilteringEligibleACSgSS_S2SSgA3NS3btcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD010isTestMode20hasStoreKitAdNetwork0L27ConversionFilteringEligibleACSgSS_S2SSgA3NS3btcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(campaignID:acsToken:acsSharedSecret:acsConfigurationID:businessID:catalogID:timestamp:configurationMode:configurationID:recordedEvents:recordedValues:conversionValue:priority:conversionTimestamp:isAggregated:isTestMode:hasStoreKitAdNetwork:isConversionFilteringEligible:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD09timestamp17configurationMode0mD014recordedEvents0O6Values15conversionValue8priority0R9Timestamp12isAggregated0v4TestN020hasStoreKitAdNetwork0V27ConversionFilteringEligibleACSgSS_S2SSgA3W10Foundation4DateVSgSSSiShySSGSgSDySSSDySSypGGSgS2iA_S4btcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD09timestamp17configurationMode0mD014recordedEvents0O6Values15conversionValue8priority0R9Timestamp12isAggregated0v4TestN020hasStoreKitAdNetwork0V27ConversionFilteringEligibleACSgSS_S2SSgA3W10Foundation4DateVSgSSSiShySSGSgSDySSSDySSypGGSgS2iA_S4btcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "attributeEvent", + "printedName": "attributeEvent(_:currency:value:parameters:configurations:shouldUpdateCache:isRuleMatchInServer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC14attributeEvent_8currency5value10parameters14configurations17shouldUpdateCache19isRuleMatchInServerSbSS_SSSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGSgS2btF", + "mangledName": "$s8FBAEMKit13AEMInvocationC14attributeEvent_8currency5value10parameters14configurations17shouldUpdateCache19isRuleMatchInServerSbSS_SSSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGSgS2btF", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateConversionValue", + "printedName": "updateConversionValue(configurations:event:shouldBoostPriority:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC21updateConversionValue14configurations5event19shouldBoostPrioritySbSDySSSayAA16AEMConfigurationCGGSg_SSSbtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC21updateConversionValue14configurations5event19shouldBoostPrioritySbSDySSSayAA16AEMConfigurationCGGSg_SSSbtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOptimizedEvent", + "printedName": "isOptimizedEvent(_:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC16isOptimizedEvent_14configurationsSbSS_SDySSSayAA16AEMConfigurationCGGSgtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC16isOptimizedEvent_14configurationsSbSS_SDySSSayAA16AEMConfigurationCGGSgtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOutOfWindow", + "printedName": "isOutOfWindow(configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC13isOutOfWindow14configurationsSbSDySSSayAA16AEMConfigurationCGGSg_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC13isOutOfWindow14configurationsSbSDySSSayAA16AEMConfigurationCGGSg_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getHMAC", + "printedName": "getHMAC(delay:)", + "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:8FBAEMKit13AEMInvocationC7getHMAC5delaySSSgSi_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC7getHMAC5delaySSSgSi_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeBase64URLSafeString", + "printedName": "decodeBase64URLSafeString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC25decodeBase64URLSafeStringy10Foundation4DataVSgSSF", + "mangledName": "$s8FBAEMKit13AEMInvocationC25decodeBase64URLSafeStringy10Foundation4DataVSgSSF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProcessedParameters", + "printedName": "getProcessedParameters(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC22getProcessedParameters4fromSDySSypGSgAG_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC22getProcessedParameters4fromSDySSypGSgAG_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "findConfiguration", + "printedName": "findConfiguration(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC17findConfiguration2inAA16AEMConfigurationCSgSDySSSayAGGGSg_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17findConfiguration2inAA16AEMConfigurationCSgSDySSSayAGGGSg_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getConfigurationList", + "printedName": "getConfigurationList(mode:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC20getConfigurationList4mode14configurationsSayAA16AEMConfigurationCGAC0D4ModeO_SDySSAIGSgtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC20getConfigurationList4mode14configurationsSayAA16AEMConfigurationCGAC0D4ModeO_SDySSAIGSgtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConfiguration", + "printedName": "setConfiguration(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC16setConfigurationyyAA16AEMConfigurationCF", + "mangledName": "$s8FBAEMKit13AEMInvocationC16setConfigurationyyAA16AEMConfigurationCF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit13AEMInvocationC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit13AEMInvocationC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)initWithCoder:", + "mangledName": "$s8FBAEMKit13AEMInvocationC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit13AEMInvocationC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)init", + "mangledName": "$s8FBAEMKit13AEMInvocationCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation", + "mangledName": "$s8FBAEMKit13AEMInvocationC", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "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": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMNetworker", + "printedName": "AEMNetworker", + "children": [ + { + "kind": "TypeDecl", + "name": "Error", + "printedName": "Error", + "children": [ + { + "kind": "Var", + "name": "missingOperationQueue", + "printedName": "missingOperationQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO21missingOperationQueueyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO21missingOperationQueueyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "failedToCreateURL", + "printedName": "failedToCreateURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO17failedToCreateURLyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO17failedToCreateURLyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failedToParseJSON", + "printedName": "failedToParseJSON", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO17failedToParseJSONyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO17failedToParseJSONyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO2eeoiySbAE_AEtFZ", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO2eeoiySbAE_AEtFZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivg", + "moduleName": "FBAEMKit", + "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:8FBAEMKit12AEMNetworkerC5ErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO4hash4intoys6HasherVz_tF", + "moduleName": "FBAEMKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO", + "moduleName": "FBAEMKit", + "isEnumExhaustive": true, + "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": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvs", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvM", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userAgent", + "printedName": "userAgent", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "Lazy" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:8FBAEMKit12AEMNetworkerC9userAgentSSvs", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvM", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "$__lazy_storage_$_userAgent", + "printedName": "$__lazy_storage_$_userAgent", + "children": [ + { + "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:8FBAEMKit12AEMNetworkerC27$__lazy_storage_$_userAgent33_CA5D0A8FEAF39482D34FF23ED31512AELLSSSgvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC27$__lazy_storage_$_userAgent33_CA5D0A8FEAF39482D34FF23ED31512AELLSSSgvp", + "moduleName": "FBAEMKit", + "implicit": true, + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17startGraphRequest04withD4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBAEMKit", + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONResponse", + "printedName": "parseJSONResponse(data:error:statusCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC17parseJSONResponse4data5error10statusCodeSDySSypG10Foundation4DataVSg_s5Error_pSgzSitF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17parseJSONResponse4data5error10statusCodeSDySSypG10Foundation4DataVSg_s5Error_pSgzSitF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONOrOtherwise", + "printedName": "parseJSONOrOtherwise(unsafeString:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC20parseJSONOrOtherwise12unsafeString5errorypSgSSSg_s5Error_pSgztF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC20parseJSONOrOtherwise12unsafeString5errorypSgSSSg_s5Error_pSgztF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appendAttachments", + "printedName": "appendAttachments(attachments:toBody:addFormData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMRequestBody", + "printedName": "FBAEMKit.AEMRequestBody", + "usr": "s:8FBAEMKit14AEMRequestBodyC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC17appendAttachments11attachments6toBody11addFormDataySDySSypG_AA010AEMRequestG0CSbtF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17appendAttachments11attachments6toBody11addFormDataySDySSypG_AA010AEMRequestG0CSbtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworker", + "printedName": "FBAEMKit.AEMNetworker", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker(im)init", + "mangledName": "$s8FBAEMKit12AEMNetworkerCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker", + "mangledName": "$s8FBAEMKit12AEMNetworkerC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "children": [ + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s8FBAEMKit13AEMNetworkingP17startGraphRequest04withD4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMNetworking>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBAEMNetworking", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMReporter", + "printedName": "AEMReporter", + "children": [ + { + "kind": "Var", + "name": "networker", + "printedName": "networker", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)networker", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)networker", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setNetworker:", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)appID", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)appID", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAppID:", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC5appIDSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nullAppID", + "printedName": "nullAppID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)nullAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC9nullAppIDSSvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)nullAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC9nullAppIDSSvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "analyticsAppID", + "printedName": "analyticsAppID", + "children": [ + { + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)analyticsAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)analyticsAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAnalyticsAppID:", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reporter", + "printedName": "reporter", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)reporter", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)reporter", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setReporter:", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)dataStore", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)dataStore", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setDataStore:", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAEMReportEnabled", + "printedName": "isAEMReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isAEMReportEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isAEMReportEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsAEMReportEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isLoadingConfiguration", + "printedName": "isLoadingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isLoadingConfiguration", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isLoadingConfiguration", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsLoadingConfiguration:", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isConversionFilteringEnabled", + "printedName": "isConversionFilteringEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isConversionFilteringEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isConversionFilteringEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsConversionFilteringEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isCatalogMatchingEnabled", + "printedName": "isCatalogMatchingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isCatalogMatchingEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isCatalogMatchingEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsCatalogMatchingEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserRuleMatchInServerEnabled", + "printedName": "isAdvertiserRuleMatchInServerEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isAdvertiserRuleMatchInServerEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isAdvertiserRuleMatchInServerEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "serialQueue", + "printedName": "serialQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)serialQueue", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)serialQueue", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setSerialQueue:", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reportFile", + "printedName": "reportFile", + "children": [ + { + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)reportFile", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)reportFile", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setReportFile:", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC10reportFileSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configurations", + "printedName": "configurations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)configurations", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configurations", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConfigurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "invocations", + "printedName": "invocations", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)invocations", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)invocations", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setInvocations:", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configRefreshTimestamp", + "printedName": "configRefreshTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)configRefreshTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configRefreshTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConfigRefreshTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "minAggregationRequestTimestamp", + "printedName": "minAggregationRequestTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)minAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)minAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setMinAggregationRequestTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "completionBlocks", + "printedName": "completionBlocks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvpZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvgZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvsZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(networker:appID:reporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "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": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configureWithNetworker:appID:reporter:", + "mangledName": "$s8FBAEMKit11AEMReporterC9configure9networker5appID8reporteryAA13AEMNetworking_pSg_SSSgAA20SKAdNetworkReporting_pSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(networker:appID:reporter:analyticsAppID:store:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "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": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "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": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configureWithNetworker:appID:reporter:analyticsAppID:store:", + "mangledName": "$s8FBAEMKit11AEMReporterC9configure9networker5appID8reporter012analyticsAppF05storeyAA13AEMNetworking_pSg_SSSgAA20SKAdNetworkReporting_pSgALSo19FBSDKDataPersisting_pSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)enable", + "mangledName": "$s8FBAEMKit11AEMReporterC6enableyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConversionFilteringEnabled", + "printedName": "setConversionFilteringEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConversionFilteringEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC29setConversionFilteringEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCatalogMatchingEnabled", + "printedName": "setCatalogMatchingEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setCatalogMatchingEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC25setCatalogMatchingEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAdvertiserRuleMatchInServerEnabled", + "printedName": "setAdvertiserRuleMatchInServerEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC37setAdvertiserRuleMatchInServerEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handle", + "printedName": "handle(_:)", + "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": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)handle:", + "mangledName": "$s8FBAEMKit11AEMReporterC6handleyy10Foundation3URLVSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseURL", + "printedName": "parseURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "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": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)parseURL:", + "mangledName": "$s8FBAEMKit11AEMReporterC8parseURLyAA13AEMInvocationCSg10Foundation0D0VSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordAndUpdate", + "printedName": "recordAndUpdate(event:currency:value:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)recordAndUpdateEvent:currency:value:parameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC15recordAndUpdate5event8currency5value10parametersySS_SSSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "recordAndUpdateEvent:currency:value:parameters:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "attributedInvocation", + "printedName": "attributedInvocation(_:event:currency:value:parameters:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)attributedInvocation:event:currency:value:parameters:configurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC20attributedInvocation_5event8currency5value10parameters14configurationsAA13AEMInvocationCSgSayAKG_S2SSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isDoubleCounting", + "printedName": "isDoubleCounting(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isDoubleCounting:event:", + "mangledName": "$s8FBAEMKit11AEMReporterC16isDoubleCounting_5eventSbAA13AEMInvocationC_SStFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadConfiguration", + "printedName": "loadConfiguration(withRefreshForced:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.NSError?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadConfigurationWithRefreshForced:block:", + "mangledName": "$s8FBAEMKit11AEMReporterC17loadConfiguration17withRefreshForced5blockySb_ySo7NSErrorCSgcSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadCatalogOptimization", + "printedName": "loadCatalogOptimization(with:contentID:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadCatalogOptimizationWith:contentID:block:", + "mangledName": "$s8FBAEMKit11AEMReporterC23loadCatalogOptimization4with9contentID5blockyAA13AEMInvocationC_SSSgyyctFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadRuleMatch", + "printedName": "loadRuleMatch(_:event:currency:value:parameters:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadRuleMatch:event:currency:value:parameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC13loadRuleMatch_5event8currency5value10parametersySaySSG_S2SSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldReportConversion", + "printedName": "shouldReportConversion(inCatalogLevel:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldReportConversionInCatalogLevel:event:", + "mangledName": "$s8FBAEMKit11AEMReporterC22shouldReportConversion14inCatalogLevel5eventSbAA13AEMInvocationC_SStFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isContentOptimized", + "printedName": "isContentOptimized(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isContentOptimized:", + "mangledName": "$s8FBAEMKit11AEMReporterC18isContentOptimizedySbypSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requestParameters", + "printedName": "requestParameters()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)requestParameters", + "mangledName": "$s8FBAEMKit11AEMReporterC17requestParametersSDySSypGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "catalogRequestParameters", + "printedName": "catalogRequestParameters(_:contentID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)catalogRequestParameters:contentID:", + "mangledName": "$s8FBAEMKit11AEMReporterC24catalogRequestParameters_9contentIDSDySSypGSSSg_AGtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ruleMatchRequestParameters", + "printedName": "ruleMatchRequestParameters(_:content:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)ruleMatchRequestParameters:content:", + "mangledName": "$s8FBAEMKit11AEMReporterC26ruleMatchRequestParameters_7contentSDySSypGSaySSG_SSSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isConfigRefreshTimestampValid", + "printedName": "isConfigRefreshTimestampValid()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isConfigRefreshTimestampValid", + "mangledName": "$s8FBAEMKit11AEMReporterC29isConfigRefreshTimestampValidSbyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldRefresh", + "printedName": "shouldRefresh(withIsForced:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldRefreshWithIsForced:", + "mangledName": "$s8FBAEMKit11AEMReporterC13shouldRefresh12withIsForcedS2b_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldDelayAggregationRequest", + "printedName": "shouldDelayAggregationRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldDelayAggregationRequest", + "mangledName": "$s8FBAEMKit11AEMReporterC29shouldDelayAggregationRequestSbyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendDebuggingRequest", + "printedName": "sendDebuggingRequest(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)sendDebuggingRequest:", + "mangledName": "$s8FBAEMKit11AEMReporterC20sendDebuggingRequestyyAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "debuggingRequestParameters", + "printedName": "debuggingRequestParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)debuggingRequestParameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC26debuggingRequestParametersySDySSypGAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadMinAggregationRequestTimestamp", + "printedName": "loadMinAggregationRequestTimestamp()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadMinAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC34loadMinAggregationRequestTimestamp10Foundation4DateVSgyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateAggregationRequestTimestamp", + "printedName": "updateAggregationRequestTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)updateAggregationRequestTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC33updateAggregationRequestTimestampyySdFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadConfigurations", + "printedName": "loadConfigurations()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadConfigurations", + "mangledName": "$s8FBAEMKit11AEMReporterC18loadConfigurationsSDySSSayAA16AEMConfigurationCGGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addConfigurations", + "printedName": "addConfigurations(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)addConfigurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC17addConfigurationsyySaySDySSypGGFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadReportData", + "printedName": "loadReportData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadReportData", + "mangledName": "$s8FBAEMKit11AEMReporterC14loadReportDataSayAA13AEMInvocationCGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveReportData", + "printedName": "saveReportData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)saveReportData", + "mangledName": "$s8FBAEMKit11AEMReporterC14saveReportDatayyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAggregationRequest", + "printedName": "sendAggregationRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)sendAggregationRequest", + "mangledName": "$s8FBAEMKit11AEMReporterC22sendAggregationRequestyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "aggregationRequestParameters", + "printedName": "aggregationRequestParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)aggregationRequestParameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC28aggregationRequestParametersySDySSypGAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearCache", + "printedName": "clearCache()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)clearCache", + "mangledName": "$s8FBAEMKit11AEMReporterC10clearCacheyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearConfigurations", + "printedName": "clearConfigurations()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)clearConfigurations", + "mangledName": "$s8FBAEMKit11AEMReporterC19clearConfigurationsyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMReporter", + "printedName": "FBAEMKit.AEMReporter", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(im)init", + "mangledName": "$s8FBAEMKit11AEMReporterCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter", + "mangledName": "$s8FBAEMKit11AEMReporterC", + "moduleName": "FBAEMKit", + "objc_name": "FBAEMReporter", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMRequestBody", + "printedName": "AEMRequestBody", + "children": [ + { + "kind": "Function", + "name": "compressedData", + "printedName": "compressedData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit14AEMRequestBodyC14compressedData10Foundation0E0VSgyF", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC14compressedData10Foundation0E0VSgyF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvg", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvg", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_data", + "printedName": "_data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC5_data33_1FB9656C872A5478253A5AEB5A2CB886LL10Foundation4DataVvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC5_data33_1FB9656C872A5478253A5AEB5A2CB886LL10Foundation4DataVvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "json", + "printedName": "json", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC4json33_1FB9656C872A5478253A5AEB5A2CB886LLSDySSypGvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4json33_1FB9656C872A5478253A5AEB5A2CB886LLSDySSypGvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Function", + "name": "append", + "printedName": "append(withKey:formValue:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit14AEMRequestBodyC6append7withKey9formValueySSSg_AGtF", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC6append7withKey9formValueySSSg_AGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRequestBody", + "printedName": "FBAEMKit.AEMRequestBody", + "usr": "s:8FBAEMKit14AEMRequestBodyC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit14AEMRequestBodyCACycfc", + "mangledName": "$s8FBAEMKit14AEMRequestBodyCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit14AEMRequestBodyC", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMRule", + "printedName": "AEMRule", + "children": [ + { + "kind": "Var", + "name": "conversionValue", + "printedName": "conversionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC15conversionValueSivp", + "mangledName": "$s8FBAEMKit7AEMRuleC15conversionValueSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:8FBAEMKit7AEMRuleC15conversionValueSivg", + "mangledName": "$s8FBAEMKit7AEMRuleC15conversionValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC8prioritySivp", + "mangledName": "$s8FBAEMKit7AEMRuleC8prioritySivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit7AEMRuleC8prioritySivg", + "mangledName": "$s8FBAEMKit7AEMRuleC8prioritySivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvp", + "mangledName": "$s8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvg", + "mangledName": "$s8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit7AEMRuleC4jsonACSgSDySSypG_tcfc", + "mangledName": "$s8FBAEMKit7AEMRuleC4jsonACSgSDySSypG_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "containsEvent", + "printedName": "containsEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit7AEMRuleC13containsEventySbSSF", + "mangledName": "$s8FBAEMKit7AEMRuleC13containsEventySbSSF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withRecordedEvents:recordedValues:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit7AEMRuleC9isMatched18withRecordedEvents14recordedValuesSbShySSGSg_SDySSSDySSypGGSgtF", + "mangledName": "$s8FBAEMKit7AEMRuleC9isMatched18withRecordedEvents14recordedValuesSbShySSGSg_SDySSSDySSypGGSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit7AEMRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit7AEMRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit7AEMRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit7AEMRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)isEqual:", + "mangledName": "$s8FBAEMKit7AEMRuleC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)init", + "mangledName": "$s8FBAEMKit7AEMRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule", + "mangledName": "$s8FBAEMKit7AEMRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMSettings", + "printedName": "AEMSettings", + "children": [ + { + "kind": "Function", + "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": "Func", + "usr": "s:8FBAEMKit11AEMSettingsO5appIDSSSgyFZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO5appIDSSSgyFZ", + "moduleName": "FBAEMKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "bundle", + "printedName": "bundle", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvp", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvg", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvs", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvM", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleAESo8NSBundleC_tcfc", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleAESo8NSBundleC_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV", + "moduleName": "FBAEMKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvpZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvgZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvsZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvMZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvpZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvgZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvsZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvMZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit11AEMSettingsO", + "mangledName": "$s8FBAEMKit11AEMSettingsO", + "moduleName": "FBAEMKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ] + } + ], + "usr": "s:8FBAEMKit15DependentAsTypeP", + "mangledName": "$s8FBAEMKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMUtility", + "printedName": "AEMUtility", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit10AEMUtilityC6sharedACvpZ", + "mangledName": "$s8FBAEMKit10AEMUtilityC6sharedACvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit10AEMUtilityC6sharedACvgZ", + "mangledName": "$s8FBAEMKit10AEMUtilityC6sharedACvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getMatchedInvocation", + "printedName": "getMatchedInvocation(_:businessID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + }, + { + "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:8FBAEMKit10AEMUtilityC20getMatchedInvocation_10businessIDAA13AEMInvocationCSgSayAGG_SSSgtF", + "mangledName": "$s8FBAEMKit10AEMUtilityC20getMatchedInvocation_10businessIDAA13AEMInvocationCSgSayAGG_SSSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getInSegmentValue", + "printedName": "getInSegmentValue(_:matchingRule:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC17getInSegmentValue_12matchingRuleSo8NSNumberCSDySSypGSg_AA013AEMAdvertiserH8Matching_pSgtF", + "mangledName": "$s8FBAEMKit10AEMUtilityC17getInSegmentValue_12matchingRuleSo8NSNumberCSDySSypGSg_AA013AEMAdvertiserH8Matching_pSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContent", + "printedName": "getContent(_:)", + "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": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC10getContentySSSgSDySSypGSgF", + "mangledName": "$s8FBAEMKit10AEMUtilityC10getContentySSSgSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentID", + "printedName": "getContentID(_:)", + "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": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC12getContentIDySSSgSDySSypGSgF", + "mangledName": "$s8FBAEMKit10AEMUtilityC12getContentIDySSSgSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBusinessIDsInOrder", + "printedName": "getBusinessIDsInOrder(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC21getBusinessIDsInOrderySaySSGSayAA13AEMInvocationCGF", + "mangledName": "$s8FBAEMKit10AEMUtilityC21getBusinessIDsInOrderySaySSGSayAA13AEMInvocationCGF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit10AEMUtilityCACycfc", + "mangledName": "$s8FBAEMKit10AEMUtilityCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit10AEMUtilityC", + "mangledName": "$s8FBAEMKit10AEMUtilityC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:8FBAEMKit15DependentAsTypeP0D12DependenciesQa", + "mangledName": "$s8FBAEMKit15DependentAsTypeP0D12DependenciesQa", + "moduleName": "FBAEMKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvpZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvgZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvgZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvsZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvsZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvMZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvMZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvpZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvgZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvgZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypeP15setDependenciesyy0dF0QzFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP15setDependenciesyy0dF0QzFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypePAAE15setDependenciesyy0dF0QzFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE15setDependenciesyy0dF0QzFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypePAAE15getDependencies0dF0QzyKFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE15getDependencies0dF0QzyKFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit15DependentAsTypeP", + "mangledName": "$s8FBAEMKit15DependentAsTypeP", + "moduleName": "FBAEMKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV13dependentType33_A87604353953AE6AB47A0C00F7FE141DLLxmvp", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV13dependentType33_A87604353953AE6AB47A0C00F7FE141DLLxmvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBAEMKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:8FBAEMKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBAEMKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SKAdNetworkReporting", + "printedName": "SKAdNetworkReporting", + "children": [ + { + "kind": "Function", + "name": "shouldCutoff", + "printedName": "shouldCutoff()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)shouldCutoff", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP12shouldCutoffSbyF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isReportingEvent", + "printedName": "isReportingEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)isReportingEvent:", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP02isD5EventySbSSF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "isReportingEvent:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkAndRevokeTimer", + "printedName": "checkAndRevokeTimer()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)checkAndRevokeTimer", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP19checkAndRevokeTimeryyF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSKAdNetworkReporting", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserMultiEntryRule.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 27, + "value": "\"FBAEMKit.AEMAdvertiserMultiEntryRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 573, + "length": 10, + "value": "\"operator\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 607, + "length": 11, + "value": "\"param_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 648, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 14, + "value": "\"number_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 735, + "length": 13, + "value": "\"array_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 804, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 834, + "length": 5, + "value": "\"[*]\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "BooleanLiteral", + "offset": 8907, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 269, + "length": 28, + "value": "\"FBAEMKit.AEMAdvertiserSingleEntryRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 18, + "value": "\"default_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 13, + "value": "\"cutoff_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 24, + "value": "\"conversion_value_rules\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 12, + "value": "\"valid_from\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 554, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 13, + "value": "\"business_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 12, + "value": "\"param_rule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 18, + "value": "\"default_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 13, + "value": "\"cutoff_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 24, + "value": "\"conversion_value_rules\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 12, + "value": "\"valid_from\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 554, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 13, + "value": "\"business_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 12, + "value": "\"param_rule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 16, + "value": "\"FBAEMKit.AEMConfiguration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 339, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 339, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 8, + "value": "\"FBAEMKit.AEMEvent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1068, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1104, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1211, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 11, + "value": "\"acs_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 15, + "value": "\"shared_secret\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1402, + "length": 15, + "value": "\"acs_config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1448, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1493, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 15, + "value": "\"test_deeplink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1594, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1681, + "length": 17, + "value": "\"recorded_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1725, + "length": 17, + "value": "\"recorded_values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1770, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1838, + "length": 22, + "value": "\"conversion_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1885, + "length": 15, + "value": "\"is_aggregated\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 10, + "value": "\"has_skan\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 34, + "value": "\"is_conversion_filtering_eligible\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2097, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 11, + "value": "\"acs_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 15, + "value": "\"shared_secret\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1402, + "length": 15, + "value": "\"acs_config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1448, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1493, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 15, + "value": "\"test_deeplink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1594, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1681, + "length": 17, + "value": "\"recorded_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1725, + "length": 17, + "value": "\"recorded_values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1770, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1838, + "length": 22, + "value": "\"conversion_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1885, + "length": 15, + "value": "\"is_aggregated\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 10, + "value": "\"has_skan\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 34, + "value": "\"is_conversion_filtering_eligible\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2097, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 7, + "value": "\"BRAND\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2225, + "length": 6, + "value": "\"CPAS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 7, + "value": "\"BRAND\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2225, + "length": 6, + "value": "\"CPAS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 294, + "length": 13, + "value": "\"FBAEMKit.AEMInvocation\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 501, + "length": 6, + "value": "\"\r\n\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 539, + "length": 8, + "value": "\"16.1.3\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 588, + "length": 7, + "value": "\"v16.0\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 654, + "length": 10, + "value": "\"FBiOSAEM\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 699, + "length": 35, + "value": "\"https:\/\/graph.facebook.com\/v16.0\/\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 772, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 820, + "length": 21, + "value": "\"com.facebook.aemkit\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 865, + "length": 49, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 889, + "length": 1, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 913, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 21, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1142, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1264, + "length": 8, + "value": "\"\/macOS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 435, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 480, + "length": 16, + "value": "\"advertiser_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 528, + "length": 17, + "value": "\"fb_content_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 577, + "length": 17, + "value": "\"al_applink_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 623, + "length": 13, + "value": "\"campaign_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 669, + "length": 17, + "value": "\"conversion_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 18, + "value": "\"consumption_hour\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 762, + "length": 7, + "value": "\"token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 6, + "value": "\"hmac\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 864, + "length": 12, + "value": "\"delay_flow\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 916, + "length": 25, + "value": "\"is_conversion_filtering\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 16, + "value": "\"fb_content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1016, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 54, + "value": "\"com.facebook.sdk:FBAEMMinAggregationRequestTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1156, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1187, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1226, + "length": 17, + "value": "\"aem_conversions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1269, + "length": 9, + "value": "\"success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 16, + "value": "\"is_valid_match\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1363, + "length": 23, + "value": "\"matched_advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1419, + "length": 18, + "value": "\"in_segment_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1483, + "length": 34, + "value": "\"content_id_belongs_to_catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1587, + "length": 42, + "value": "\"com.facebook.appevents.AEM.FBAEMReporter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "IntegerLiteral", + "offset": 1714, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "IntegerLiteral", + "offset": 1760, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1823, + "length": 27, + "value": "\"FBSDKAEMReportData.report\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1878, + "length": 27, + "value": "\"FBSDKAEMReportData.config\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1972, + "length": 24, + "value": "\"aem_conversion_configs\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2034, + "length": 23, + "value": "\"aem_conversion_filter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2090, + "length": 17, + "value": "\"aem_attribution\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2163, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2191, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 8, + "value": "\"(null)\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2541, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2585, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2681, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Dictionary", + "offset": 2958, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Array", + "offset": 3006, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Array", + "offset": 3157, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRequestBody.swift", + "kind": "StringLiteral", + "offset": 584, + "length": 6, + "value": "\"\r\n\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 436, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 484, + "length": 10, + "value": "\"priority\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 522, + "length": 8, + "value": "\"events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 269, + "length": 7, + "value": "\"FBAEMKit.AEMRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 329, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 369, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 412, + "length": 12, + "value": "\"item_price\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 451, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 482, + "length": 10, + "value": "\"quantity\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 00000000..fe0402ac --- /dev/null +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,32 @@ +// 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-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import CommonCrypto.CommonHMAC +import FBSDKCoreKit_Basics +import Foundation +import Swift +import _Concurrency +import _StringProcessing +public typealias FBGraphRequestCompletion = (Any?, Swift.Error?) -> Swift.Void +@objc(FBAEMNetworking) public protocol AEMNetworking { + @objc(startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:) func startGraphRequest(withGraphPath graphPath: Swift.String, parameters: [Swift.String : Any], tokenString: Swift.String?, httpMethod method: Swift.String?, completion: @escaping FBAEMKit.FBGraphRequestCompletion) +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBAEMReporter) final public class AEMReporter : ObjectiveC.NSObject { + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?) + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?, analyticsAppID: Swift.String?, store: FBSDKCoreKit_Basics.DataPersisting?) + @objc public static func enable() + @objc public static func setConversionFilteringEnabled(_ enabled: Swift.Bool) + @objc public static func setCatalogMatchingEnabled(_ enabled: Swift.Bool) + @objc public static func setAdvertiserRuleMatchInServerEnabled(_ enabled: Swift.Bool) + @objc public static func handle(_ url: Foundation.URL?) + @objc(recordAndUpdateEvent:currency:value:parameters:) public static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) + @objc override dynamic public init() + @objc deinit +} +@objc(FBSKAdNetworkReporting) public protocol SKAdNetworkReporting { + @objc func shouldCutoff() -> Swift.Bool + @objc(isReportingEvent:) func isReportingEvent(_ event: Swift.String) -> Swift.Bool + @objc func checkAndRevokeTimer() +} diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc index b1dc6f82..fdcc7b97 100644 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 3b303e7f..fe0402ac 100644 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,22 +1,26 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import CommonCrypto import CommonCrypto.CommonHMAC import FBSDKCoreKit_Basics import Foundation import Swift import _Concurrency +import _StringProcessing public typealias FBGraphRequestCompletion = (Any?, Swift.Error?) -> Swift.Void @objc(FBAEMNetworking) public protocol AEMNetworking { @objc(startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:) func startGraphRequest(withGraphPath graphPath: Swift.String, parameters: [Swift.String : Any], tokenString: Swift.String?, httpMethod method: Swift.String?, completion: @escaping FBAEMKit.FBGraphRequestCompletion) } @_inheritsConvenienceInitializers @objcMembers @objc(FBAEMReporter) final public class AEMReporter : ObjectiveC.NSObject { + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?) + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?, analyticsAppID: Swift.String?, store: FBSDKCoreKit_Basics.DataPersisting?) @objc public static func enable() @objc public static func setConversionFilteringEnabled(_ enabled: Swift.Bool) @objc public static func setCatalogMatchingEnabled(_ enabled: Swift.Bool) @objc public static func setAdvertiserRuleMatchInServerEnabled(_ enabled: Swift.Bool) - @objc public static func handle(_ url: Foundation.URL) + @objc public static func handle(_ url: Foundation.URL?) @objc(recordAndUpdateEvent:currency:value:parameters:) public static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) @objc override dynamic public init() @objc deinit diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.abi.json b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 00000000..36133bd5 --- /dev/null +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,17857 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "AEMAdvertiserMultiEntryRule", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type) -> FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8operatoryA2EmF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8operatoryA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "rules", + "printedName": "rules", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type) -> FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO5rulesyA2EmF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO5rulesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule.CodingKeys", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC8operatorAA0bE8OperatorOvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rules", + "printedName": "rules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvp", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvg", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5rulesSayAA0bE8Matching_pGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(with:rules:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMAdvertiserRuleMatching]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC4with5rulesAcA0bE8OperatorO_SayAA0bE8Matching_pGtcfc", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC4with5rulesAcA0bE8OperatorO_SayAA0bE8Matching_pGtcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit27AEMAdvertiserMultiEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule(im)init", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule", + "mangledName": "$s8FBAEMKit27AEMAdvertiserMultiEntryRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleFactory", + "printedName": "AEMAdvertiserRuleFactory", + "children": [ + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "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": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(dictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createMultiEntryRule", + "printedName": "createMultiEntryRule(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserMultiEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserMultiEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserMultiEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC016createMultiEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC016createMultiEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createSingleEntryRule", + "printedName": "createSingleEntryRule(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC017createSingleEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC017createSingleEntryC04fromAA0bfgC0CSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "primaryKey", + "printedName": "primaryKey(for:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC10primaryKey3forSSSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC10primaryKey3forSSSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getOperator", + "printedName": "getOperator(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC11getOperator4fromAA0bcF0OSDySSypG_tF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC11getOperator4fromAA0bcF0OSDySSypG_tF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOperatorForMultiEntryRule", + "printedName": "isOperatorForMultiEntryRule(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC023isOperatorForMultiEntryC0ySbAA0bcF0OF", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC023isOperatorForMultiEntryC0ySbAA0bcF0OF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleFactory", + "printedName": "FBAEMKit.AEMAdvertiserRuleFactory", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryCACycfc", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit24AEMAdvertiserRuleFactoryC", + "mangledName": "$s8FBAEMKit24AEMAdvertiserRuleFactoryC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleProviding", + "printedName": "AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "children": [ + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleOperator", + "printedName": "AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO7unknownyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO7unknownyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "and", + "printedName": "and", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO3andyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO3andyA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "or", + "printedName": "or", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO2oryA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO2oryA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "not", + "printedName": "not", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO3notyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO3notyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contains", + "printedName": "contains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8containsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8containsyA2CmF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "notContains", + "printedName": "notContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO11notContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO11notContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "startsWith", + "printedName": "startsWith", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO10startsWithyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO10startsWithyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "caseInsensitiveContains", + "printedName": "caseInsensitiveContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "caseInsensitiveNotContains", + "printedName": "caseInsensitiveNotContains", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO26caseInsensitiveNotContainsyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO26caseInsensitiveNotContainsyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "caseInsensitiveStartsWith", + "printedName": "caseInsensitiveStartsWith", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO25caseInsensitiveStartsWithyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO25caseInsensitiveStartsWithyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "regexMatch", + "printedName": "regexMatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO10regexMatchyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO10regexMatchyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "equal", + "printedName": "equal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO5equalyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO5equalyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "notEqual", + "printedName": "notEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8notEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8notEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "lessThan", + "printedName": "lessThan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8lessThanyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8lessThanyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "lessThanOrEqual", + "printedName": "lessThanOrEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO15lessThanOrEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO15lessThanOrEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "greaterThan", + "printedName": "greaterThan", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO11greaterThanyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO11greaterThanyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "greaterThanOrEqual", + "printedName": "greaterThanOrEqual", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO18greaterThanOrEqualyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO18greaterThanOrEqualyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "caseInsensitiveIsAny", + "printedName": "caseInsensitiveIsAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO20caseInsensitiveIsAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO20caseInsensitiveIsAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "caseInsensitiveIsNotAny", + "printedName": "caseInsensitiveIsNotAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveIsNotAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO23caseInsensitiveIsNotAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 18 + }, + { + "kind": "Var", + "name": "isAny", + "printedName": "isAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO5isAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO5isAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 19 + }, + { + "kind": "Var", + "name": "isNotAny", + "printedName": "isNotAny", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMAdvertiserRuleOperator.Type) -> FBAEMKit.AEMAdvertiserRuleOperator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8isNotAnyyA2CmF", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8isNotAnyyA2CmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 20 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueACSgSi_tcfc", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueACSgSi_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivp", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivg", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO8rawValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleOperatorO", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "Int", + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserRuleProviding", + "printedName": "AEMAdvertiserRuleProviding", + "children": [ + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "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": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP06createC04jsonAA0bC8Matching_pSgSSSg_tF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createRule", + "printedName": "createRule(dictionary:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP06createC010dictionaryAA0bC8Matching_pSgSDySSypG_tF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMAdvertiserRuleProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP", + "mangledName": "$s8FBAEMKit26AEMAdvertiserRuleProvidingP", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "AEMAdvertiserSingleEntryRule", + "children": [ + { + "kind": "Var", + "name": "operator", + "printedName": "operator", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvs", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvM", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operatorAA0bE8OperatorOvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "paramKey", + "printedName": "paramKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8paramKeySSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "linguisticCondition", + "printedName": "linguisticCondition", + "children": [ + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC19linguisticConditionSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "numericalCondition", + "printedName": "numericalCondition", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC18numericalConditionSdSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "arrayCondition", + "printedName": "arrayCondition", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvp", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvg", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC14arrayConditionSaySSGSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(operator:paramKey:linguisticCondition:numericalCondition:arrayCondition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operator8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSdSgSaySSGSgtcfc", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC8operator8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSdSgSaySSGSgtcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(with:paramKey:linguisticCondition:numericalCondition:arrayCondition:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleOperator", + "printedName": "FBAEMKit.AEMAdvertiserRuleOperator", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleOperatorO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC4with8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSo8NSNumberCSgSaySSGSgtcfc", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC4with8paramKey19linguisticCondition09numericalJ005arrayJ0AcA0bE8OperatorO_S2SSgSo8NSNumberCSgSaySSGSgtcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParametersySbSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatchedEventParameters", + "printedName": "isMatchedEventParameters(eventParams:paramPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParameters11eventParams9paramPathSbSDySSypGSg_SaySSGtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC24isMatchedEventParameters11eventParams9paramPathSbSDySSypGSg_SaySSGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withAsteriskParam:eventParameters:paramPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched17withAsteriskParam15eventParameters9paramPathSbSS_SDySSypGSaySSGtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched17withAsteriskParam15eventParameters9paramPathSbSS_SDySSypGSaySSGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withStringValue:numericalValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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.Double?", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched15withStringValue09numericalJ0SbSSSg_SdSgtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC9isMatched15withStringValue09numericalJ0SbSSSg_SdSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRegexMatch", + "printedName": "isRegexMatch(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC12isRegexMatchySbSSF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC12isRegexMatchySbSSF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isAny", + "printedName": "isAny(of:stringValue:ignoreCase:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit28AEMAdvertiserSingleEntryRuleC5isAny2of11stringValue10ignoreCaseSbSaySSG_SSSbtF", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC5isAny2of11stringValue10ignoreCaseSbSaySSG_SSSbtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "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@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "objc_name": "supportsSecureCoding", + "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@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(cm)setSupportsSecureCoding:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvMZ", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC20supportsSecureCodingSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)isEqual:", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserSingleEntryRule", + "printedName": "FBAEMKit.AEMAdvertiserSingleEntryRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule(im)init", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMAdvertiserSingleEntryRule", + "mangledName": "$s8FBAEMKit28AEMAdvertiserSingleEntryRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMAdvertiserRuleMatching", + "printedName": "AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP", + "mangledName": "$s8FBAEMKit25AEMAdvertiserRuleMatchingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMConfiguration", + "printedName": "AEMConfiguration", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "defaultCurrency", + "printedName": "defaultCurrency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO15defaultCurrencyyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO15defaultCurrencyyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "cutoffTime", + "printedName": "cutoffTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO10cutoffTimeyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO10cutoffTimeyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "conversionValueRules", + "printedName": "conversionValueRules", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO20conversionValueRulesyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO20conversionValueRulesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "validFrom", + "printedName": "validFrom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO9validFromyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO9validFromyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO4modeyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO4modeyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "advertiserID", + "printedName": "advertiserID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO12advertiserIDyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO12advertiserIDyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO10businessIDyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO10businessIDyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "paramRule", + "printedName": "paramRule", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMConfiguration.CodingKeys.Type) -> FBAEMKit.AEMConfiguration.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO9paramRuleyA2EmF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO9paramRuleyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMConfiguration.CodingKeys", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit16AEMConfigurationC10CodingKeysO", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "cutoffTime", + "printedName": "cutoffTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC10cutoffTimeSivp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10cutoffTimeSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC10cutoffTimeSivg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10cutoffTimeSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "validFrom", + "printedName": "validFrom", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC9validFromSivp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9validFromSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess", + "RawDocComment" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC9validFromSivg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9validFromSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultCurrency", + "printedName": "defaultCurrency", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC15defaultCurrencySSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC15defaultCurrencySSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC15defaultCurrencySSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC15defaultCurrencySSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC4modeSSvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4modeSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC4modeSSvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4modeSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "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:8FBAEMKit16AEMConfigurationC10businessIDSSSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10businessIDSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 4, + "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:8FBAEMKit16AEMConfigurationC10businessIDSSSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10businessIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "matchingRule", + "printedName": "matchingRule", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12matchingRuleAA013AEMAdvertiserD8Matching_pSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "conversionValueRules", + "printedName": "conversionValueRules", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20conversionValueRulesSayAA7AEMRuleCGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventSet", + "printedName": "eventSet", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC8eventSetShySSGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC8eventSetShySSGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC8eventSetShySSGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC8eventSetShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "currencySet", + "printedName": "currencySet", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC11currencySetShySSGvp", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11currencySetShySSGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC11currencySetShySSGvg", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11currencySetShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ruleProvider", + "printedName": "ruleProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvpZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvgZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC12ruleProviderAA26AEMAdvertiserRuleProviding_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(withRuleProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleProviding", + "printedName": "FBAEMKit.AEMAdvertiserRuleProviding", + "usr": "s:8FBAEMKit26AEMAdvertiserRuleProvidingP" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC9configure16withRuleProvideryAA013AEMAdvertiserE9Providing_p_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC9configure16withRuleProvideryAA013AEMAdvertiserE9Providing_p_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit16AEMConfigurationC4jsonACSgSDySSypGSg_tcfc", + "mangledName": "$s8FBAEMKit16AEMConfigurationC4jsonACSgSDySSypGSg_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "parseRules", + "printedName": "parseRules(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBAEMKit.AEMRule]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC10parseRulesySayAA7AEMRuleCGSgSaySDySSypGGSgFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC10parseRulesySayAA7AEMRuleCGSgSaySDySSypGGSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getEventSet", + "printedName": "getEventSet(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC11getEventSet4fromShySSGSayAA7AEMRuleCG_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC11getEventSet4fromShySSGSayAA7AEMRuleCG_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCurrencySet", + "printedName": "getCurrencySet(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMRule]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit16AEMConfigurationC14getCurrencySet4fromShySSGSayAA7AEMRuleCG_tFZ", + "mangledName": "$s8FBAEMKit16AEMConfigurationC14getCurrencySet4fromShySSGSayAA7AEMRuleCG_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSame", + "printedName": "isSame(validFrom:businessID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "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:8FBAEMKit16AEMConfigurationC6isSame9validFrom10businessIDSbSi_SSSgtF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC6isSame9validFrom10businessIDSbSi_SSSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isSameBusinessID", + "printedName": "isSameBusinessID(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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:8FBAEMKit16AEMConfigurationC16isSameBusinessIDySbSSSgF", + "mangledName": "$s8FBAEMKit16AEMConfigurationC16isSameBusinessIDySbSSSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit16AEMConfigurationC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)initWithCoder:", + "mangledName": "$s8FBAEMKit16AEMConfigurationC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit16AEMConfigurationC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration(im)init", + "mangledName": "$s8FBAEMKit16AEMConfigurationCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration", + "mangledName": "$s8FBAEMKit16AEMConfigurationC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMEvent", + "printedName": "AEMEvent", + "children": [ + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO9eventNameyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO9eventNameyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO6valuesyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO6valuesyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8currencyyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8currencyyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "amount", + "printedName": "amount", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMEvent.CodingKeys.Type) -> FBAEMKit.AEMEvent.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMEvent.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO6amountyA2EmF", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO6amountyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBAEMKit", + "implicit": 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:8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBAEMKit.AEMEvent.CodingKeys", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit8AEMEventC10CodingKeysO", + "mangledName": "$s8FBAEMKit8AEMEventC10CodingKeysO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC9eventNameSSvp", + "mangledName": "$s8FBAEMKit8AEMEventC9eventNameSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC9eventNameSSvg", + "mangledName": "$s8FBAEMKit8AEMEventC9eventNameSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit8AEMEventC6valuesSDySSSdGSgvp", + "mangledName": "$s8FBAEMKit8AEMEventC6valuesSDySSSdGSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit8AEMEventC6valuesSDySSSdGSgvg", + "mangledName": "$s8FBAEMKit8AEMEventC6valuesSDySSSdGSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(dict:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit8AEMEventC4dictACSgSDySSypGSg_tcfc", + "mangledName": "$s8FBAEMKit8AEMEventC4dictACSgSDySSypGSg_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit8AEMEventC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit8AEMEventC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)initWithCoder:", + "mangledName": "$s8FBAEMKit8AEMEventC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit8AEMEventC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)isEqual:", + "mangledName": "$s8FBAEMKit8AEMEventC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent(im)init", + "mangledName": "$s8FBAEMKit8AEMEventCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent", + "mangledName": "$s8FBAEMKit8AEMEventC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "CommonCrypto.CommonHMAC", + "printedName": "CommonCrypto.CommonHMAC", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMInvocation", + "printedName": "AEMInvocation", + "children": [ + { + "kind": "Var", + "name": "campaignID", + "printedName": "campaignID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC10campaignIDSSvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignIDSSvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignIDSSvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "acsToken", + "printedName": "acsToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC8acsTokenSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC8acsTokenSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit13AEMInvocationC8acsTokenSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC8acsTokenSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "acsSharedSecret", + "printedName": "acsSharedSecret", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 2, + "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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15acsSharedSecretSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "acsConfigurationID", + "printedName": "acsConfigurationID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 3, + "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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC18acsConfigurationIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "businessID", + "printedName": "businessID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC10businessIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:8FBAEMKit13AEMInvocationC10businessIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC10businessIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC10businessIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC10businessIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "catalogID", + "printedName": "catalogID", + "children": [ + { + "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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 5, + "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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC9catalogIDSSSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC9catalogIDSSSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC9catalogIDSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isTestMode", + "printedName": "isTestMode", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC10isTestModeSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC10isTestModeSbvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 6, + "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:8FBAEMKit13AEMInvocationC10isTestModeSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC10isTestModeSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasStoreKitAdNetwork", + "printedName": "hasStoreKitAdNetwork", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC20hasStoreKitAdNetworkSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isConversionFilteringEligible", + "printedName": "isConversionFilteringEligible", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC29isConversionFilteringEligibleSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC9timestamp10Foundation4DateVvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurationMode", + "printedName": "configurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC17configurationModeSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC17configurationModeSSvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "SetterAccess" + ], + "fixedbinaryorder": 10, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC17configurationModeSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC17configurationModeSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurationID", + "printedName": "configurationID", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 11, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC15configurationIDSivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15configurationIDSivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15configurationIDSivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordedEvents", + "printedName": "recordedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 12, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedEventsShySSGvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedEventsShySSGvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "recordedValues", + "printedName": "recordedValues", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 13, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC14recordedValuesSDySSSDySSypGGvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "conversionValue", + "printedName": "conversionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 14, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC15conversionValueSivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC15conversionValueSivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC15conversionValueSivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivp", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 15, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivg", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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": "s:8FBAEMKit13AEMInvocationC8prioritySivs", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC8prioritySivM", + "mangledName": "$s8FBAEMKit13AEMInvocationC8prioritySivM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "conversionTimestamp", + "printedName": "conversionTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 16, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC19conversionTimestamp10Foundation4DateVSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAggregated", + "printedName": "isAggregated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvp", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 17, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvg", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": 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:8FBAEMKit13AEMInvocationC12isAggregatedSbvs", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvs", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC12isAggregatedSbvM", + "mangledName": "$s8FBAEMKit13AEMInvocationC12isAggregatedSbvM", + "moduleName": "FBAEMKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConfigurationMode", + "printedName": "ConfigurationMode", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO7defaultyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO7defaultyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "brand", + "printedName": "brand", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO5brandyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO5brandyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "cpas", + "printedName": "cpas", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMInvocation.ConfigurationMode.Type) -> FBAEMKit.AEMInvocation.ConfigurationMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO4cpasyA2EmF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO4cpasyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueAESgSS_tcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueAESgSS_tcfc", + "moduleName": "FBAEMKit", + "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:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvp", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvg", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO8rawValueSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO", + "mangledName": "$s8FBAEMKit13AEMInvocationC17ConfigurationModeO", + "moduleName": "FBAEMKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLinkData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "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": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC11appLinkDataACSgSDys11AnyHashableVypGSg_tcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC11appLinkDataACSgSDys11AnyHashableVypGSg_tcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(campaignID:acsToken:acsSharedSecret:acsConfigurationID:businessID:catalogID:isTestMode:hasStoreKitAdNetwork:isConversionFilteringEligible:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD010isTestMode20hasStoreKitAdNetwork0L27ConversionFilteringEligibleACSgSS_S2SSgA3NS3btcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD010isTestMode20hasStoreKitAdNetwork0L27ConversionFilteringEligibleACSgSS_S2SSgA3NS3btcfc", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(campaignID:acsToken:acsSharedSecret:acsConfigurationID:businessID:catalogID:timestamp:configurationMode:configurationID:recordedEvents:recordedValues:conversionValue:priority:conversionTimestamp:isAggregated:isTestMode:hasStoreKitAdNetwork:isConversionFilteringEligible:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD09timestamp17configurationMode0mD014recordedEvents0O6Values15conversionValue8priority0R9Timestamp12isAggregated0v4TestN020hasStoreKitAdNetwork0V27ConversionFilteringEligibleACSgSS_S2SSgA3W10Foundation4DateVSgSSSiShySSGSgSDySSSDySSypGGSgS2iA_S4btcfc", + "mangledName": "$s8FBAEMKit13AEMInvocationC10campaignID8acsToken0E12SharedSecret0e13ConfigurationD008businessD007catalogD09timestamp17configurationMode0mD014recordedEvents0O6Values15conversionValue8priority0R9Timestamp12isAggregated0v4TestN020hasStoreKitAdNetwork0V27ConversionFilteringEligibleACSgSS_S2SSgA3W10Foundation4DateVSgSSSiShySSGSgSDySSSDySSypGGSgS2iA_S4btcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "attributeEvent", + "printedName": "attributeEvent(_:currency:value:parameters:configurations:shouldUpdateCache:isRuleMatchInServer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC14attributeEvent_8currency5value10parameters14configurations17shouldUpdateCache19isRuleMatchInServerSbSS_SSSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGSgS2btF", + "mangledName": "$s8FBAEMKit13AEMInvocationC14attributeEvent_8currency5value10parameters14configurations17shouldUpdateCache19isRuleMatchInServerSbSS_SSSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGSgS2btF", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "DiscardableResult" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateConversionValue", + "printedName": "updateConversionValue(configurations:event:shouldBoostPriority:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC21updateConversionValue14configurations5event19shouldBoostPrioritySbSDySSSayAA16AEMConfigurationCGGSg_SSSbtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC21updateConversionValue14configurations5event19shouldBoostPrioritySbSDySSSayAA16AEMConfigurationCGGSg_SSSbtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOptimizedEvent", + "printedName": "isOptimizedEvent(_:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC16isOptimizedEvent_14configurationsSbSS_SDySSSayAA16AEMConfigurationCGGSgtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC16isOptimizedEvent_14configurationsSbSS_SDySSSayAA16AEMConfigurationCGGSgtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isOutOfWindow", + "printedName": "isOutOfWindow(configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC13isOutOfWindow14configurationsSbSDySSSayAA16AEMConfigurationCGGSg_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC13isOutOfWindow14configurationsSbSDySSSayAA16AEMConfigurationCGGSg_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getHMAC", + "printedName": "getHMAC(delay:)", + "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:8FBAEMKit13AEMInvocationC7getHMAC5delaySSSgSi_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC7getHMAC5delaySSSgSi_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "decodeBase64URLSafeString", + "printedName": "decodeBase64URLSafeString(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC25decodeBase64URLSafeStringy10Foundation4DataVSgSSF", + "mangledName": "$s8FBAEMKit13AEMInvocationC25decodeBase64URLSafeStringy10Foundation4DataVSgSSF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProcessedParameters", + "printedName": "getProcessedParameters(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC22getProcessedParameters4fromSDySSypGSgAG_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC22getProcessedParameters4fromSDySSypGSgAG_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "findConfiguration", + "printedName": "findConfiguration(in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC17findConfiguration2inAA16AEMConfigurationCSgSDySSSayAGGGSg_tF", + "mangledName": "$s8FBAEMKit13AEMInvocationC17findConfiguration2inAA16AEMConfigurationCSgSDySSSayAGGGSg_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getConfigurationList", + "printedName": "getConfigurationList(mode:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "ConfigurationMode", + "printedName": "FBAEMKit.AEMInvocation.ConfigurationMode", + "usr": "s:8FBAEMKit13AEMInvocationC17ConfigurationModeO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC20getConfigurationList4mode14configurationsSayAA16AEMConfigurationCGAC0D4ModeO_SDySSAIGSgtF", + "mangledName": "$s8FBAEMKit13AEMInvocationC20getConfigurationList4mode14configurationsSayAA16AEMConfigurationCGAC0D4ModeO_SDySSAIGSgtF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConfiguration", + "printedName": "setConfiguration(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit13AEMInvocationC16setConfigurationyyAA16AEMConfigurationCF", + "mangledName": "$s8FBAEMKit13AEMInvocationC16setConfigurationyyAA16AEMConfigurationCF", + "moduleName": "FBAEMKit", + "isOpen": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit13AEMInvocationC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit13AEMInvocationC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)initWithCoder:", + "mangledName": "$s8FBAEMKit13AEMInvocationC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit13AEMInvocationC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "isOpen": true, + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation(im)init", + "mangledName": "$s8FBAEMKit13AEMInvocationCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation", + "mangledName": "$s8FBAEMKit13AEMInvocationC", + "moduleName": "FBAEMKit", + "isOpen": true, + "declAttributes": [ + "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": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMNetworker", + "printedName": "AEMNetworker", + "children": [ + { + "kind": "TypeDecl", + "name": "Error", + "printedName": "Error", + "children": [ + { + "kind": "Var", + "name": "missingOperationQueue", + "printedName": "missingOperationQueue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO21missingOperationQueueyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO21missingOperationQueueyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "failedToCreateURL", + "printedName": "failedToCreateURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO17failedToCreateURLyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO17failedToCreateURLyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failedToParseJSON", + "printedName": "failedToParseJSON", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBAEMKit.AEMNetworker.Error.Type) -> FBAEMKit.AEMNetworker.Error", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBAEMKit.AEMNetworker.Error.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO17failedToParseJSONyA2EmF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO17failedToParseJSONyA2EmF", + "moduleName": "FBAEMKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "FBAEMKit.AEMNetworker.Error", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO2eeoiySbAE_AEtFZ", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO2eeoiySbAE_AEtFZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivp", + "moduleName": "FBAEMKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO9hashValueSivg", + "moduleName": "FBAEMKit", + "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:8FBAEMKit12AEMNetworkerC5ErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO4hash4intoys6HasherVz_tF", + "moduleName": "FBAEMKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit12AEMNetworkerC5ErrorO", + "mangledName": "$s8FBAEMKit12AEMNetworkerC5ErrorO", + "moduleName": "FBAEMKit", + "isEnumExhaustive": true, + "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": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvs", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvM", + "mangledName": "$s8FBAEMKit12AEMNetworkerC15userAgentSuffixSSSgvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userAgent", + "printedName": "userAgent", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "Lazy" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvg", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:8FBAEMKit12AEMNetworkerC9userAgentSSvs", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit12AEMNetworkerC9userAgentSSvM", + "mangledName": "$s8FBAEMKit12AEMNetworkerC9userAgentSSvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "$__lazy_storage_$_userAgent", + "printedName": "$__lazy_storage_$_userAgent", + "children": [ + { + "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:8FBAEMKit12AEMNetworkerC27$__lazy_storage_$_userAgent33_CA5D0A8FEAF39482D34FF23ED31512AELLSSSgvp", + "mangledName": "$s8FBAEMKit12AEMNetworkerC27$__lazy_storage_$_userAgent33_CA5D0A8FEAF39482D34FF23ED31512AELLSSSgvp", + "moduleName": "FBAEMKit", + "implicit": true, + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17startGraphRequest04withD4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBAEMKit", + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONResponse", + "printedName": "parseJSONResponse(data:error:statusCode:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC17parseJSONResponse4data5error10statusCodeSDySSypG10Foundation4DataVSg_s5Error_pSgzSitF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17parseJSONResponse4data5error10statusCodeSDySSypG10Foundation4DataVSg_s5Error_pSgzSitF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseJSONOrOtherwise", + "printedName": "parseJSONOrOtherwise(unsafeString:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC20parseJSONOrOtherwise12unsafeString5errorypSgSSSg_s5Error_pSgztF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC20parseJSONOrOtherwise12unsafeString5errorypSgSSSg_s5Error_pSgztF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appendAttachments", + "printedName": "appendAttachments(attachments:toBody:addFormData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMRequestBody", + "printedName": "FBAEMKit.AEMRequestBody", + "usr": "s:8FBAEMKit14AEMRequestBodyC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit12AEMNetworkerC17appendAttachments11attachments6toBody11addFormDataySDySSypG_AA010AEMRequestG0CSbtF", + "mangledName": "$s8FBAEMKit12AEMNetworkerC17appendAttachments11attachments6toBody11addFormDataySDySSypG_AA010AEMRequestG0CSbtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworker", + "printedName": "FBAEMKit.AEMNetworker", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker(im)init", + "mangledName": "$s8FBAEMKit12AEMNetworkerCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMNetworker", + "mangledName": "$s8FBAEMKit12AEMNetworkerC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "children": [ + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s8FBAEMKit13AEMNetworkingP17startGraphRequest04withD4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.AEMNetworking>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBAEMNetworking", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMReporter", + "printedName": "AEMReporter", + "children": [ + { + "kind": "Var", + "name": "networker", + "printedName": "networker", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)networker", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)networker", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setNetworker:", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC9networkerAA13AEMNetworking_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)appID", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)appID", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAppID:", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC5appIDSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC5appIDSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nullAppID", + "printedName": "nullAppID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)nullAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC9nullAppIDSSvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)nullAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC9nullAppIDSSvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "analyticsAppID", + "printedName": "analyticsAppID", + "children": [ + { + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)analyticsAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)analyticsAppID", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAnalyticsAppID:", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC14analyticsAppIDSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reporter", + "printedName": "reporter", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)reporter", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)reporter", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setReporter:", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC8reporterAA20SKAdNetworkReporting_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)dataStore", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)dataStore", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setDataStore:", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC9dataStoreSo19FBSDKDataPersisting_pSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAEMReportEnabled", + "printedName": "isAEMReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isAEMReportEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isAEMReportEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsAEMReportEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC18isAEMReportEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isLoadingConfiguration", + "printedName": "isLoadingConfiguration", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isLoadingConfiguration", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isLoadingConfiguration", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsLoadingConfiguration:", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC22isLoadingConfigurationSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isConversionFilteringEnabled", + "printedName": "isConversionFilteringEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isConversionFilteringEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isConversionFilteringEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsConversionFilteringEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC28isConversionFilteringEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isCatalogMatchingEnabled", + "printedName": "isCatalogMatchingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isCatalogMatchingEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isCatalogMatchingEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsCatalogMatchingEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC24isCatalogMatchingEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserRuleMatchInServerEnabled", + "printedName": "isAdvertiserRuleMatchInServerEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)isAdvertiserRuleMatchInServerEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isAdvertiserRuleMatchInServerEnabled", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvgZ", + "moduleName": "FBAEMKit", + "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@FBAEMKit@objc(cs)FBAEMReporter(cm)setIsAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC36isAdvertiserRuleMatchInServerEnabledSbvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "serialQueue", + "printedName": "serialQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)serialQueue", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)serialQueue", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DispatchQueue", + "printedName": "Dispatch.DispatchQueue", + "usr": "c:objc(cs)OS_dispatch_queue" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setSerialQueue:", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC11serialQueueSo17OS_dispatch_queueCvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "reportFile", + "printedName": "reportFile", + "children": [ + { + "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@FBAEMKit@objc(cs)FBAEMReporter(cpy)reportFile", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)reportFile", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setReportFile:", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC10reportFileSSSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC10reportFileSSSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configurations", + "printedName": "configurations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)configurations", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configurations", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConfigurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC14configurationsSDySSSayAA16AEMConfigurationCGGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "invocations", + "printedName": "invocations", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)invocations", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)invocations", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setInvocations:", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC11invocationsSayAA13AEMInvocationCGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configRefreshTimestamp", + "printedName": "configRefreshTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)configRefreshTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configRefreshTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConfigRefreshTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC22configRefreshTimestamp10Foundation4DateVSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "minAggregationRequestTimestamp", + "printedName": "minAggregationRequestTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cpy)minAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)minAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setMinAggregationRequestTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvsZ", + "moduleName": "FBAEMKit", + "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:8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC30minAggregationRequestTimestamp10Foundation4DateVSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "completionBlocks", + "printedName": "completionBlocks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvpZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvgZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[(Foundation.NSError?) -> ()]", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvsZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvMZ", + "mangledName": "$s8FBAEMKit11AEMReporterC16completionBlocksSayySo7NSErrorCSgcGvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(networker:appID:reporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "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": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configureWithNetworker:appID:reporter:", + "mangledName": "$s8FBAEMKit11AEMReporterC9configure9networker5appID8reporteryAA13AEMNetworking_pSg_SSSgAA20SKAdNetworkReporting_pSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(networker:appID:reporter:analyticsAppID:store:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "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": "FBAEMKit.SKAdNetworkReporting?", + "children": [ + { + "kind": "TypeNominal", + "name": "SKAdNetworkReporting", + "printedName": "FBAEMKit.SKAdNetworkReporting", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting" + } + ], + "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": "FBSDKCoreKit_Basics.DataPersisting?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)configureWithNetworker:appID:reporter:analyticsAppID:store:", + "mangledName": "$s8FBAEMKit11AEMReporterC9configure9networker5appID8reporter012analyticsAppF05storeyAA13AEMNetworking_pSg_SSSgAA20SKAdNetworkReporting_pSgALSo19FBSDKDataPersisting_pSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)enable", + "mangledName": "$s8FBAEMKit11AEMReporterC6enableyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConversionFilteringEnabled", + "printedName": "setConversionFilteringEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setConversionFilteringEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC29setConversionFilteringEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCatalogMatchingEnabled", + "printedName": "setCatalogMatchingEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setCatalogMatchingEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC25setCatalogMatchingEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAdvertiserRuleMatchInServerEnabled", + "printedName": "setAdvertiserRuleMatchInServerEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)setAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s8FBAEMKit11AEMReporterC37setAdvertiserRuleMatchInServerEnabledyySbFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handle", + "printedName": "handle(_:)", + "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": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)handle:", + "mangledName": "$s8FBAEMKit11AEMReporterC6handleyy10Foundation3URLVSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parseURL", + "printedName": "parseURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "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": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)parseURL:", + "mangledName": "$s8FBAEMKit11AEMReporterC8parseURLyAA13AEMInvocationCSg10Foundation0D0VSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordAndUpdate", + "printedName": "recordAndUpdate(event:currency:value:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)recordAndUpdateEvent:currency:value:parameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC15recordAndUpdate5event8currency5value10parametersySS_SSSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "recordAndUpdateEvent:currency:value:parameters:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "attributedInvocation", + "printedName": "attributedInvocation(_:event:currency:value:parameters:configurations:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)attributedInvocation:event:currency:value:parameters:configurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC20attributedInvocation_5event8currency5value10parameters14configurationsAA13AEMInvocationCSgSayAKG_S2SSgSo8NSNumberCSgSDySSypGSgSDySSSayAA16AEMConfigurationCGGtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isDoubleCounting", + "printedName": "isDoubleCounting(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isDoubleCounting:event:", + "mangledName": "$s8FBAEMKit11AEMReporterC16isDoubleCounting_5eventSbAA13AEMInvocationC_SStFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadConfiguration", + "printedName": "loadConfiguration(withRefreshForced:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.NSError?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.NSError?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadConfigurationWithRefreshForced:block:", + "mangledName": "$s8FBAEMKit11AEMReporterC17loadConfiguration17withRefreshForced5blockySb_ySo7NSErrorCSgcSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadCatalogOptimization", + "printedName": "loadCatalogOptimization(with:contentID:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadCatalogOptimizationWith:contentID:block:", + "mangledName": "$s8FBAEMKit11AEMReporterC23loadCatalogOptimization4with9contentID5blockyAA13AEMInvocationC_SSSgyyctFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadRuleMatch", + "printedName": "loadRuleMatch(_:event:currency:value:parameters:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadRuleMatch:event:currency:value:parameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC13loadRuleMatch_5event8currency5value10parametersySaySSG_S2SSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldReportConversion", + "printedName": "shouldReportConversion(inCatalogLevel:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldReportConversionInCatalogLevel:event:", + "mangledName": "$s8FBAEMKit11AEMReporterC22shouldReportConversion14inCatalogLevel5eventSbAA13AEMInvocationC_SStFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isContentOptimized", + "printedName": "isContentOptimized(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isContentOptimized:", + "mangledName": "$s8FBAEMKit11AEMReporterC18isContentOptimizedySbypSgFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requestParameters", + "printedName": "requestParameters()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)requestParameters", + "mangledName": "$s8FBAEMKit11AEMReporterC17requestParametersSDySSypGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "catalogRequestParameters", + "printedName": "catalogRequestParameters(_:contentID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)catalogRequestParameters:contentID:", + "mangledName": "$s8FBAEMKit11AEMReporterC24catalogRequestParameters_9contentIDSDySSypGSSSg_AGtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "ruleMatchRequestParameters", + "printedName": "ruleMatchRequestParameters(_:content:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)ruleMatchRequestParameters:content:", + "mangledName": "$s8FBAEMKit11AEMReporterC26ruleMatchRequestParameters_7contentSDySSypGSaySSG_SSSgtFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isConfigRefreshTimestampValid", + "printedName": "isConfigRefreshTimestampValid()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)isConfigRefreshTimestampValid", + "mangledName": "$s8FBAEMKit11AEMReporterC29isConfigRefreshTimestampValidSbyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldRefresh", + "printedName": "shouldRefresh(withIsForced:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldRefreshWithIsForced:", + "mangledName": "$s8FBAEMKit11AEMReporterC13shouldRefresh12withIsForcedS2b_tFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldDelayAggregationRequest", + "printedName": "shouldDelayAggregationRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)shouldDelayAggregationRequest", + "mangledName": "$s8FBAEMKit11AEMReporterC29shouldDelayAggregationRequestSbyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendDebuggingRequest", + "printedName": "sendDebuggingRequest(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)sendDebuggingRequest:", + "mangledName": "$s8FBAEMKit11AEMReporterC20sendDebuggingRequestyyAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "debuggingRequestParameters", + "printedName": "debuggingRequestParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)debuggingRequestParameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC26debuggingRequestParametersySDySSypGAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadMinAggregationRequestTimestamp", + "printedName": "loadMinAggregationRequestTimestamp()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadMinAggregationRequestTimestamp", + "mangledName": "$s8FBAEMKit11AEMReporterC34loadMinAggregationRequestTimestamp10Foundation4DateVSgyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateAggregationRequestTimestamp", + "printedName": "updateAggregationRequestTimestamp(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)updateAggregationRequestTimestamp:", + "mangledName": "$s8FBAEMKit11AEMReporterC33updateAggregationRequestTimestampyySdFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadConfigurations", + "printedName": "loadConfigurations()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [FBAEMKit.AEMConfiguration]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMConfiguration", + "printedName": "FBAEMKit.AEMConfiguration", + "usr": "c:@M@FBAEMKit@objc(cs)AEMConfiguration" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadConfigurations", + "mangledName": "$s8FBAEMKit11AEMReporterC18loadConfigurationsSDySSSayAA16AEMConfigurationCGGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addConfigurations", + "printedName": "addConfigurations(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)addConfigurations:", + "mangledName": "$s8FBAEMKit11AEMReporterC17addConfigurationsyySaySDySSypGGFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadReportData", + "printedName": "loadReportData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)loadReportData", + "mangledName": "$s8FBAEMKit11AEMReporterC14loadReportDataSayAA13AEMInvocationCGyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "saveReportData", + "printedName": "saveReportData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)saveReportData", + "mangledName": "$s8FBAEMKit11AEMReporterC14saveReportDatayyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sendAggregationRequest", + "printedName": "sendAggregationRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)sendAggregationRequest", + "mangledName": "$s8FBAEMKit11AEMReporterC22sendAggregationRequestyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "aggregationRequestParameters", + "printedName": "aggregationRequestParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)aggregationRequestParameters:", + "mangledName": "$s8FBAEMKit11AEMReporterC28aggregationRequestParametersySDySSypGAA13AEMInvocationCFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearCache", + "printedName": "clearCache()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)clearCache", + "mangledName": "$s8FBAEMKit11AEMReporterC10clearCacheyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearConfigurations", + "printedName": "clearConfigurations()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(cm)clearConfigurations", + "mangledName": "$s8FBAEMKit11AEMReporterC19clearConfigurationsyyFZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMReporter", + "printedName": "FBAEMKit.AEMReporter", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter(im)init", + "mangledName": "$s8FBAEMKit11AEMReporterCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter", + "mangledName": "$s8FBAEMKit11AEMReporterC", + "moduleName": "FBAEMKit", + "objc_name": "FBAEMReporter", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMRequestBody", + "printedName": "AEMRequestBody", + "children": [ + { + "kind": "Function", + "name": "compressedData", + "printedName": "compressedData()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit14AEMRequestBodyC14compressedData10Foundation0E0VSgyF", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC14compressedData10Foundation0E0VSgyF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvg", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4data10Foundation4DataVvg", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_data", + "printedName": "_data", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC5_data33_1FB9656C872A5478253A5AEB5A2CB886LL10Foundation4DataVvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC5_data33_1FB9656C872A5478253A5AEB5A2CB886LL10Foundation4DataVvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "json", + "printedName": "json", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit14AEMRequestBodyC4json33_1FB9656C872A5478253A5AEB5A2CB886LLSDySSypGvp", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC4json33_1FB9656C872A5478253A5AEB5A2CB886LLSDySSypGvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Function", + "name": "append", + "printedName": "append(withKey:formValue:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit14AEMRequestBodyC6append7withKey9formValueySSSg_AGtF", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC6append7withKey9formValueySSSg_AGtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRequestBody", + "printedName": "FBAEMKit.AEMRequestBody", + "usr": "s:8FBAEMKit14AEMRequestBodyC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit14AEMRequestBodyCACycfc", + "mangledName": "$s8FBAEMKit14AEMRequestBodyCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit14AEMRequestBodyC", + "mangledName": "$s8FBAEMKit14AEMRequestBodyC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMRule", + "printedName": "AEMRule", + "children": [ + { + "kind": "Var", + "name": "conversionValue", + "printedName": "conversionValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC15conversionValueSivp", + "mangledName": "$s8FBAEMKit7AEMRuleC15conversionValueSivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:8FBAEMKit7AEMRuleC15conversionValueSivg", + "mangledName": "$s8FBAEMKit7AEMRuleC15conversionValueSivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "priority", + "printedName": "priority", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC8prioritySivp", + "mangledName": "$s8FBAEMKit7AEMRuleC8prioritySivp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:8FBAEMKit7AEMRuleC8prioritySivg", + "mangledName": "$s8FBAEMKit7AEMRuleC8prioritySivg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "events", + "printedName": "events", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvp", + "mangledName": "$s8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMEvent", + "printedName": "FBAEMKit.AEMEvent", + "usr": "c:@M@FBAEMKit@objc(cs)AEMEvent" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvg", + "mangledName": "$s8FBAEMKit7AEMRuleC6eventsSayAA8AEMEventCGvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit7AEMRuleC4jsonACSgSDySSypG_tcfc", + "mangledName": "$s8FBAEMKit7AEMRuleC4jsonACSgSDySSypG_tcfc", + "moduleName": "FBAEMKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "containsEvent", + "printedName": "containsEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit7AEMRuleC13containsEventySbSSF", + "mangledName": "$s8FBAEMKit7AEMRuleC13containsEventySbSSF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatched", + "printedName": "isMatched(withRecordedEvents:recordedValues:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : [Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit7AEMRuleC9isMatched18withRecordedEvents14recordedValuesSbShySSGSg_SDySSSDySSypGGSgtF", + "mangledName": "$s8FBAEMKit7AEMRuleC9isMatched18withRecordedEvents14recordedValuesSbShySSGSg_SDySSSDySSypGGSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(cpy)supportsSecureCoding", + "mangledName": "$s8FBAEMKit7AEMRuleC20supportsSecureCodingSbvpZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(cm)supportsSecureCoding", + "mangledName": "$s8FBAEMKit7AEMRuleC20supportsSecureCodingSbvgZ", + "moduleName": "FBAEMKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMRule?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)initWithCoder:", + "mangledName": "$s8FBAEMKit7AEMRuleC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBAEMKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)encodeWithCoder:", + "mangledName": "$s8FBAEMKit7AEMRuleC6encode4withySo7NSCoderC_tF", + "moduleName": "FBAEMKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)isEqual:", + "mangledName": "$s8FBAEMKit7AEMRuleC7isEqualySbypSgF", + "moduleName": "FBAEMKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMRule", + "printedName": "FBAEMKit.AEMRule", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule(im)init", + "mangledName": "$s8FBAEMKit7AEMRuleCACycfc", + "moduleName": "FBAEMKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)AEMRule", + "mangledName": "$s8FBAEMKit7AEMRuleC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMSettings", + "printedName": "AEMSettings", + "children": [ + { + "kind": "Function", + "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": "Func", + "usr": "s:8FBAEMKit11AEMSettingsO5appIDSSSgyFZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO5appIDSSSgyFZ", + "moduleName": "FBAEMKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "bundle", + "printedName": "bundle", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvp", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvp", + "moduleName": "FBAEMKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvg", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvg", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvs", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvs", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvM", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleSo8NSBundleCvM", + "moduleName": "FBAEMKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(bundle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleAESo8NSBundleC_tcfc", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV6bundleAESo8NSBundleC_tcfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV", + "mangledName": "$s8FBAEMKit11AEMSettingsO16TypeDependenciesV", + "moduleName": "FBAEMKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvpZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvgZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvsZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvMZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO22configuredDependenciesAC04TypeD0VSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvpZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvgZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvsZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvsZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvMZ", + "mangledName": "$s8FBAEMKit11AEMSettingsO19defaultDependenciesAC04TypeD0VSgvMZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:8FBAEMKit11AEMSettingsO", + "mangledName": "$s8FBAEMKit11AEMSettingsO", + "moduleName": "FBAEMKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBAEMKit.AEMSettings.TypeDependencies", + "usr": "s:8FBAEMKit11AEMSettingsO16TypeDependenciesV" + } + ] + } + ], + "usr": "s:8FBAEMKit15DependentAsTypeP", + "mangledName": "$s8FBAEMKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit" + }, + { + "kind": "TypeDecl", + "name": "AEMUtility", + "printedName": "AEMUtility", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit10AEMUtilityC6sharedACvpZ", + "mangledName": "$s8FBAEMKit10AEMUtilityC6sharedACvpZ", + "moduleName": "FBAEMKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit10AEMUtilityC6sharedACvgZ", + "mangledName": "$s8FBAEMKit10AEMUtilityC6sharedACvgZ", + "moduleName": "FBAEMKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getMatchedInvocation", + "printedName": "getMatchedInvocation(_:businessID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMInvocation?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + }, + { + "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:8FBAEMKit10AEMUtilityC20getMatchedInvocation_10businessIDAA13AEMInvocationCSgSayAGG_SSSgtF", + "mangledName": "$s8FBAEMKit10AEMUtilityC20getMatchedInvocation_10businessIDAA13AEMInvocationCSgSayAGG_SSSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getInSegmentValue", + "printedName": "getInSegmentValue(_:matchingRule:)", + "children": [ + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMAdvertiserRuleMatching", + "printedName": "FBAEMKit.AEMAdvertiserRuleMatching", + "usr": "s:8FBAEMKit25AEMAdvertiserRuleMatchingP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC17getInSegmentValue_12matchingRuleSo8NSNumberCSDySSypGSg_AA013AEMAdvertiserH8Matching_pSgtF", + "mangledName": "$s8FBAEMKit10AEMUtilityC17getInSegmentValue_12matchingRuleSo8NSNumberCSDySSypGSg_AA013AEMAdvertiserH8Matching_pSgtF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContent", + "printedName": "getContent(_:)", + "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": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC10getContentySSSgSDySSypGSgF", + "mangledName": "$s8FBAEMKit10AEMUtilityC10getContentySSSgSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentID", + "printedName": "getContentID(_:)", + "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": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC12getContentIDySSSgSDySSypGSgF", + "mangledName": "$s8FBAEMKit10AEMUtilityC12getContentIDySSSgSDySSypGSgF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getBusinessIDsInOrder", + "printedName": "getBusinessIDsInOrder(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBAEMKit.AEMInvocation]", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMInvocation", + "printedName": "FBAEMKit.AEMInvocation", + "usr": "c:@M@FBAEMKit@objc(cs)AEMInvocation" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit10AEMUtilityC21getBusinessIDsInOrderySaySSGSayAA13AEMInvocationCGF", + "mangledName": "$s8FBAEMKit10AEMUtilityC21getBusinessIDsInOrderySaySSGSayAA13AEMInvocationCGF", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMUtility", + "printedName": "FBAEMKit.AEMUtility", + "usr": "s:8FBAEMKit10AEMUtilityC" + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit10AEMUtilityCACycfc", + "mangledName": "$s8FBAEMKit10AEMUtilityCACycfc", + "moduleName": "FBAEMKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:8FBAEMKit10AEMUtilityC", + "mangledName": "$s8FBAEMKit10AEMUtilityC", + "moduleName": "FBAEMKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:8FBAEMKit15DependentAsTypeP0D12DependenciesQa", + "mangledName": "$s8FBAEMKit15DependentAsTypeP0D12DependenciesQa", + "moduleName": "FBAEMKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvpZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvgZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvgZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvsZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvsZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvMZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP22configuredDependencies0dF0QzSgvMZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvpZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvpZ", + "moduleName": "FBAEMKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvgZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP19defaultDependencies0dF0QzSgvgZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypeP15setDependenciesyy0dF0QzFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypeP15setDependenciesyy0dF0QzFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypePAAE15setDependenciesyy0dF0QzFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE15setDependenciesyy0dF0QzFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:8FBAEMKit15DependentAsTypePAAE15getDependencies0dF0QzyKFZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE15getDependencies0dF0QzyKFZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s8FBAEMKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0D12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBAEMKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:8FBAEMKit15DependentAsTypeP", + "mangledName": "$s8FBAEMKit15DependentAsTypeP", + "moduleName": "FBAEMKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV13dependentType33_A87604353953AE6AB47A0C00F7FE141DLLxmvp", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV13dependentType33_A87604353953AE6AB47A0C00F7FE141DLLxmvp", + "moduleName": "FBAEMKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBAEMKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:8FBAEMKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBAEMKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:8FBAEMKit24MissingDependenciesErrorV", + "mangledName": "$s8FBAEMKit24MissingDependenciesErrorV", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBAEMKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SKAdNetworkReporting", + "printedName": "SKAdNetworkReporting", + "children": [ + { + "kind": "Function", + "name": "shouldCutoff", + "printedName": "shouldCutoff()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)shouldCutoff", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP12shouldCutoffSbyF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isReportingEvent", + "printedName": "isReportingEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)isReportingEvent:", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP02isD5EventySbSSF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "isReportingEvent:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkAndRevokeTimer", + "printedName": "checkAndRevokeTimer()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting(im)checkAndRevokeTimer", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP19checkAndRevokeTimeryyF", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBAEMKit.SKAdNetworkReporting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBAEMKit@objc(pl)FBSKAdNetworkReporting", + "mangledName": "$s8FBAEMKit20SKAdNetworkReportingP", + "moduleName": "FBAEMKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSKAdNetworkReporting", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserMultiEntryRule.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 27, + "value": "\"FBAEMKit.AEMAdvertiserMultiEntryRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 266, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 306, + "length": 3, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 361, + "length": 2, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 371, + "length": 3, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 414, + "length": 8, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 449, + "length": 10, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 467, + "length": 23, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 498, + "length": 26, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 532, + "length": 25, + "value": "9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 565, + "length": 10, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 583, + "length": 5, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 8, + "value": "12" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 612, + "length": 8, + "value": "13" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 628, + "length": 15, + "value": "14" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 651, + "length": 11, + "value": "15" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 670, + "length": 18, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 696, + "length": 20, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 724, + "length": 23, + "value": "18" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 755, + "length": 5, + "value": "19" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserRuleOperator.swift", + "kind": "IntegerLiteral", + "offset": 768, + "length": 8, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 573, + "length": 10, + "value": "\"operator\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 607, + "length": 11, + "value": "\"param_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 648, + "length": 14, + "value": "\"string_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 14, + "value": "\"number_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 735, + "length": 13, + "value": "\"array_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 804, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 834, + "length": 5, + "value": "\"[*]\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "BooleanLiteral", + "offset": 8907, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMAdvertiserSingleEntryRule.swift", + "kind": "StringLiteral", + "offset": 269, + "length": 28, + "value": "\"FBAEMKit.AEMAdvertiserSingleEntryRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 18, + "value": "\"default_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 13, + "value": "\"cutoff_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 24, + "value": "\"conversion_value_rules\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 12, + "value": "\"valid_from\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 554, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 13, + "value": "\"business_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 12, + "value": "\"param_rule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 18, + "value": "\"default_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 13, + "value": "\"cutoff_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 441, + "length": 24, + "value": "\"conversion_value_rules\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 12, + "value": "\"valid_from\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 516, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 554, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 592, + "length": 13, + "value": "\"business_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 12, + "value": "\"param_rule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMConfiguration.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 16, + "value": "\"FBAEMKit.AEMConfiguration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 339, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 339, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMEvent.swift", + "kind": "StringLiteral", + "offset": 242, + "length": 8, + "value": "\"FBAEMKit.AEMEvent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1068, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1104, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 1, + "value": "8" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "IntegerLiteral", + "offset": 1211, + "length": 2, + "value": "32" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 11, + "value": "\"acs_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 15, + "value": "\"shared_secret\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1402, + "length": 15, + "value": "\"acs_config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1448, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1493, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 15, + "value": "\"test_deeplink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1594, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1681, + "length": 17, + "value": "\"recorded_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1725, + "length": 17, + "value": "\"recorded_values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1770, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1838, + "length": 22, + "value": "\"conversion_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1885, + "length": 15, + "value": "\"is_aggregated\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 10, + "value": "\"has_skan\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 34, + "value": "\"is_conversion_filtering_eligible\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2097, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 11, + "value": "\"acs_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 15, + "value": "\"shared_secret\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1402, + "length": 15, + "value": "\"acs_config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1448, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1493, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1530, + "length": 15, + "value": "\"test_deeplink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1594, + "length": 13, + "value": "\"config_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1681, + "length": 17, + "value": "\"recorded_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1725, + "length": 17, + "value": "\"recorded_values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1770, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1838, + "length": 22, + "value": "\"conversion_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1885, + "length": 15, + "value": "\"is_aggregated\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1933, + "length": 10, + "value": "\"has_skan\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 1985, + "length": 34, + "value": "\"is_conversion_filtering_eligible\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2047, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2097, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 7, + "value": "\"BRAND\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2225, + "length": 6, + "value": "\"CPAS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2174, + "length": 9, + "value": "\"DEFAULT\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2201, + "length": 7, + "value": "\"BRAND\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 2225, + "length": 6, + "value": "\"CPAS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMInvocation.swift", + "kind": "StringLiteral", + "offset": 294, + "length": 13, + "value": "\"FBAEMKit.AEMInvocation\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 501, + "length": 6, + "value": "\"\r\n\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 539, + "length": 8, + "value": "\"16.1.3\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 588, + "length": 7, + "value": "\"v16.0\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 654, + "length": 10, + "value": "\"FBiOSAEM\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 699, + "length": 35, + "value": "\"https:\/\/graph.facebook.com\/v16.0\/\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 772, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 820, + "length": 21, + "value": "\"com.facebook.aemkit\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 865, + "length": 49, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 889, + "length": 1, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 913, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 21, + "value": "\"\/\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1142, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMNetworker.swift", + "kind": "StringLiteral", + "offset": 1264, + "length": 8, + "value": "\"\/macOS\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 435, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 480, + "length": 16, + "value": "\"advertiser_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 528, + "length": 17, + "value": "\"fb_content_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 577, + "length": 17, + "value": "\"al_applink_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 623, + "length": 13, + "value": "\"campaign_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 669, + "length": 17, + "value": "\"conversion_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 720, + "length": 18, + "value": "\"consumption_hour\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 762, + "length": 7, + "value": "\"token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 6, + "value": "\"hmac\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 11, + "value": "\"config_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 864, + "length": 12, + "value": "\"delay_flow\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 916, + "length": 25, + "value": "\"is_conversion_filtering\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 16, + "value": "\"fb_content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1016, + "length": 12, + "value": "\"catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1077, + "length": 54, + "value": "\"com.facebook.sdk:FBAEMMinAggregationRequestTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1156, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1187, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1226, + "length": 17, + "value": "\"aem_conversions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1269, + "length": 9, + "value": "\"success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1309, + "length": 16, + "value": "\"is_valid_match\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1363, + "length": 23, + "value": "\"matched_advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1419, + "length": 18, + "value": "\"in_segment_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1483, + "length": 34, + "value": "\"content_id_belongs_to_catalog_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1587, + "length": 42, + "value": "\"com.facebook.appevents.AEM.FBAEMReporter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "IntegerLiteral", + "offset": 1714, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "IntegerLiteral", + "offset": 1760, + "length": 1, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1823, + "length": 27, + "value": "\"FBSDKAEMReportData.report\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1878, + "length": 27, + "value": "\"FBSDKAEMReportData.config\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 1972, + "length": 24, + "value": "\"aem_conversion_configs\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2034, + "length": 23, + "value": "\"aem_conversion_filter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2090, + "length": 17, + "value": "\"aem_attribution\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2163, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2191, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "StringLiteral", + "offset": 2295, + "length": 8, + "value": "\"(null)\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2541, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2585, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2635, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2681, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "BooleanLiteral", + "offset": 2739, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Dictionary", + "offset": 2958, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Array", + "offset": 3006, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMReporter.swift", + "kind": "Array", + "offset": 3157, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRequestBody.swift", + "kind": "StringLiteral", + "offset": 584, + "length": 6, + "value": "\"\r\n\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 436, + "length": 18, + "value": "\"conversion_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 484, + "length": 10, + "value": "\"priority\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 522, + "length": 8, + "value": "\"events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMRule.swift", + "kind": "StringLiteral", + "offset": 269, + "length": 7, + "value": "\"FBAEMKit.AEMRule\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 329, + "length": 12, + "value": "\"fb_content\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 369, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 412, + "length": 12, + "value": "\"item_price\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 451, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBAEMKit\/FBAEMKit\/AEMUtility.swift", + "kind": "StringLiteral", + "offset": 482, + "length": 10, + "value": "\"quantity\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 00000000..93fd6c8e --- /dev/null +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,32 @@ +// 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-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import CommonCrypto.CommonHMAC +import FBSDKCoreKit_Basics +import Foundation +import Swift +import _Concurrency +import _StringProcessing +public typealias FBGraphRequestCompletion = (Any?, Swift.Error?) -> Swift.Void +@objc(FBAEMNetworking) public protocol AEMNetworking { + @objc(startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:) func startGraphRequest(withGraphPath graphPath: Swift.String, parameters: [Swift.String : Any], tokenString: Swift.String?, httpMethod method: Swift.String?, completion: @escaping FBAEMKit.FBGraphRequestCompletion) +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBAEMReporter) final public class AEMReporter : ObjectiveC.NSObject { + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?) + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?, analyticsAppID: Swift.String?, store: FBSDKCoreKit_Basics.DataPersisting?) + @objc public static func enable() + @objc public static func setConversionFilteringEnabled(_ enabled: Swift.Bool) + @objc public static func setCatalogMatchingEnabled(_ enabled: Swift.Bool) + @objc public static func setAdvertiserRuleMatchInServerEnabled(_ enabled: Swift.Bool) + @objc public static func handle(_ url: Foundation.URL?) + @objc(recordAndUpdateEvent:currency:value:parameters:) public static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) + @objc override dynamic public init() + @objc deinit +} +@objc(FBSKAdNetworkReporting) public protocol SKAdNetworkReporting { + @objc func shouldCutoff() -> Swift.Bool + @objc(isReportingEvent:) func isReportingEvent(_ event: Swift.String) -> Swift.Bool + @objc func checkAndRevokeTimer() +} diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 0f186b8c..263d3e25 100644 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 862774ef..93fd6c8e 100644 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,22 +1,26 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import CommonCrypto import CommonCrypto.CommonHMAC import FBSDKCoreKit_Basics import Foundation import Swift import _Concurrency +import _StringProcessing public typealias FBGraphRequestCompletion = (Any?, Swift.Error?) -> Swift.Void @objc(FBAEMNetworking) public protocol AEMNetworking { @objc(startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:) func startGraphRequest(withGraphPath graphPath: Swift.String, parameters: [Swift.String : Any], tokenString: Swift.String?, httpMethod method: Swift.String?, completion: @escaping FBAEMKit.FBGraphRequestCompletion) } @_inheritsConvenienceInitializers @objcMembers @objc(FBAEMReporter) final public class AEMReporter : ObjectiveC.NSObject { + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?) + @objc public static func configure(networker: FBAEMKit.AEMNetworking?, appID: Swift.String?, reporter: FBAEMKit.SKAdNetworkReporting?, analyticsAppID: Swift.String?, store: FBSDKCoreKit_Basics.DataPersisting?) @objc public static func enable() @objc public static func setConversionFilteringEnabled(_ enabled: Swift.Bool) @objc public static func setCatalogMatchingEnabled(_ enabled: Swift.Bool) @objc public static func setAdvertiserRuleMatchInServerEnabled(_ enabled: Swift.Bool) - @objc public static func handle(_ url: Foundation.URL) + @objc public static func handle(_ url: Foundation.URL?) @objc(recordAndUpdateEvent:currency:value:parameters:) public static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) @objc override dynamic public init() @objc deinit diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeDirectory b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeDirectory new file mode 100644 index 00000000..50af75c7 Binary files /dev/null and b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeDirectory differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeRequirements b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeRequirements new file mode 100644 index 00000000..dbf9d614 Binary files /dev/null and b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeRequirements differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeRequirements-1 b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeRequirements-1 new file mode 100644 index 00000000..ecb7cf78 Binary files /dev/null and b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeResources b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeResources index 07da52fc..0580597d 100644 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeResources +++ b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeResources @@ -6,35 +6,51 @@ Headers/FBAEMKit-Swift.h - nlnNKPp71ZQqOy+One/Ls132cZE= + h35XF8ZG7gIN6+zQ87NaJHo0Tw4= Info.plist - ixQEHPuJRQZlKbUWbW3jDwGNXmE= + 0V3aCLB/LVKgigk2vKKVNK1s7ik= + + Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.abi.json + + uampeyQ6cr5r/D5h7YjPaVGTmpc= + + Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + NJLWCIWpE1WBNUksBC7/V9enApU= Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc - iAGBRyoh0X4kuqtRUKff/k0zes8= + DPp0TN9HDWAPBHvswt8/0AZL4Zg= Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface - aUM91Lt7Sp7Pjnn5J+L5uxFsyHU= + NJLWCIWpE1WBNUksBC7/V9enApU= Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule - r2DYStyGFH2H22cchimJfkbT1CE= + /A3v4dZ1npdS+uysMaSpmwEj5xU= + + Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.abi.json + + uampeyQ6cr5r/D5h7YjPaVGTmpc= + + Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + wXnUj4kuLvddTGnhVjDwm6yp0Aw= Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - YFYNd2NsiBl+tf8aNGEwmhXrO64= + VdE6xNOy/U8C7QJG2PmiZRofElU= Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - elUCzO4d9UcijWF1bbqPC6JaQ20= + wXnUj4kuLvddTGnhVjDwm6yp0Aw= Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - d0fvnnWjjPnkLMhExRnkbx7cOMs= + 1PZX4+Th3QQFRZaY/SiHtDgRW+A= Modules/module.modulemap @@ -45,55 +61,131 @@ Headers/FBAEMKit-Swift.h + hash + + h35XF8ZG7gIN6+zQ87NaJHo0Tw4= + + hash2 + + B9X01mfQ7iGtwfUMHjFiF8touKX2y7+6ksoExcCZMGk= + + + Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.abi.json + + hash + + uampeyQ6cr5r/D5h7YjPaVGTmpc= + hash2 - ErULLk54VJpRLSk5WdtIyfw2bub2UZcNKfxFOoKZJVE= + dqIC2ddTQXgFEJRsKOWcf1xyG6lgQnKma+KzeSf5PdI= + + + Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + hash + + NJLWCIWpE1WBNUksBC7/V9enApU= + + hash2 + + xTwe3C6KiO/TiJAetTwWG8uVZ8xbU1SYyrCW/QDMucs= Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc + hash + + DPp0TN9HDWAPBHvswt8/0AZL4Zg= + hash2 - K0jP+mxaLhptlUsy7iO797Fd+SEzNwQDvTc1ZIbUTnw= + fzG7dSPxHSOtCdtCOwG7jJVsK6E01ja+EP8D6VTLJk8= Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface + hash + + NJLWCIWpE1WBNUksBC7/V9enApU= + hash2 - yyKVr+EOrQwkf5Y0Y3/sefVBhTcGVwS2PMr5Z+mAZec= + xTwe3C6KiO/TiJAetTwWG8uVZ8xbU1SYyrCW/QDMucs= Modules/FBAEMKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule + hash + + /A3v4dZ1npdS+uysMaSpmwEj5xU= + + hash2 + + M4Covfv559CvD3hexfu3cZagpB3TglIPsQKDCdhN1R8= + + + Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.abi.json + + hash + + uampeyQ6cr5r/D5h7YjPaVGTmpc= + + hash2 + + dqIC2ddTQXgFEJRsKOWcf1xyG6lgQnKma+KzeSf5PdI= + + + Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + hash + + wXnUj4kuLvddTGnhVjDwm6yp0Aw= + hash2 - U9du+SodCt+xWKUf1Q03rtAkTzrxB4yEOTWh4QLgurc= + 8RBr/E4Mff02XzNreR7BXZ+60UAZJ3Fo3jwryrXqZh0= Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + hash + + VdE6xNOy/U8C7QJG2PmiZRofElU= + hash2 - 07IX08cUZPf10wwPfsusH5ZGsSZm4UnMKcO8VR85VMg= + H+EJitiSzAYufd8xcwhfa41Rmub59WL+8ozcabWj0OM= Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + hash + + wXnUj4kuLvddTGnhVjDwm6yp0Aw= + hash2 - 1wPkDLylKel1axlQ6pVCBTmjRb8dU7PIyaBfBJ4BW7I= + 8RBr/E4Mff02XzNreR7BXZ+60UAZJ3Fo3jwryrXqZh0= Modules/FBAEMKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule + hash + + 1PZX4+Th3QQFRZaY/SiHtDgRW+A= + hash2 - P8aHQ3B8kLIABr5nI3R8cc9M9pKmuOL9/Nipv2na9Ag= + j+snmQKUEdmDH+OxUs1KcmG+9gWt2xWudtVEVCv4Zxo= Modules/module.modulemap + hash + + Ci3QIdviXpIzxSC88i1rGvW2cSs= + hash2 jq+nSulDKiN4tenILjgXg82TzM040TCurYFTCVRKXxM= diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeSignature b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeSignature new file mode 100644 index 00000000..e69de29b diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index aa3ea2ad..00000000 --- a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBAEMKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit b/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit deleted file mode 100644 index b5cd55f8..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit and /dev/null differ diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/FBAEMKit b/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/FBAEMKit deleted file mode 100755 index 1a591750..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/FBAEMKit and /dev/null differ diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Headers/FBAEMKit-Swift.h b/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Headers/FBAEMKit-Swift.h deleted file mode 100644 index cf76deb9..00000000 --- a/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Headers/FBAEMKit-Swift.h +++ /dev/null @@ -1,219 +0,0 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef FBAEMKIT_SWIFT_H -#define FBAEMKIT_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBAEMKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Info.plist b/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Info.plist deleted file mode 100644 index c34b0301..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Info.plist and /dev/null differ diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-tvos.swiftdoc b/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-tvos.swiftdoc deleted file mode 100644 index f1ca8428..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-tvos.swiftdoc and /dev/null differ diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-tvos.swiftinterface b/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-tvos.swiftinterface deleted file mode 100644 index c4c9ec07..00000000 --- a/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-tvos.swiftinterface +++ /dev/null @@ -1,7 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-tvos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit -import FBSDKCoreKit_Basics -import Foundation -import Swift -import _Concurrency diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Modules/module.modulemap b/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Modules/module.modulemap deleted file mode 100644 index f3a8d2fb..00000000 --- a/ios/platform/FBAEMKit.xcframework/tvos-arm64/FBAEMKit.framework/Modules/module.modulemap +++ /dev/null @@ -1,4 +0,0 @@ -framework module FBAEMKit { - header "FBAEMKit-Swift.h" - requires objc -} diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBAEMKit.xcframework/tvos-arm64/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index aa3ea2ad..00000000 --- a/ios/platform/FBAEMKit.xcframework/tvos-arm64/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBAEMKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit b/ios/platform/FBAEMKit.xcframework/tvos-arm64/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit deleted file mode 100644 index 7952f5af..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/tvos-arm64/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit and /dev/null differ diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/FBAEMKit b/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/FBAEMKit deleted file mode 100755 index 1cff858a..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/FBAEMKit and /dev/null differ diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Headers/FBAEMKit-Swift.h b/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Headers/FBAEMKit-Swift.h deleted file mode 100644 index 6ccd361e..00000000 --- a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Headers/FBAEMKit-Swift.h +++ /dev/null @@ -1,444 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef FBAEMKIT_SWIFT_H -#define FBAEMKIT_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBAEMKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#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.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef FBAEMKIT_SWIFT_H -#define FBAEMKIT_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBAEMKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif - -#endif diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Info.plist b/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Info.plist deleted file mode 100644 index 0733087f..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Info.plist and /dev/null differ diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc b/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc deleted file mode 100644 index a54333de..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc and /dev/null differ diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface b/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface deleted file mode 100644 index 3d7f59ca..00000000 --- a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface +++ /dev/null @@ -1,7 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit -import FBSDKCoreKit_Basics -import Foundation -import Swift -import _Concurrency diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc b/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc deleted file mode 100644 index 8d20ec7c..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc and /dev/null differ diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface b/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface deleted file mode 100644 index 72c62678..00000000 --- a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/FBAEMKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface +++ /dev/null @@ -1,7 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target x86_64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBAEMKit -import FBSDKCoreKit_Basics -import Foundation -import Swift -import _Concurrency diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/module.modulemap b/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/module.modulemap deleted file mode 100644 index f3a8d2fb..00000000 --- a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/Modules/module.modulemap +++ /dev/null @@ -1,4 +0,0 @@ -framework module FBAEMKit { - header "FBAEMKit-Swift.h" - requires objc -} diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeResources b/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeResources deleted file mode 100644 index d253e3d2..00000000 --- a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/FBAEMKit.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,190 +0,0 @@ - - - - - files - - Headers/FBAEMKit-Swift.h - - 7/G8ZPG11a3H0gHXs0tysv+z/q4= - - Info.plist - - GELF+xnovjEu4i44St5PTZQ+4pY= - - Modules/FBAEMKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - MOha/FE8ceZYyf3jO8p4l8HnJkA= - - Modules/FBAEMKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - dxxUPYDxHdY81AGpVpStcqMgKno= - - Modules/FBAEMKit.swiftmodule/arm64-apple-tvos-simulator.swiftmodule - - BXQfOcYfgSNVV3T8zQejs4G4NPE= - - Modules/FBAEMKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - wpuPmPR+HmbdhnhJpt93dPLay8A= - - Modules/FBAEMKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - 7XpxpMjJbtBOkK98r+z2c+fBp/0= - - Modules/FBAEMKit.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule - - 25IovnfUJUTWw//vBickxjn8+ws= - - Modules/module.modulemap - - Ci3QIdviXpIzxSC88i1rGvW2cSs= - - - files2 - - Headers/FBAEMKit-Swift.h - - hash2 - - Z1M7mr5hXsvvx2GIq9ks6hnu1vYamIrjfBs8J3/W0wU= - - - Modules/FBAEMKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - hash2 - - VDFIphO7HF7ulRf6p/yQtVtYU15BlzFZIJObxUBgQZ0= - - - Modules/FBAEMKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - hash2 - - nayXh2N7JPDcqHdLUlCQl85n8reRW+BOXuWuCG77SMw= - - - Modules/FBAEMKit.swiftmodule/arm64-apple-tvos-simulator.swiftmodule - - hash2 - - O7v8/+o3T3JSAd69wkTBk842z9l0ATzFR4CZNrVajjg= - - - Modules/FBAEMKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - hash2 - - N6dfdFVFPjjnTpvx7II6uF40zol2No8JrVDFodA605c= - - - Modules/FBAEMKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - hash2 - - gBBTSufDydhN5uRa8uocK8+s0PReFXeu7b4CQ/hAOfo= - - - Modules/FBAEMKit.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule - - hash2 - - bzAjP95Q1KHJpXXjdgb3jTepe3xXhP5py0n6buPkHbc= - - - Modules/module.modulemap - - hash2 - - jq+nSulDKiN4tenILjgXg82TzM040TCurYFTCVRKXxM= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index aa3ea2ad..00000000 --- a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBAEMKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBAEMKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit b/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit deleted file mode 100644 index 1f2614c4..00000000 Binary files a/ios/platform/FBAEMKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBAEMKit.framework.dSYM/Contents/Resources/DWARF/FBAEMKit and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/Info.plist b/ios/platform/FBSDKCoreKit.xcframework/Info.plist index d4edb7a0..e8530222 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/Info.plist +++ b/ios/platform/FBSDKCoreKit.xcframework/Info.plist @@ -5,10 +5,8 @@ AvailableLibraries - DebugSymbolsPath - dSYMs LibraryIdentifier - ios-arm64_x86_64-maccatalyst + ios-arm64_x86_64-simulator LibraryPath FBSDKCoreKit.framework SupportedArchitectures @@ -19,11 +17,9 @@ SupportedPlatform ios SupportedPlatformVariant - maccatalyst + simulator - DebugSymbolsPath - dSYMs LibraryIdentifier ios-arm64 LibraryPath @@ -36,10 +32,8 @@ ios - DebugSymbolsPath - dSYMs LibraryIdentifier - ios-arm64_x86_64-simulator + ios-arm64_x86_64-maccatalyst LibraryPath FBSDKCoreKit.framework SupportedArchitectures @@ -50,38 +44,7 @@ SupportedPlatform ios SupportedPlatformVariant - simulator - - - DebugSymbolsPath - dSYMs - LibraryIdentifier - tvos-arm64 - LibraryPath - FBSDKCoreKit.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - tvos - - - DebugSymbolsPath - dSYMs - LibraryIdentifier - tvos-arm64_x86_64-simulator - LibraryPath - FBSDKCoreKit.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - tvos - SupportedPlatformVariant - simulator + maccatalyst CFBundlePackageType diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FBSDKCoreKit b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FBSDKCoreKit old mode 100755 new mode 100644 index abecd4f0..559625a6 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FBSDKCoreKit and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FBSDKCoreKit differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings deleted file mode 100644 index 84881da5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besoek %@ en voer die kode in wat hierbo vertoon word."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Om jou rekening te verbind, maak die Facebook-toepassing op jou mobiele toestel oop en kontroleer vir kennisgewings."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OF -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Goed"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Kanselleer"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Meld asseblief weer by hierdie toepassing aan om jou Facebook-rekening te herkoppel. "; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Goed"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Die bediener is tydelik besig, probeer asseblief weer."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Kanselleer"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Meld af"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Met Facebook aangemeld"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "As %@ aangemeld"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Meld aan"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Gaan voort met Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Meld met Facebook aan"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Meld af"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Toegang is nie na die Facebook-rekening verleen nie. Verifieer toestelinstellings."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kan nie aan Facebook koppel nie. Gaan jou netwerkverbinding na en probeer weer."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Jou Facebook-wagwoord het verander. Om jou wagwoord te bevestig, maak Instellings > Facebook oop en tik jou naam."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Die Facebook-rekening is nie op die toestel opgestel nie."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Jou rekening is nie bevestig nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Jy kan nie op die oomblik by toepassings aanmeld nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Jy is in beheer – kies watter inligting jy met toepassings wil deel."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Meld aan"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Stuur"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Deel"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nie jy nie?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bevestig aantekening"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Gaan voort as %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings deleted file mode 100644 index f67e1352..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "تفضل بزيارة %@ وإدخال الرمز الموضح أدناه."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "لربط حسابك، افتح تطبيق فيسبوك على جهازك المحمول ثم تفقد الإشعارات."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- أو -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "موافق"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "إلغاء"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "يرجى تسجيل الدخول إلى هذا التطبيق مرة أخرى لإعادة الاتصال بحساب فيسبوك."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "موافق"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "الخادم مشغول مؤقتًا، يرجى إعادة المحاولة."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "إلغاء"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "تسجيل الخروج"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "تم تسجيل الدخول بحساب فيسبوك"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "تم تسجيل الدخول باسم %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "تسجيل الدخول"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "متابعة بحساب فيسبوك"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "تسجيل الدخول بحساب فيسبوك"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "تسجيل الخروج"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "لم يتم منح إذن الوصول لحساب فيسبوك. تحقق من إعدادات الجهاز."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "تعذر الاتصال بفيسبوك. يُرجى التحقق من الاتصال بالإنترنت وإعادة المحاولة."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "تم تغيير كلمة سر فيسبوك الخاصة بك. لتأكيد كلمة السر، افتح الإعدادات > فيسبوك ثم اضغط على اسمك."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "لم تتم تهيئة حساب فيسبوك على الجهاز."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "لم يتم تأكيد حسابك. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "لا يمكنك تسجيل الدخول إلى التطبيقات حاليًا. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "أنت المتحكم - اختر المعلومات التي تريد مشاركتها مع التطبيقات."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "تسجيل الدخول"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "إرسال"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "مشاركة"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "لست أنت؟"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "تأكيد تسجيل الدخول"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "متابعة باسم %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings deleted file mode 100644 index 768fcdbb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ -এ যান এবং উপরে যে কোডটি দেখানো হয়েছে সেটি লিখুন।"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "আপনার অ্যাকাউন্টে সংযোগ করতে, আপনার মোবাইল ডিভাইসে Facebook অ্যাপটি খুলুন এবং বিজ্ঞপ্তি চেক করুন।"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- অথবা -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ঠিক আছে"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "বাতিল করুন"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "আপনার Facebook অ্যাকাউন্টটিতে পুনরায় সংযোগ করার জন্য অনুগ্রহ করে এই অ্যাপটিতে লগ ইন করুন৷"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ঠিক আছে"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "এই সার্ভারটি সাময়িকভাবে ব্যস্ত আছে, অনুগ্রহ করে পুনরায় চেষ্টা করুন৷"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "বাতিল করুন"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "লগ আউট করুন"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ব্যবহার করে লগ ইন করা হয়েছে"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ হিসাবে লগ ইন করা হয়েছে"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "লগ ইন করুন"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook এর সাথে চালিয়ে যান"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook -এর সাথে লগ ইন করুন"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "লগ আউট করুন"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook অ্যাকাউন্টটিতে অ্যাক্সেস করার অনুমতি নেই৷ ডিভাইস সেটিংস যাচাই করুন৷"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook-এ সংযোগ করা যাচ্ছে না৷ আপনার নেটওয়ার্ক সংযোগটি পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন৷"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "আপনার Facebook পাসওয়ার্ডটি পরিবর্তিত হয়েছে৷ আপনার পাসওয়ার্ডটি নিশ্চিত করতে, সেটিংস > Facebook খুলুন এবং আপনার নামটি ট্যাপ করুন৷"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook অ্যাকাউন্টটি এই ডিভাইসে কনফিগার করা যাযনি৷"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "আপনার অ্যাকাউন্টটি নিশ্চিত করা যায়নি৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "এই সময়ে আপনি অ্যাপসে লগ ইন করতে পারবেন না৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "আপনি নিয়ন্ত্রণে আছেন - অ্যাপ্সের সাথে আপনি যে তথ্য শেয়ার করতে চান তা বাছুন৷"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "লগ ইন করুন"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "পাঠান"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ভাগ করুন"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "আপনি নন?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "লগ ইন নিশ্চিত করুন"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ হিসেবে চালিয়ে যান"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings deleted file mode 100644 index c15549c4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Navštivte %@ a zadejte nahoře uvedený kód."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Účet si můžete připojit tak, že si na mobilním zařízení spustíte aplikaci Facebook a podíváte se do upozornění."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- NEBO -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Zrušit"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Pokud se chcete ke svému Facebook účtu znovu připojit, přihlaste se k této aplikaci ještě jednou."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server je dočasně zaneprázdněný, zkuste to znovu."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Zrušit"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odhlásit"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Přihlášen(a) přes Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Přihlášen(a) jako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Přihlásit"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Pokračovat přes Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Přihlásit se přes Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odhlásit"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook účtu nebylo oprávnění uděleno. Ověřte nastavení zařízení."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "K Facebooku se nedá připojit. Zkontrolujte připojení k síti a zkuste to znovu."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Vaše heslo na Facebook je změněné. Pokud chcete heslo potvrdit, přejděte do Nastavení > Facebook a klepněte na své jméno."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "V tomto zařízení není Facebook účet konfigurovaný."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet není potvrzený. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Do aplikací se v této chvíli přihlásit nemůžete. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Je jen na vás, které informace chcete s aplikacemi sdílet."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Přihlásit"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Odeslat"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Sdílet"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nejste to vy?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrdit přihlášení"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Pokračovat jako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings deleted file mode 100644 index a6d9ed40..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Gå til %@, og indtast den kode, der er angivet ovenfor."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Du kan tilknytte din konto ved at åbne Facebook-appen på din mobilenhed og tjekke notifikationerne."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuller"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Log på denne app igen for at genoprette forbindelsen til din Facebook-konto."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serveren er optaget i øjeblikket. Prøv igen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuller"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log af"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logget på med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logget på som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log på"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsæt med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log på med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log af"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Der er ikke blevet givet adgang til Facebook-kontoen. Kontrollér enhedsindstillingerne."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kunne ikke oprette forbindelse til Facebook. Kontrollér din netværksforbindelse, og prøv igen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Din Facebook-adgangskode er ændret. For at bekræfte din adgangskode skal du åbne Indstillinger > Facebook og trykke på dit navn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke blevet konfigureret på enheden."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Din konto er ikke bekræftet. Log på www.facebook.com, og følg instruktionerne."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge på apps på nuværende tidspunkt. Log på www.facebook.com, og følg instruktionerne."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du har styringen – vælg de oplysninger, som du vil dele med apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log på"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Del"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ikke dig?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekræft login"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsæt som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings deleted file mode 100644 index 1e470805..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besuche %@ und gib den oben angezeigten Code ein."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Um dein Konto zu verbinden, öffne die Facebook-App auf deinem Mobilgerät und prüfe, ob du Benachrichtigungen erhalten hast."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– ODER –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Abbrechen"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Melde dich bitte erneut bei dieser App an, um die Verbindung mit deinem Facebook-Konto wiederherzustellen."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Der Server ist vorübergehend beschäftigt. Bitte versuche es erneut."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Abbrechen"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Abmelden"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Über Facebook angemeldet"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Als %@ angemeldet"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Anmelden"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Mit Facebook fortfahren"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Über Facebook anmelden"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Abmelden"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Auf das Facebook-Konto wurde kein Zugriff erteilt. Überprüfe bitte die Geräteeinstellungen."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Verbindung zu Facebook kann nicht hergestellt werden. Bitte überprüfe deine Netzwerkverbindung und versuche es erneut."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Dein Facebook-Passwort hat sich geändert. Öffne „Einstellungen“ > „Facebook“ und tippe auf deinen Namen, um dein Passwort zu bestätigen."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Das Facebook-Konto wurde für dieses Gerät nicht konfiguriert."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Dein Konto wurde nicht bestätigt. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kannst dich zurzeit nicht bei Apps anmelden. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Es liegt ganz an dir – du kannst dir aussuchen, was du mit Apps teilen möchtest."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Anmelden"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Senden"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Teilen"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nicht du?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Login bestätigen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortfahren als %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings deleted file mode 100644 index 09ca6484..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Επισκεφτείτε τη διεύθυνση %@ και συμπληρώστε τον παραπάνω κωδικό."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Για να συνδεθείτε στο λογαριασμό σας, ανοίξτε την εφαρμογή Facebook στη φορητή συσκευή σας και ελέγξτε τις ειδοποιήσεις."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- Ή -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Άκυρο"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Συνδεθείτε ξανά σε αυτή την εφαρμογή για να συνδέσετε και πάλι το λογαριασμό σας στο Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Ο διακομιστής είναι προσωρινά απασχολημένος, προσπαθήστε ξανά."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Άκυρο"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Αποσύνδεση"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Έχει γίνει σύνδεση μέσω Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Έχει γίνει σύνδεση ως %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Σύνδεση"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Συνεχίστε με το Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Σύνδεση μέσω Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Αποσύνδεση"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Δεν έχει παραχωρηθεί πρόσβαση στο λογαριασμό Facebook. Επαληθεύστε τις ρυθμίσεις της συσκευής σας."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Δεν είναι δυνατή η σύνδεση στο Facebook. Ελέγξτε τη σύνδεση στο δίκτυο και προσπαθήστε ξανά."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ο κωδικός πρόσβασής σας στο Facebook άλλαξε. Για να επιβεβαιώσετε τον κωδικό σας, πηγαίνετε στις Ρυθμίσεις > Facebook και πατήστε το όνομά σας."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Ο λογαριασμός Facebook δεν έχει διαμορφωθεί στη συσκευή."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ο λογαριασμός σας δεν επιβεβαιώθηκε. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Προς το παρόν δεν μπορείτε να συνδεθείτε σε εφαρμογές. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Έχετε τον έλεγχο - επιλέξτε ποιες πληροφορίες θέλετε να κοινοποιούνται στις εφαρμογές."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Σύνδεση"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Αποστολή"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Κοινοποίηση"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Δεν είστε εσείς;"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Επιβεβαίωση σύνδεσης"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Συνέχεια ως %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings deleted file mode 100644 index c88ac076..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings deleted file mode 100644 index e36f841c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Visit %@ and enter the code shown above."; - -/* The 'or' string for smart login instructions */ -"DeviceLogin.SmartLogInOrLabel" = "-- OR --"; - -/* The string for smart login instructions */ -"DeviceLogin.SmartLogInPrompt" = "To connect your account, open the Facebook app on your mobile device and check for notifications."; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancel"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Please log in to this app again to reconnect your Facebook account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "The server is temporarily busy, please try again."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancel"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log out"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logged in using Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logged in as %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continue with Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log in with Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log out"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Access has not been granted to the Facebook account. Verify device settings."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Unable to connect to Facebook. Please check your network connection and try again."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Your Facebook password has changed. To confirm your password, open Settings > Facebook and tap your name."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "The Facebook account has not been configured on the device."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Your account is not confirmed. Please log in to www.facebook.com and follow the instructions given."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "You cannot log in to apps at this time. Please log in to www.facebook.com and follow the instructions given."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "You're in control – choose what information you want to share with apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log In"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Share"; - -/* The title for the alert when smart login requires confirmation */ -"SmartLogin.ConfirmationTitle" = "Confirm Login"; - -/* The format string to continue as for the alert when smart login requires confirmation */ -"SmartLogin.Continue" = "Continue as %@"; - -/* The cancel label for the alert when smart login requires confirmation */ -"SmartLogin.NotYou" = "Not you?"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings deleted file mode 100644 index 0c5ce879..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e ingresa el código que se muestra arriba."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Aceptar"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Inicia sesión de nuevo en esta aplicación para volver a conectarte a tu cuenta de Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Aceptar"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "El servidor está temporalmente ocupado. Vuelve a intentarlo."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Cerrar sesión"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Inicio de sesión"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Salir"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "No se concedió acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión a internet y vuelve a intentarlo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Cambió tu contraseña de Facebook. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "No se configuró la cuenta de Facebook en el dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no está confirmada. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tú decides: elige qué información quieres compartir con las aplicaciones."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Inicio de sesión"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartir"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "¿No eres tú?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings deleted file mode 100644 index 4ecd5d68..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e introduce el código que se muestra arriba."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Aceptar"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Vuelve a iniciar sesión en esta aplicación para volver a conectar tu cuenta de Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Aceptar"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "El servidor está ocupado temporalmente. Vuelve a intentarlo más tarde."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Salir"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Inicio de sesión"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Salir"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "No se ha otorgado acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión de red y vuelve a intentarlo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Tu contraseña de Facebook ha cambiado. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "La cuenta de Facebook no se ha configurado en el dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no se ha confirmado. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tú tienes el control: elige la información que quieres compartir con las aplicaciones."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Inicio de sesión"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartir"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "¿No eres tú?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings deleted file mode 100644 index f51fcaa6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Siirry osoitteeseen %@ ja kirjoita oheinen koodi sivulle."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Pääset liittämään käyttäjätilisi avaamalla Facebook-sovelluksen mobiililaitteellasi ja tarkistamalla ilmoitukset."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- TAI -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Peruuta"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Kirjaudu tähän sovellukseen uudelleen, jotta voit yhdistää Facebook-tilisi uudelleen."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Palvelin on tilapäisesti varattu, yritä uudelleen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Peruuta"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Kirjaudu ulos"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sisäänkirjautunut Facebookin avulla"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sisäänkirjautunut nimellä %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Kirjaudu sisään"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Jatka Facebook-tunnuksilla"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Kirjaudu sisään Facebookin avulla"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Kirjaudu ulos"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Pääsyä Facebook-tiliin ei ole myönnetty. Tarkista laiteasetukset."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Yhteyttä Facebookiin ei voi muodostaa. Tarkista verkkoyhteys ja yritä sitten uudelleen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-salasanasi on vaihdettu. Vahvista salasanasi avaamalla Asetukset > Facebook ja napauttamalla nimeäsi."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-tiliä ei ole määritetty laitteessa."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tiliäsi ei ole vahvistettu. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Et pysty kirjautumaan sovelluksiin tällä hetkellä. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Sinä voit valita, mitä tietoja jaat sovelluksille."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Kirjaudu sisään"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Lähetä"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Jaa"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Etkö tämä ole sinä?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Vahvista sisäänkirjautuminen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Jatka nimellä %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings deleted file mode 100644 index c72600b1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Pumunta sa %@ at ilagay ang code na ipinapakita sa itaas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para ikonekta ang iyong account, buksan ang Facebook app sa iyong cellphone at tumingin ng mga notification."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O KAYA -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Kanselahin"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Mangyaring mag-log in muli sa app na ito para ikonekta muli ang iyong Facebook account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Pansamantalang abala ang server, pakisubukan muli."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Kanselahin"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Mag-log Out"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Naka-log in gamit ang Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Naka-log in bilang si %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Mag-log in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Magatuloy sa Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Mag-log in sa pamamagitan ng Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Mag-log out"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Hindi binigyan ng access ang Facebook account. Beripikahin ang mga setting ng device."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Hindi nakakonekta sa Facebook. Tingnan ang iyong koneksyon sa network at subukan muli."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Nagbago ang iyong password sa Facebook. Para makumpirma ang iyong password, buksan ang Mga Setting > Facebook at i-tap ang iyong pangalan."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Hindi na-configure sa device ang Facebook account."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Hindi nakumpirma ang iyong account. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Hindi ka makakapag-log in sa mga app sa oras na ito. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Ikaw ang may kontrol - piliin kung anong impormasyon ang gusto mong ibahagi sa mga app."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Mag-log In"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Ipadala"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Ibahagi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Hindi ikaw?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "I-confirm ang Pag-log in"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Magpatuloy bilang %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings deleted file mode 100644 index f0511b2e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Consultez la page %@ et saisissez le code indiqué ci-dessus."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Pour connecter votre compte, lancez l’application Facebook sur votre appareil mobile et consultez les notifications."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OU -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuler"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Veuillez vous connecter à nouveau à cette application pour reconnecter votre compte Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Le serveur est temporairement occupé. Veuillez réessayer plus tard."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuler"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Déconnexion"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Connecté(e) à l’aide de Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Connecté(e) en tant que %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Connexion"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuer avec Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Connexion avec Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Déconnexion"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "L’accès au compte Facebook n’a pas été autorisé. Vérifiez les paramètres de l’appareil."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Connexion à Facebook impossible. Vérifiez votre connexion avant de réessayer."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Votre mot de passe Facebook a changé. Pour confirmer votre mot de passe, ouvrez Paramètres > Facebook et saisissez votre nom."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Le compte Facebook n’a pas été configuré sur l’appareil."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Votre compte n’est pas confirmé. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Vous ne pouvez pas vous connecter à des applications pour le moment. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Vous gardez le contrôle. Choisissez les informations que vous souhaitez partager avec les applications."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Connexion"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Envoyer"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Partager"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ce n’est pas vous ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmer la connexion"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuer en tant que %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings deleted file mode 100644 index 95bec7fb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ ની મુલાકાત લો અને ઉપર બતાવ્યા પ્રમાણે કોડ દાખલ કરો."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "તમારા એકાઉન્ટ સાથે જોડાવા માટે, તમારા મોબાઇલ ઉપકરણ પર Facebook એપ્લિકેશન ખોલો અને સૂચનો માટે તપાસો."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- અથવા -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ઠીક"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "રદ કરો"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "તમારા ફેસબુક ખાતાને ફરીથી કનેક્ટ કરવા માટે કૃપા કરીને આ એપ્લિકેશનમાં ફરી લૉગ ઇન કરો."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ઠીક"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "સર્વર અસ્થાયીરૂપે વ્યસ્ત છે, કૃપા કરીને ફરી પ્રયાસ કરો."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "રદ કરો"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "લૉગ આઉટ કરો"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "ફેસબુકનો ઉપયોગ કરીને લૉગ ઇન કરો"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ તરીકે લૉગ ઇન થયાં"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "લૉગ ઇન કરો"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook સાથે ચાલુ રાખો"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "ફેસબુક સાથે લૉગ ઇન કરો"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "લૉગ આઉટ કરો"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "ફેસબુક ખાતા પર ઍક્સેસ આપવામાં આવી નથી. ઉપકરણ સેટિંગ્સ ચકાસો"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "ફેસબુકથી કનેક્ટ કરવામાં અસમર્થ. તમારું નેટવર્ક કનેક્શન તપાસો અને ફરી પ્રયાસ કરો."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "તમારો ફેસબુક પાસવર્ડ બદલાઈ ગયો છે. તમારા પાસવર્ડની પુષ્ટિ કરવા માટે, સેટિંગ્સ > ફેસબુક ખોલો અને તમારા નામ પર ટૅપ કરો."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "ઉપકરણ પર ફેસબુક ખાતું કન્ફિગર કરવામાં આવ્યું નથી."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "તમારા ખાતાની પુષ્ટિ કરવામાં આવી નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "તમે આ સમયે એપ્લિકેશન્સમાં લૉગ ઇન કરી શકતાં નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "તમે નિયંત્રણ કરો છો - તમે એપ્લિકેશન્સ સાથે કઈ માહિતી શેર કરવા માંગો છો તે પસંદ કરો."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "લૉગ ઇન કરો"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "મોકલો"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "શેર કરો"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "તમે નહિ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "લૉગિનની પુષ્ટિ કરો"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ તરીકે ચાલુ રાખો"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings deleted file mode 100644 index be0f033b..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "בקר ב-%@ והזן את הקוד המופיע למעלה."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "כדי לחבר את החשבון שלך, פתח את אפליקציית פייסבוק במכשיר הנייד שלך ובדוק אם יש התראות."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- או -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "אישור"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ביטול"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "התחבר לאפליקציה זו שוב כדי לחבר מחדש את חשבון הפייסבוק שלך."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "אישור"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "השרת עמוס באופן זמני, נסה שוב."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ביטול"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "התנתק"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "מחובר באמצעות פייסבוק"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "מחובר בתור %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "התחבר"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "המשך עם פייסבוק"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "התחבר באמצעות פייסבוק"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "התנתק"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "לא הוענקה גישה לחשבון הפייסבוק. אמת את הגדרות המכשיר."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "לא ניתן להתחבר לפייסבוק. בדוק את החיבור שלך לרשת ונסה שוב."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "סיסמת הפייסבוק שלך השתנתה. כדי לאשר את הסיסמה, פתח את 'הגדרות' > 'פייסבוק' והקש על שמך."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "חשבון הפייסבוק לא הוגדר במכשיר."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "החשבון שלך לא אושר. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "לא ניתן להתחבר לאפליקציות כעת. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "אתה מחליט - בחר איזה מידע אתה רוצה לשתף עם אפליקציות."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "התחבר"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "שלח"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "שתף"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "לא אתה?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "אשר התחברות"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "המשך כ-%@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings deleted file mode 100644 index 16d49ea6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ पर जाएँ और ऊपर दिया गया कोड दर्ज करें."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "अपने खाते को कनेक्ट करने के लिए, अपने मोबाइल एप्लिकेशन में Facebook एप्लिकेशन खोलें और सूचनाओं के लिए जाँच करें."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- या -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ठीक"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "रद्द करें"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "अपने Facebook खाते से फिर से कनेक्ट होने के लिए कृपया इस एप्लिकेशन में फिर से लॉग इन करें."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ठीक"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "सर्वर अस्थायी रूप से व्यस्त है, कृपया फिर से कोशिश करें."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "रद्द करें"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "लॉग आउट करें"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook का उपयोग करके लॉग इन किया हुआ है"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ के रूप में लॉग इन किया हुआ है"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "लॉग इन करें"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook के साथ जारी रखें"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook से लॉग इन करें"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "लॉग आउट"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook खाते को एक्सेस नहीं दी गई है. डिवाइस सेटिंग सत्यापित करें."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook से कनेक्ट होने में असमर्थ. कृपया अपने नेटवर्क कनेक्शन की जाँच करें फिर से प्रयास करें."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "आपका Facebook पासवर्ड बदल गया है. अपना पासवर्ड कन्फ़र्म करने के लिए, सेटिंग > Facebook खोलें और अपना नाम टैप करें."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "डिवाइस पर Facebook खाता कॉन्फ़िगर नहीं किया गया है."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "आपका खाता कन्फ़र्म नहीं किया गया है. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "आप इस समय एप्लिकेशन में लॉग इन नहीं कर सकते. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "आप नियंत्रण में हैं - चुनें कि आप एप्लिकेशन से कौन-सी जानकारी साझा करना चाहते हैं."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "लॉग इन करें"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "भेजें"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "साझा करें"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "आप नहीं हैं?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "लॉग इन कन्फ़र्म करें"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ के रूप में जारी रखें"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings deleted file mode 100644 index 1a30854a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Posjetite adresu %@ i unesite gore prikazan kod."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Da biste povezali račun, otvorite aplikaciju Facebook na mobilnom uređaju i potražite obavijesti."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ILI -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "U redu"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Odustani"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Ponovo se prijavite u ovu aplikaciju kako biste se ponovo povezali s Facebook računom."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "U redu"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Poslužitelj je privremeno zauzet, pokušajte ponovo."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Odustani"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odjavi se"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Prijavljen putem Facebooka"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Prijavljen kao %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Prijavi se"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Nastavite s korištenjem Facebooka"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Prijava putem Facebooka"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odjavi se"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Pristup Facebook računu nije odobren. Provjerite postavke uređaja."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Povezivanje s Facebookom nije uspjelo. Provjerite mrežnu vezu i pokušajte ponovo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Promijenili ste lozinku za Facebook. Za potvrdu lozinke otvorite Postavke > Facebook i dodirnite svoje ime."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Na uređaju nije konfiguriran račun za Facebook."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Vaš račun nije potvrđen. Prijavite se na www.facebook.com i slijedite upute."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "U ovome trenutku prijava u aplikacije nije moguća. Prijavite se na www.facebook.com i slijedite upute."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Vi odlučujete – odaberite koje podatke želite dijeliti u aplikacijama."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Prijava"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Pošalji"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Dijeli"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "To niste vi?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrda prijave"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Nastavi kao %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings deleted file mode 100644 index 81a206e1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Keresd fel a %@ címet, és írd be a fent megjelenített kódot."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "A fiók hozzákapcsolásához nyisd meg a Facebook alkalmazást a mobilkészülékeden, és nézd meg az értesítéseket."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- VAGY -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Mégsem"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Kérjük, jelentkezz be újra ebbe az alkalmazásba, ha szeretnéd ismét összekapcsolni a Facebook-fiókoddal."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "A kiszolgáló átmenetileg foglalt, próbáld meg újra."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Mégsem"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Kijelentkezés"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Bejelentkezve a Facebook használatával"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Bejelentkezve %@ néven"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Bejelentkezés"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Folytatás a Facebookkal"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Bejelentkezés a Facebook használatával"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Kijelentkezés"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "A Facebook-fiókhoz nincs megadva a hozzáférés. Ellenőrizd az eszköz beállításait."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nem sikerült kapcsolódni a Facebookhoz. Ellenőrizd a hálózati kapcsolatot, majd próbáld meg újra."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-jelszavad megváltozott. A jelszó megerősítéséhez nyisd meg a Settings (Beállítások) > Facebook pontot, és koppints a nevedre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A készüléken nincs beállítva a Facebook-fiók."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A fiókod nincs megerősítve. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Jelenleg nem tudsz alkalmazásokba bejelentkezni. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "A döntés a kezedben van: kiválaszthatod, hogy milyen adatokat osztasz meg az alkalmazásokkal."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Bejelentkezés"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Küldés"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Megosztás"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nem te vagy az?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bejelentkezés megerősítése"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Folytatás mint %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings deleted file mode 100644 index da53d0d0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Kunjungi %@ dan masukkan kode yang ditampilkan di atas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akun Anda, buka aplikasi Facebook di perangkat seluler Anda dan periksa pemberitahuan."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Batal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Harap masuk ke aplikasi ini lagi untuk menghubungkan kembali akun Facebook Anda."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server untuk sementara sedang sibuk, harap coba lagi."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Batal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Keluar"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Masuk menggunakan Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Masuk sebagai %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Masuk"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Lanjutkan dengan Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Masuk menggunakan Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Keluar"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Akses belum diberikan ke akun Facebook. Verifikasi pengaturan perangkat."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Tidak dapat terhubung ke Facebook. Periksa koneksi jaringan dan coba lagi."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Kata sandi Facebook Anda telah diubah. Untuk mengonfirmasi kata sandi Anda, buka Pengaturan > Facebook, lalu ketuk nama Anda."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Akun Facebook belum dikonfigurasikan di perangkat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Akun Anda tidak dikonfirmasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Saat ini Anda tidak dapat masuk ke aplikasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Anda memegang kendali - pilih info yang ingin Anda bagikan dengan aplikasi."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Masuk"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Kirim"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Berbagi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Bukan Anda?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Konfirmasikan Masuk"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Lanjutkan sebagai %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings deleted file mode 100644 index 38915663..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e inserisci il codice mostrato sopra."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Per collegare il tuo account, apri l'app Facebook sul tuo dispositivo mobile e controlla se hai notifiche."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OPPURE -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annulla"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Effettua di nuovo l'accesso a questa applicazione per riconnettere il tuo account Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Il server è temporaneamente occupato, riprova."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annulla"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Esci"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Accesso effettuato tramite Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Accesso effettuato come %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Accedi"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continua con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Accedi con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Esci"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "All'account Facebook non è stato concesso l'accesso. Verifica le impostazioni del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Impossibile connettersi a Facebook. Controlla la tua connessione e riprova."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "La tua password di Facebook è stata modificata. Per confermare la password, apri Impostazioni > Facebook e tocca il tuo nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "L'account Facebook non è stato configurato nel dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Il tuo account non è stato verificato. Accedi a www.facebook.com e segui le istruzioni fornite."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Impossibile accedere alle applicazioni al momento. Accedi a www.facebook.com e segui le istruzioni fornite."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Il controllo è nelle tue mani: scegli quali informazioni condividere con le app."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Accedi"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Invia"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Condividi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Non sei tu?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Conferma l'accesso"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continua come %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings deleted file mode 100644 index c4922b5e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@にアクセスし、上に表示されているコードを入力してください。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "アカウントをリンクするには、お使いのモバイル機器でFacebookアプリを開き、お知らせをご確認ください。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- または -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "キャンセル"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "このアプリにもう一度ログインして、Facebookアカウントを再接続してください。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "サーバーが一時的にビジーです。もう一度お試しください。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "キャンセル"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ログアウト"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebookを使用してログイン中"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@としてログイン中"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ログイン"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebookで続ける"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebookでログイン"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ログアウト"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebookアカウントにアクセス権が与えられていません。デバイス設定を確認してください。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebookに接続できませんでした。ネットワーク接続を確認してもう一度お試しください。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebookパスワードが変更されています。パスワードを確認するには、[設定] > [Facebook]の順に開き、名前をタップしてください。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "デバイスにFacebookアカウントが構成されていません。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "アカウントが確認されません。www.facebook.comにログインし、表示される説明に従ってください。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "今はアプリにログインできません。www.facebook.comにログインし、表示される説明に従ってください。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "アプリと共有する情報をコントロールできます。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ログイン"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "送信"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "シェア"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "別のユーザーとしてログイン"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ログインの確認"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@として続行"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings deleted file mode 100644 index 9ecdac9d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings +++ /dev/null @@ -1,71 +0,0 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "ನಿಮ್ಮ ಸ್ಮಾರ್ಟ್‌ ಫೋನ್‌ ಅಥವಾ ಕಂಪ್ಯೂಟರ್‌ನಲ್ಲಿ %@ ಗೆ ಭೇಟಿ ನೀಡಿ ಮತ್ತು ಈ ಕೋಡ್‌ ಅನ್ನು ನಮೂದಿಸಿ:"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ಸರಿ"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ರದ್ದುಮಾಡು"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "ನಿಮ್ಮ Facebook ಖಾತೆಯನ್ನು ಮರುಸಂಪರ್ಕಗೊಳಿಸಲು ಈ ಅಪ್ಲಿಕೇಶನ್‌ನಲ್ಲಿ ಮತ್ತೊಮ್ಮೆ ಲಾಗಿನ್‌ ಮಾಡಿ."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ಸರಿ"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "ಸರ್ವರ್ ತಾತ್ಕಾಲಿಕವಾಗಿ ಕಾರ್ಯನಿರತವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ರದ್ದುಮಾಡು"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ಲಾಗ್‌ ಔಟ್‌"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ಬಳಸಿಕೊಂಡು ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ ರಂತೆ ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ಲಾಗ್‌ ಇನ್‌"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ಅನ್ನು ಮುಂದುವರಿಸಿ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ಮೂಲಕ ಲಾಗ್‌ ಇನ್‌ ಮಾಡಿ"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ಲಾಗ್‌ ಔಟ್‌"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ಖಾತೆಗೆ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಲಾಗಿಲ್ಲ. ಸಾಧನದ ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ಪರಿಶೀಲಿಸಿ."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook ಗೆ ಸಂಪರ್ಕಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನಿಮ್ಮ ನೆಟ್‌ವರ್ಕ್‌ ಸಂಪರ್ಕವನ್ನು ಪರಿಶೀಲಿಸಿ ಹಾಗೂ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "ನಿಮ್ಮ Facebook ಪಾಸ್‌ವರ್ಡ್‌ ಬದಲಿಸಲಾಗಿದೆ. ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್‌ ಖಚಿತಪಡಿಸಲು, ಸೆಟ್ಟಿಂಗ್‌ಗಳು > Facebook ತೆರೆಯಿರಿ ಮತ್ತು ನಿಮ್ಮ ಹೆಸರನ್ನು ಟ್ಯಾಪ್‌ ಮಾಡಿ."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook ಖಾತೆಯನ್ನು ಸಾಧನದಲ್ಲಿ ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿಲ್ಲ."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ದೃಢೀಕರಿಸಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ನೀವು ಈ ಸಮಯದಲ್ಲಿ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗೆ ಲಾಗಿನ್‌ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ನೀವು ನಿಯಂತ್ರಣದಲ್ಲಿರುವಿರಿ - ನೀವು ಅಪ್ಲಿಕೇಶನ್‌ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಹಂಚಿಕೊಳ್ಳಲು ಬಯಸುವ ವಿಷಯವನ್ನು ಆರಿಸಿ."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ಲಾಗ್‌ ಇನ್‌"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ಕಳುಹಿಸಿ"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ಹಂಚಿಕೊಳ್ಳಿ"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings deleted file mode 100644 index f7692eff..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@를 방문하여 위에 표시된 코드를 입력하세요."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "계정을 연결하려면 모바일 기기에서 Facebook 앱을 열고 알림을 확인하세요."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 또는 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "확인"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "취소"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Facebook 계정을 다시 연결하려면 이 앱에 다시 로그인하세요."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "확인"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "일시적으로 서버 사용량이 많아졌습니다. 다시 시도하세요."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "취소"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "로그아웃"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook 계정으로 로그인함"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@(으)로 로그인함"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "로그인"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook으로 계속"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook으로 로그인"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "로그아웃"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook 계정에 대한 액세스가 승인되지 않았습니다. 기기 설정을 확인하세요."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook에 연결할 수 없습니다. 네트워크 연결을 확인하고 다시 시도하세요."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook 비밀번호가 변경되었습니다. 비밀번호를 확인하려면 설정 > Facebook으로 이동하여 이름을 누르세요."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook 계정이 기기에 구성되어 있지 않습니다."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "계정이 확인되지 않았습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "현재 앱에 로그인할 수 없습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "원하는 정보를 선택하여 앱에 공유할 수 있습니다."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "로그인"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "보내기"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "공유하기"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "회원님이 아닌가요?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "로그인 확인"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@님으로 계속"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings deleted file mode 100644 index 8b9ead15..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ സന്ദർശിച്ച്‌ മുകളിൽ കാണിച്ച‌ കോഡ്‌ നൽകുക."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "നിങ്ങളുടെ അക്കൗണ്ട്‌ കണക്‌റ്റുചെയ്യാൻ, നിങ്ങളുടെ മൊബൈൽ ഉപകരണത്തിലെ Facebook ആപ്പ്‌ തുറന്ന്‌ അറിയിപ്പുകൾ പരിശോധിക്കുക."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- അല്ലെങ്കിൽ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ശരി"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "റദ്ദാക്കുക"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "നിങ്ങളുടെ Facebook അക്കൗണ്ടുമായി വീണ്ടും കണക്‌റ്റുചെയ്യുന്നതിന് ഈ ആപ്ലിക്കേഷനിൽ വീണ്ടും ലോഗിൻ ചെയ്യുക."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ശരി"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "സെർവർ താൽക്കാലികമായി തിരക്കിലാണ്, വീണ്ടും ശ്രമിക്കുക."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "റദ്ദാക്കുക"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്‌തു"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ എന്നതായി ലോഗിൻ ചെയ്‌തു"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ലോഗിൻ ചെയ്യുക"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ഉപയോഗിച്ച് തുടരുക"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook അക്കൗണ്ടിലേക്ക് ആക്‌സസ് നൽകിയിട്ടില്ല. ഉപകരണ ക്രമീകരണങ്ങൾ പരിശോധിച്ചുറപ്പിക്കുക."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook-ലേക്ക് കണക്‌റ്റുചെയ്യാനായില്ല. നിങ്ങളുടെ നെറ്റ്‌വർക്ക് കണക്ഷൻ പരിശോധിച്ച് വീണ്ടും ശ്രമിക്കുക."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "നിങ്ങളുടെ Facebook പാസ്‌വേഡ് മാറി. പാ‌സ്‌വേഡ് സ്ഥിരീകരിക്കുന്നതിന് ക്രമീകരണങ്ങൾ > Facebook എന്നത് തുറന്ന് പേര് ടാപ്പുചെയ്യുക."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "ഉപകരണത്തിൽ Facebook അക്കൗണ്ട് കോൺഫിഗർ ചെയ്‌തിട്ടില്ല."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "അക്കൗണ്ട് സ്ഥിരീകരിച്ചു. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "നിങ്ങൾക്ക് ഈ സമയം ആപ്ലിക്കേഷനുകളിലേക്ക് ലോഗിൻ ചെയ്യാനാവില്ല. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "നിങ്ങളുടെ നിയന്ത്രണത്തിലാണ് - നിങ്ങൾക്ക് ആപ്‌സുമായി ഏതെല്ലാം വിവരങ്ങൾ പങ്കിടണമെന്ന് തിരഞ്ഞെടുക്കുക."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ലോഗിൻ ചെയ്യുക"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "അയയ്‌ക്കുക"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "പങ്കിടൂ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "നിങ്ങൾ അല്ലേ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ലോഗിൻ സ്ഥിരീകരിക്കുക"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ആയി തുടരുക"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings deleted file mode 100644 index e857096c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ वर भेट द्या आणि वर दर्शवलेला कोड प्रविष्ट करा."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "तुमचे खाते कनेक्ट करण्यासाठी, तुमच्या मोबाईल उपकरणावर Facebook अॅप उघडा आणि सूचना तपासा."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- किंवा -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ठीक"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "रद्द करा"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "कृपया आपले फेसबुक खाते रीकनेक्ट करण्यासाठी या अनुप्रयोगावर पुन्हा लॉग इन करा."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ठीक"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "सर्व्हर तात्पुरता व्यस्त आहे, कृपया पुन्हा प्रयत्न करा."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "रद्द करा"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "लॉग आउट करा"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "फेसबुक वापरून लॉग इन केले"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ म्हणून लॉग इन केले"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "लॉग इन करा"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook सह चालू ठेवा"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "फेसबुकसह लॉग इन करा"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "लॉग आउट करा"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "फेसबुक खात्यावर प्रवेशास मंजूरी दिली गेली नाही. डिव्हाइस सेटिंग्ज सत्यापित करा."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "फेसबुकशी कनेक्ट करण्यात अक्षम. आपले नेटवर्क कनेक्शन तपासा आणि पुन्हा प्रयत्न करा."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "आपला फेसबुक पासवर्ड बदलला आहे. आपल्या पासवर्डची पुष्टी करण्यासाठी, सेटिंग्ज > फेसबुक उघडा आणि आपले नाव टॅप करा."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "डिव्हाइसवर फेसबुक खाते कॉन्फिगर केले गेले नाही."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "आपल्या खात्याची पुष्टी झाली नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "आपण यावेळी अनुप्रयोगांवर लॉग इन करू शकत नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "तुम्ही नियंत्रणात आहात - तुम्ही कोणती माहिती अॅपसह सामायिक करू इच्छिता ते निवडा."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "लॉग इन करा"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "पाठवा"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "सामायिक करा"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "तुम्ही नाही?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "लॉग इन पुष्टी करा"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ म्हणून चालू ठेवा"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings deleted file mode 100644 index 60b4cdb9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Lawati %@ dan masukkan kod yang ditunjukkan di atas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akaun anda, buka apl Facebook di peranti mudah alih anda dan semak pemberitahuan."; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Bukan anda?"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Batal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Sila log masuk ke aplikasi ini sekali lagi untuk menyambung semula akaun Facebook anda."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Pelayan ini sibuk buat sementara waktu, sila cuba lagi."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Batal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log Keluar"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Dilog masuk menggunakan Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Dilog masuk sebagai %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log masuk"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Teruskan dengan Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log masuk dengan Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log keluar"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Akses ke akaun Facebook tidak diberikan. Sahkan tetapan peranti."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Tidak dapat menyambung ke Facebook. Semak sambungan rangkaian anda dan cuba lagi."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Kata laluan Facebook anda telah ditukar. Untuk mengesahkan kata laluan anda, buka Tetapan > Facebook dan ketik nama anda."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Akaun Facebook masih belum dikonfigurasikan pada peranti."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Akaun anda tidak disahkan. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Anda tidak boleh log masuk ke aplikasi pada masa ini. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Anda yang mengawal - pilih maklumat yang anda ingin kongsi dengan apl."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log Masuk"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Hantar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Kongsi"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Sahkan Log Masuk"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Teruskan sebagai %@"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings deleted file mode 100644 index 3ebb66c3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Gå til %@, og oppgi koden som vises ovenfor."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Koble til kontoen din ved å åpne Facebook-appen på mobilenheten din og se etter varsler."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Avbryt"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Logg deg inn igjen på denne appen for å koble til Facebook-kontoen på nytt."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serveren er midlertidig opptatt. Prøv på nytt."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Avbryt"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Logg ut"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logget inn med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logget inn som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Logg inn"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsett med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Logg inn med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Logg ut"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Det er ikke gitt tilgang til Facebook-kontoen. Bekreft enhetsinnstillinger."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kunne ikke koble til Facebook. Kontroller nettverkstilkoblingen, og prøv på nytt."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-passordet ditt er endret. Bekreft passordet ditt ved å gå til Innstillinger > Facebook og trykke på navnet ditt."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke konfigurert på enheten."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Kontoen din er bekreftet. Logg deg inn på www.facebook.com, og følg instruksjonene."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge deg inn på apper for øyeblikket. Logg deg inn på www.facebook.com, og følg instruksjonene."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du bestemmer – velg hvilke opplysninger du vil dele med appene."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Logg inn"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Del"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ikke deg?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekreft innlogging"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsett som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings deleted file mode 100644 index 160654a4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Ga naar %@ en voer de bovenstaande code in."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Om je account te verbinden, open je de Facebook-app op je mobiele apparaat en controleer of je meldingen ziet."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OF -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuleren"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Meld je nogmaals aan bij deze app om verbinding te maken met je Facebook-account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "De server is tijdelijk niet beschikbaar. Probeer het opnieuw."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuleren"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Afmelden"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Aangemeld via Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Aangemeld als %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Aanmelden"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Doorgaan met Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Aanmelden met Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Afmelden"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Er is geen toegang verleend aan het Facebook-account. Verifieer de apparaatinstellingen."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Er kan geen verbinding worden gemaakt met Facebook. Controleer je netwerkverbinding en probeer het opnieuw."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Je Facebook-wachtwoord is gewijzigd. Open Instellingen > Facebook en tik op je naam om je wachtwoord te bevestigen."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Het Facebook-account is niet geconfigureerd op het apparaat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Je account is niet bevestigd. Meld je aan bij www.facebook.com en volg de instructies."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Je kunt je momenteel niet aanmelden bij apps. Meld je aan bij www.facebook.com en volg de instructies."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Jij hebt de controle. Kies welke informatie je met apps wilt delen."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Aanmelden"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Verzenden"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Delen"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ben jij dit niet?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Aanmelden bevestigen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Doorgaan als %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings deleted file mode 100644 index 07027466..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ ਵਿੱਚ ਜਾਓ ਅਤੇ ਉੱਤੇ ਦਿਖਾਏ ਗਏ ਕੋਡ ਨੂੰ ਦਾਖ਼ਲ ਕਰੋ।"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "ਆਪਣੇ ਖਾਤੇ ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਲਈ, ਆਪਣੀ ਮੋਬਾਈਲ ਡਿਵਾਈਸ 'ਤੇ Facebook ਐਪ ਨੂੰ ਖੋਲ੍ਹੋ ਅਤੇ ਸੂਚਨਾਵਾਂ ਨੂੰ ਦੇਖੋ।"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ਜਾਂ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ਠੀਕ"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ਰੱਦ ਕਰੋ"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੇ Facebook ਖਾਤੇ ਨਾਲ ਮੁੜ ਕਨੈਕਟ ਕਰਨ ਲਈ ਇਸ ਐਪ ਵਿੱਚ ਦੁਬਾਰਾ ਲੌਗ ਇਨ ਕਰੋ।"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ਠੀਕ"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "ਇਹ ਸਰਵਰ ਅਸਥਾਈ ਰੂਪ ਵਿੱਚ ਵਿਅਸਤ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ਰੱਦ ਕਰੋ"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ਦਾ ਉਪਯੋਗ ਕਰਕੇ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ ਵੱਜੋਂ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ਲੌਗ ਇਨ ਕਰੋ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ਦੇ ਨਾਲ ਜਾਰੀ ਰੱਖੋ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ਦੇ ਨਾਲ ਲੌਗ ਇਨ ਕਰੋ"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ਖਾਤੇ ਨੂੰ ਐਕਸੈਸ ਪ੍ਰਦਾਨ ਨਹੀਂ ਕੀਤੀ ਗਈ। ਡਿਵਾਈਸ ਸੈੱਟਿੰਗਜ਼ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਵਿੱਚ ਅਸਮਰਥਿਤ ਆਪਣੇ ਨੈੱਟਵਰਕ ਕਨੈਕਸ਼ਨ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "ਤੁਹਾਡੇ Facebook ਪਾਸਵਰਡ ਨੂੰ ਬਦਲ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਆਪਣੇ ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰਨ ਲਈ, ਸੈੱਟਿੰਗਜ਼ > Facebook ਖੋਲ੍ਹੋ ਅਤੇ ਆਪਣੇ ਨਾਂ ਨੂੰ ਟੈਪ ਕਰੋ।"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook ਖਾਤੇ ਨੂੰ ਡਿਵਾਈਸ 'ਤੇ ਕਨਫ਼ੀਗਰ ਨਹੀਂ ਕੀਤਾ ਗਿਆ ਹੈ।"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "ਤੁਹਾਡੇ ਖਾਤੇ ਦੀ ਪੁਸ਼ਟੀ ਨਹੀਂ ਕੀਤੀ ਗਈ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ਤੁਸੀਂ ਇਸ ਸਮੇਂ ਐਪ ਵਿੱਚ ਲੌਗ ਇਨ ਨਹੀਂ ਕਰ ਸਕਦੇ ਹੋ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ਤੁ\ਸੀਂ ਨਿਯੰਤਰਣ ਵਿੱਚ ਹੋ - ਉਹ ਜਾਣਕਾਰੀ ਚੁਣੋ ਜੋ ਤੁਸੀਂ ਐਪਸ ਦੇ ਨਾਲ ਸਾਂਝੀ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ।"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ਲੌਗ ਇਨ ਕਰੋ"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ਸਾਂਝਾ ਕਰੋ"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ਭੇਜੋ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "ਕੀ ਤੁਸੀਂ ਨਹੀਂ ਹੋ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ਲੌਗਇਨ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ਵੱਜੋਂ ਜਾਰੀ ਰੱਖੋ"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings deleted file mode 100644 index 5b0954f5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Wejdź na stronę %@ i wprowadź podany powyżej kod."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Aby połączyć konto, otwórz aplikację Facebook na urządzeniu mobilnym i sprawdź powiadomienia."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- LUB -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Anuluj"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Zaloguj się jeszcze raz do aplikacji, aby ponownie przyłączyć swoje konto na Facebooku."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serwer jest zajęty, spróbuj później."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Anuluj"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Wyloguj się"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Zalogowano przez Facebooka"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Zalogowano jako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Zaloguj się"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Kontynuuj za pośrednictwem Facebooka"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Zaloguj się przez Facebooka"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Wyloguj się"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Brak dostępu z tego konta na Facebooku. Sprawdź ustawienia urządzenia."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nie można połączyć się z Facebookiem. Sprawdź połączenie sieciowe i spróbuj ponownie."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Twoje hasło do Facebooka zostało zmienione. Aby potwierdzić hasło, otwórz Ustawienia > Facebook i dotknij swojego imienia i nazwiska."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Na tym urządzeniu nie skonfigurowano konta na Facebooku."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Konto niepotwierdzone. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Brak możliwości logowania się do aplikacji. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Masz pełną kontrolę – określ, jakie informacje chcesz udostępniać aplikacjom."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Zaloguj się"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Wyślij"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Udostępnij"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "To nie Ty?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potwierdź logowanie"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Kontynuuj jako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings deleted file mode 100644 index 6ff2c772..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Acesse %@ e introduza o código mostrado acima."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar sua conta, abra o aplicativo Facebook em seu dispositivo móvel e verifique se tem notificações."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– OU –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Entre nesse aplicativo novamente para reconectar sua conta do Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tente novamente."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Sair"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Você entrou usando o Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Conectado como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Entrar"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar com o Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Entrar com o Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Sair"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "O acesso à conta do Facebook não foi permitido. Verifique as configurações do dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Não foi possível se conectar ao Facebook. Verifique sua conexão de rede e tente novamente."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "A sua senha do Facebook foi alterada. Para confirmar a sua senha, abra Configurações > Facebook e toque no seu nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A sua conta não foi confirmada. Entre no site www.facebook.com e siga as instruções fornecidas."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Não é possível entrar em aplicativos neste momento. Entre no site www.facebook.com e siga as instruções fornecidas."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Você é quem controla — escolha quais informações você quer compartilhar com os aplicativos."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Entrar"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Envio"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartilhar"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Não é você?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirme o login"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continue como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings deleted file mode 100644 index 6648e115..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e introduz o código mostrado acima."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para ligares a tua conta, abre a app Facebook no teu dispositivo móvel e verifica se tens notificações."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– OU –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Volta a iniciar sessão nesta aplicação para te ligares novamente à tua conta do Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tenta novamente."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Terminar sessão"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Com sessão iniciada através do Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Com sessão iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Iniciar sessão"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar com o Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sessão com o Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Terminar a sessão"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "O acesso não foi concedido à conta do Facebook. Verificar as definições do dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Não é possível ligar ao Facebook. Verifica a tua ligação à rede e tenta novamente."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "A tua palavra-passe do Facebook foi alterada. Para confirmares a tua palavra-passe, abre as Definições > Facebook e toca no teu nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A tua conta não foi confirmada. Inicia sessão em www.facebook.com e segue as instruções indicadas."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Não podes iniciar sessão em aplicações neste momento. Inicia sessão em www.facebook.com e segue as instruções indicadas."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tens o controlo: escolhe a informação que pretendes partilhar com as apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Iniciar sessão"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Partilhar"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Não és tu?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar Início de Sessão"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings deleted file mode 100644 index 450a9cc8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Откройте страницу %@ и введите представленный выше код."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Чтобы подключить аккаунт, откройте приложение Facebook на мобильном устройстве и проверьте уведомления."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ИЛИ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Отменить"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Войдите в это приложение еще раз, чтобы повторно подключить ваш аккаунт Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Сервер временно загружен, повторите попытку."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Отменить"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Выход"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Выполнен вход с помощью Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Вы вошли как %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Вход"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Продолжить с Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Вход через Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Выход"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Аккаунту Facebook доступ не предоставлен. Проверьте настройки устройства."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Не удалось подключиться к Facebook. Проверьте сетевое подключение и повторите попытку."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ваш пароль Facebook изменен. Чтобы подтвердить пароль, откройте «Настройки» > Facebook и коснитесь вашего имени."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "На устройстве не настроен аккаунт Facebook."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ваш аккаунт не подтвержден. Войдите на сайт www.facebook.com и следуйте инструкциям."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Сейчас нельзя войти в приложения. Войдите на сайт www.facebook.com и следуйте инструкциям."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Вы сами выбираете, какой информацией поделиться с приложениями."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Вход в систему"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Отправить"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Поделиться"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Это не вы?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Подтвердить вход"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Продолжить как %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings deleted file mode 100644 index 859b9b3d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Navštívte stránku %@ a zadajte kód zobrazený vyššie."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Na pripojenie svojho účtu otvorte vo svojom mobilnom zariadení aplikáciu Facebook a skontrolujte upozornenia."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ALEBO -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Zrušiť"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Ak sa chcete znova pripojiť k svojmu účtu na Facebooku, prihláste sa znova do tejto aplikácie."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server je dočasne zaneprázdnený – skúste znova."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Zrušiť"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odhlásiť"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Prihlásený cez Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Prihlásený ako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Prihlásiť sa"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Pokračovať s Facebookom"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Prihlásiť sa cez Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odhlásiť sa"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Danému účtu na Facebooku nebol poskytnutý prístup. Skontrolujte nastavenia zariadenia."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nedá sa pripojiť k Facebooku. Skontrolujte svoje sieťové pripojenie a skúste znova."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Vaše heslo pre Facebook sa zmenilo. Na potvrdenie svojho hesla otvorte Nastavenia > Facebook a ťuknite na svoje meno."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Daný účet na Facebooku nebol nastavený v zariadení."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet nie je potvrdený. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Momentálne sa nemôžete prihlásiť do aplikácií. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Máte to pod kontrolou: vyberte, ktoré informácie chcete zdieľať s aplikáciami."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Prihlásenie sa"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Odoslať"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Zdieľať"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nie ste to vy?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrdiť prihlásenie"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Pokračovať ako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings deleted file mode 100644 index 69c80525..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besök %@ och ange koden som visas ovan."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Koppla ditt konto genom att öppna Facebook-appen på din mobila enhet och söka efter aviseringar."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Avbryt"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Logga in på den här appen igen om du vill ansluta ditt Facebook-konto på nytt."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Servern är upptagen för tillfället. Försök igen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Avbryt"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Logga ut"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Inloggad med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Inloggad som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Logga in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsätt med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Logga in med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Logga ut"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Du har inte fått tillgång till Facebook-kontot. Verifiera enhetsinställningar."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Det går inte att ansluta till Facebook. Kontrollera nätverksanslutningen och försök igen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ditt Facebook-lösenord har ändrats. Bekräfta lösenordet genom att öppna Inställningar > Facebook och skriva in ditt namn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-konto har inte konfigurerats på enheten."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ditt konto har inte bekräftats. Logga in på www.facebook.com och följ instruktionerna."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan inte logga in på appar för närvarande. Logga in på www.facebook.com och följ instruktionerna."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du bestämmer – välj vilken info du vill dela med appar."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Logga in"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Skicka"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Dela"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Inte du?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekräfta inloggning"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsätt som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings deleted file mode 100644 index ec117a9a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ என்பதற்குச் சென்று மேலே தெரியும் குறியீட்டை உள்ளிடவும்."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "உங்கள் கணக்குடன் இணைக்க, உங்கள் மொபைல் சாதனத்தில் Facebook பயன்பாட்டைத் திறந்து அறிவிப்புகளைப் பார்க்கவும்."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- அல்லது -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "சரி"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ரத்துசெய்"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "உங்கள் Facebook கணக்கில் மீண்டும் இணைய, இந்தப் பயன்பாட்டில் மீண்டும் உள்நுழையவும்."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "சரி"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "சேவையகம் தற்காலிகமாக பிஸியாக உள்ளது, மீண்டும் முயற்சிக்கவும்."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ரத்துசெய்"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "வெளியேறு"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook மூலம் உள்நுழையப்பட்டுள்ளது"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ இல் உள்நுழைந்துள்ளீர்கள்"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "உள்நுழைவு"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook இல் தொடரவும்"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook மூலம் உள்நுழையவும்"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "வெளியேறு"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook கணக்கிற்கு அணுகல் வழங்கப்படவில்லை. சாதன அமைப்புகளைச் சரிபார்க்கவும்."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook இல் இணைய முடியவில்லை. இணைய இணைப்பைச் சரிபார்த்து, மீண்டும் முயற்சிக்கவும்."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook கடவுச்சொல் மாற்றப்பட்டது. கடவுச்சொல்லை உறுதிசெய்ய, அமைப்புகள் > Facebook க்கு சென்று உங்கள் பெயரைத் தட்டவும்."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "சாதனத்தில் Facebook கணக்கு உள்ளமைக்கப்படவில்லை."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "உங்கள் கணக்கு உறுதிசெய்யப்படவில்லை. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "இப்போது பயன்பாடுகளில் உள்நுழைய முடியாது. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "பயன்பாடுகளில் எந்தத் தகவலைப் பகிர விரும்புகிறீர்கள் என்பதை நீங்கள் கட்டுப்படுத்தலாம்."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "உள்நுழைவு"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "அனுப்பு"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "பகிர்"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "நீங்கள் இல்லையா?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "உள்நுழைவை உறுதிப்படுத்தவும்"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ஆகத் தொடரவும்"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings deleted file mode 100644 index 0d0bbe0e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ లింక్‌ను సందర్శించి, ఎగువ చూపిన కోడ్‌ను నమోదు చేయండి."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "మీ ఖాతాను అనుసంధానించడానికి, మీ మొబైల్ పరికరంలో Facebook అనువర్తనాన్ని తెరిచి, నోటిఫికేషన్‌లను తనిఖీ చేయండి."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- లేదా -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ఒప్పుకుంటున్నాను"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "రద్దు చేయి"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "దయచేసి మీ Facebook ఖాతాను మళ్లీ కనెక్ట్ చేయడానికి ఈ అప్లికేషన్‌కు మళ్లీ లాగిన్ చేయండి."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ఒప్పుకుంటున్నాను"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "సర్వర్ తాత్కాలికంగా బిజీగా ఉంది, దయచేసి మళ్లీ ప్రయత్నించండి."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "రద్దు చేయి"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "లాగ్ అవుట్ చేయి"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ఉపయోగించి లాగిన్ చేసారు"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@గా లాగిన్ చేసారు"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "లాగిన్ చేయి"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebookతో కొనసాగించండి"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebookతో లాగిన్ చేయి"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "లాగ్ అవుట్ చేయి"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ఖాతాకు ప్రాప్యత మంజూరు చేయలేదు. పరికర సెట్టింగ్‌లను సరిచూడండి."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebookకి కనెక్ట్ చేయడం సాధ్యపడలేదు. మీ నెట్‌వర్క్ కనెక్షన్‌ను తనిఖీ చేసి, మళ్లీ ప్రయత్నించండి."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "మీ Facebook పాస్‌వర్డ్ మారింది. మీ పాస్‌వర్డ్‌ను నిర్ధారించడానికి, సెట్టింగ్‌లు > Facebook తెరిచి, మీ పేరు నొక్కండి."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "పరికరంలో Facebook ఖాతా కాన్ఫిగర్ చేయబడలేదు."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "మీ ఖాతా నిర్ధారించబడలేదు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ప్రస్తుతం మీరు అప్లికేషన్‌లకు లాగిన్ చేయలేరు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "మీకు నియంత్రణ ఉంది - మీరు అనువర్తనాలతో భాగస్వామ్యం చేయాలనుకునే సమాచారాన్ని ఎంచుకోండి."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "లాగిన్ చేయండి"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "పంపు"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "భాగస్వామ్యం చేయండి"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "మీరు కాదా?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "లాగిన్‌ను నిర్ధారించండి"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ వలె కొనసాగండి"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings deleted file mode 100644 index 3883ee8f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "ไปที่ %@ และใส่โค้ดที่แสดงด้านบน"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "หากต้องการเชื่อมต่อบัญชีผู้ใช้ของคุณ ให้เปิดแอพ Facebook บนอุปกรณ์มือถือของคุณและตรวจสอบการแจ้งเตือน"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- หรือ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ตกลง"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ยกเลิก"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "โปรดลงชื่อเข้าใช้แอพนี้อีกครั้งเพื่อเชื่อมต่อบัญชีผู้ใช้ Facebook ของคุณใหม่"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ตกลง"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "เซิร์ฟเวอร์ไม่พร้อมให้บริการชั่วคราว โปรดลองใหม่อีกครั้ง"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ยกเลิก"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ออกจากระบบ"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "เข้าสู่ระบบโดยใช้ Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "เข้าสู่ระบบในชื่อ %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "เข้าสู่ระบบ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "ดำเนินการต่อด้วย Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "เข้าสู่ระบบด้วย Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ออกจากระบบ"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "บัญชีผู้ใช้ Facebook ไม่ได้รับอนุญาตให้เข้าถึง ตรวจสอบการตั้งค่าของอุปกรณ์"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "ไม่สามารถเชื่อมต่อกับ Facebook ตรวจสอบการเชื่อมต่อเครือข่ายและลองอีกครั้ง"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "เปลี่ยนรหัสผ่าน Facebook ของคุณแล้ว เพื่อยืนยันรหัสผ่านของคุณ ให้เปิด การตั้งค่า > Facebook แล้วแตะชื่อของคุณ"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "บัญชีผู้ใช้ Facebook ไม่ได้รับการกำหนดค่าบนอุปกรณ์เครื่องนี้"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "บัญชีผู้ใช้ของคุณไม่ได้รับการยืนยัน โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "คุณไม่สามารถเข้าสู่ระบบของแอพได้ในตอนนี้ โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "คุณเป็นฝ่ายควบคุม โปรดเลือกข้อมูลที่คุณต้องการแชร์ด้วยแอพ"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "เข้าสู่ระบบ"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ส่ง"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "แชร์"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "หากไม่ใช่คุณ"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ยืนยันการเข้าสู่ระบบ"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "ดำเนินการต่อในชื่อ %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings deleted file mode 100644 index 51a5328d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ adresini ziyaret edin ve yukarıda görülen kodu girin."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Hesabınızı bağlamak için, mobil cihazınızda Facebook uygulamasını açın ve bildirimlerinizi kontrol edin."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- YA DA -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Tamam"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "İptal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Facebook hesabına yeniden bağlanmak için lütfen bu uygulamaya tekrar giriş yap."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Tamam"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Sunucu geçici olarak meşgul. Lütfen tekrar dene."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "İptal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Çıkış Yap"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ile giriş yapıldı"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ olarak giriş yapıldı"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Giriş yap"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ile Devam Et"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ile giriş yap"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Çıkış yap"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook hesabına erişim izni verilmedi. Cihaz ayarlarını doğrula."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook'a bağlanılamıyor. Ağ bağlantını kontrol edip tekrar dene."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook şifren değiştirildi. Şifreni onaylamak için Ayarlar > Facebook'u aç ve adına dokunun."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook hesabı cihaz üzerinde yapılandırılmadı."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Hesabın onaylanmadı. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Şu an için uygulamalara giriş yapamazsın. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Kontrol sende. Uygulamalarla paylaşmak istediğin bilgileri seç."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Giriş Yap"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Gönder"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Paylaş"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Sen değil misin?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Girişi Onayla"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ olarak devam et"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings deleted file mode 100644 index d0ddbc61..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Truy cập %@ và nhập mã hiển thị ở trên."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Để kết nối tài khoản của bạn, hãy mở ứng dụng Facebook trên thiết bị di động và kiểm tra thông báo."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- HOẶC -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Hủy"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Vui lòng đăng nhập lại vào ứng dụng này để kết nối lại tài khoản Facebook của bạn."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Máy chủ hiện đang bận, vui lòng thử lại sau."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Hủy"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Đăng xuất"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Đã đăng nhập bằng Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Đã đăng nhập với tư cách là"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Đăng nhập"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Tiếp tục với Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Đăng nhập bằng Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Đăng xuất"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Quyền truy cập chưa được cấp cho tài khoản Facebook. Xác minh thiết lập của thiết bị."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Không thể kết nối với Facebook. Vui lòng kiểm tra kết nối mạng của bạn và thử lại."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Mật khẩu Facebook của bạn đã thay đổi. Để xác nhận mật khẩu của bạn, hãy mở Thiết lập > Facebook và nhấn vào tên bạn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Tài khoản Facebook chưa được định cấu hình trên thiết bị."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tài khoản của bạn không được xác nhận. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Bạn không thể đăng nhập vào các ứng dụng lúc này. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Bạn đang có quyền kiểm soát - hãy chọn thông tin bạn muốn chia sẻ với ứng dụng."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Đăng nhập"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Gửi"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Chia sẻ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Không phải bạn?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Xác nhận đăng nhập"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Tiếp tục với tư cách %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings deleted file mode 100644 index 4273dc25..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "请访问 %@ 并输入上方显示的验证码。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "要关联你的帐户,请在移动设备上打开 Facebook 应用,并查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或者 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "确定"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "请再次登录此应用,以便重新连接您的 Facebook 帐户。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "确定"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "服务器暂时繁忙,请重试。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "退出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "已使用 Facebook 登录"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "已以 %@ 身份登录"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登录"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "继续使用 Facebook 登录"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登录"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "退出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "未授予该 Facebook 帐户访问权限。验证设备设置。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "无法连接到 Facebook。检查网络连接并重试。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密码已更改。要确认密码,请打开设置 > Facebook,并轻触您的姓名。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "未在设备上配置 Facebook 帐户。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帐户未确认。请登录 www.facebook.com,并按照提供的说明操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您此时不能登录应用。请登录 www.facebook.com,并按照提供的说明操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "一切任您掌控 — 选择您想通过应用分享的信息。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登录"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "发送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "不是你?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "确认登录"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以%@的身份继续"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings deleted file mode 100644 index 44f853db..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "前往 %@ 並輸入上方的程式碼。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "若要連結您的帳戶,請在您的流動裝置上開啟 Facebook 應用程式並查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "確定"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "請再次登入此應用程式以重新連接您的 Facebook 帳戶。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "確定"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "登出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "使用 Facebook 登入"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "以 %@ 身分登入"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登入"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "繼續使用 Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登入"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "登出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "沒有獲得 Facebook 帳戶的存取授權。確認裝置設定。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "無法與 Facebook 連線。請檢查網絡連線,然後再試一次。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經變更。要確認密碼,請開啟設定 > Facebook,然後點按您的名稱。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook 帳戶尚未在此裝置上設定。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帳戶尚未確認。請登入 www.facebook.com 並依據指示操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您現時無法登入應用程式。請登入 www.facebook.com 並依據指示操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "控制權在您 - 選擇您要與應用程式分享的資訊。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登入"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "傳送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "這不是您?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "確認登入"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以%@的身分繼續"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings deleted file mode 100644 index b97bd4aa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "請前往 %@ 並輸入上方顯示的代碼。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "若要連結帳號,請從行動裝置開啟 Facebook 應用程式,並查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "是"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "請重新登入此應用程式以重新連結您的 Facebook 帳號。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "是"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "登出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "已使用 Facebook 登入"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "以 %@ 身分登入"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登入"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "繼續使用 Facebook 帳號"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登入"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "登出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "尚未取得授權,無法存取 Facebook 帳號。請確認裝置設定。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "無法連線到 Facebook。請檢查網路連線,然後再試一次。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經更改。若要確認您的密碼,請開啟「設定」>「Facebook」,然後點按您的姓名。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "尚未透過裝置設定 Facebook 帳號。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帳號尚未確認。請登入 www.facebook.com,然後按照指示操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您目前無法登入應用程式。請登入 www.facebook.com,然後按照指示操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "您可以全盤掌控!選擇您想和應用程式分享的資訊內容。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登入"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "傳送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "這不是您?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "確認登入"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以 %@ 身分繼續"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAEMManager.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAEMManager.h new file mode 100644 index 00000000..e40489bd --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAEMManager.h @@ -0,0 +1,49 @@ +/* + * Copyright (c) Meta Platforms, Inc. and affiliates. + * All rights reserved. + * + * This source code is licensed under the license found in the + * LICENSE file in the root directory of this source tree. + */ + +#import + +#import + +@protocol FBSDKSwizzling; +@protocol FBSDKAEMReporter; +@protocol FBSDKAutoSetup; + +NS_ASSUME_NONNULL_BEGIN + +/** + Internal type exposed to facilitate transition to Swift. + API Subject to change or removal without warning. Do not use. + + @warning INTERNAL - DO NOT USE + */ +NS_SWIFT_NAME(_AEMManager) +@interface FBSDKAEMManager : NSObject + ++ (instancetype)new NS_UNAVAILABLE; +- (instancetype)init NS_UNAVAILABLE; + +/// The shared instance of AEMManager. +@property (class, nonatomic, readonly, strong) FBSDKAEMManager *shared; + +- (void)configureWithSwizzler:(nonnull Class)swizzler + aemReporter:(nonnull Class)aemReporter + eventLogger:(nonnull id)eventLogger + crashHandler:(nonnull id)crashHandler + featureChecker:(nonnull id)featureChecker + appEventsUtility:(nonnull id)appEventsUtility +NS_SWIFT_NAME(configure(swizzler:reporter:eventLogger:crashHandler:featureChecker:appEventsUtility:)); + +- (void)enableAutoSetup:(BOOL)proxyEnabled; + +- (void)logAutoSetupStatus:(BOOL)optin + source:(NSString *)source; + +@end + +NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h index 7ecffa81..9a4c3549 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h @@ -33,7 +33,7 @@ @protocol FBSDKAppEventDropDetermining; @protocol FBSDKCAPIReporter; @protocol FBSDKAppEventParametersExtracting; - +@protocol FBSDKMACARuleMatching; #if !TARGET_OS_TV @protocol FBSDKEventProcessing; @protocol FBSDKMetadataIndexing; @@ -73,7 +73,9 @@ NS_SWIFT_NAME(_AppEventsConfiguring) appEventsUtility:(id)appEventsUtility internalUtility:(id)internalUtility capiReporter:(id)capiReporter -NS_SWIFT_NAME(configure(gateKeeperManager:appEventsConfigurationProvider:serverConfigurationProvider:graphRequestFactory:featureChecker:primaryDataStore:logger:settings:paymentObserver:timeSpentRecorder:appEventsStateStore:eventDeactivationParameterProcessor:restrictiveDataFilterParameterProcessor:atePublisherFactory:appEventsStateProvider:advertiserIDProvider:userDataStore:appEventsUtility:internalUtility:capiReporter:)); + protectedModeManager:(id)protectedModeManager + macaRuleMatchingManager:(id)macaRuleMatchingManager +NS_SWIFT_NAME(configure(gateKeeperManager:appEventsConfigurationProvider:serverConfigurationProvider:graphRequestFactory:featureChecker:primaryDataStore:logger:settings:paymentObserver:timeSpentRecorder:appEventsStateStore:eventDeactivationParameterProcessor:restrictiveDataFilterParameterProcessor:atePublisherFactory:appEventsStateProvider:advertiserIDProvider:userDataStore:appEventsUtility:internalUtility:capiReporter:protectedModeManager:macaRuleMatchingManager:)); #if !TARGET_OS_TV diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h index 3ba4f7b8..36f32f40 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h @@ -24,6 +24,28 @@ NS_SWIFT_NAME(_AppEventsDeviceInfo) @property (nullable, nonatomic, readonly) id settings; +// Ephemeral data, may change during the lifetime of an app. We collect them in different +// 'group' frequencies - group1 may gets collected once every 30 minutes. + +// group1 +@property (nonatomic) NSString *carrierName; +@property (nonatomic) NSString *timeZoneAbbrev; +@property (nonatomic) unsigned long long remainingDiskSpaceGB; +@property (nonatomic) NSString *timeZoneName; + +// Persistent data, but we maintain it to make rebuilding the device info as fast as possible. +@property (nonatomic) NSString *bundleIdentifier; +@property (nonatomic) NSString *longVersion; +@property (nonatomic) NSString *shortVersion; +@property (nonatomic) NSString *sysVersion; +@property (nonatomic) NSString *machine; +@property (nonatomic) NSString *language; +@property (nonatomic) unsigned long long totalDiskSpaceGB; +@property (nonatomic) unsigned long long coreCount; +@property (nonatomic) CGFloat width; +@property (nonatomic) CGFloat height; +@property (nonatomic) CGFloat density; + #if !DEBUG - (instancetype)init NS_UNAVAILABLE; + (instancetype)new NS_UNAVAILABLE; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h index 8dad6f89..9f2408cb 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h @@ -24,7 +24,7 @@ NS_SWIFT_NAME(_AppEventsParameterProcessing) - (void)enable; - (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters - eventName:(FBSDKAppEventName)eventName; + eventName:(nullable FBSDKAppEventName)eventName; @end diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h index 7997c1d6..777a1b41 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h @@ -30,6 +30,7 @@ NS_SWIFT_NAME(_AppEventsUtilityProtocol) loggingOverrideAppID:(nullable NSString *)loggingOverrideAppID; - (NSString *)flushReasonToString:(FBSDKAppEventsFlushReason)flushReason; - (void)saveCampaignIDs:(NSURL *)url; +- (nullable NSString *)getCampaignIDs; @end diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAutoSetup.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAutoSetup.h new file mode 100644 index 00000000..3b0d60b7 --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKAutoSetup.h @@ -0,0 +1,44 @@ +/* + * Copyright (c) Meta Platforms, Inc. and affiliates. + * All rights reserved. + * + * This source code is licensed under the license found in the + * LICENSE file in the root directory of this source tree. + */ + +#import + +@protocol FBSDKAEMReporter; +@protocol FBSDKAppEventsUtility; +@protocol FBSDKCrashHandler; +@protocol FBSDKEventLogging; +@protocol FBSDKFeatureDisabling; +@protocol FBSDKSwizzling; + +NS_ASSUME_NONNULL_BEGIN + +/** + Internal Type exposed to facilitate transition to Swift. + API Subject to change or removal without warning. Do not use. + + @warning INTERNAL - DO NOT USE + */ +NS_SWIFT_NAME(_AutoSetup) +@protocol FBSDKAutoSetup + +- (void)configureWithSwizzler:(nonnull Class)swizzler + aemReporter:(nonnull Class)aemReporter + eventLogger:(nonnull id)eventLogger + crashHandler:(nonnull id)crashHandler + featureChecker:(nonnull id)featureChecker + appEventsUtility:(nonnull id)appEventsUtility +NS_SWIFT_NAME(configure(swizzler:reporter:eventLogger:crashHandler:featureChecker:appEventsUtility:)); + +- (void)enableAutoSetup:(BOOL)proxyEnabled; + +- (void)logAutoSetupStatus:(BOOL)optin + source:(NSString *)source; + +@end + +NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h index a2367330..f50d8582 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h @@ -1,4 +1,6 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +#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 FBSDKCOREKIT_SWIFT_H #define FBSDKCOREKIT_SWIFT_H #pragma clang diagnostic push @@ -21,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -181,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -191,11 +204,34 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import AuthenticationServices; +@import CoreFoundation; @import CoreGraphics; @import FBAEMKit; @import Foundation; @@ -207,6 +243,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -214,6 +251,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -222,8 +260,10 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; @class NSNumber; +@class NSURL; /// Internal Type exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. @@ -235,6 +275,7 @@ SWIFT_PROTOCOL_NAMED("_AEMReporterProtocol") + (void)setConversionFilteringEnabled:(BOOL)isEnabled; + (void)setCatalogMatchingEnabled:(BOOL)isEnabled; + (void)setAdvertiserRuleMatchInServerEnabled:(BOOL)isEnabled; ++ (void)handle:(NSURL * _Nullable)url; @end @@ -243,7 +284,6 @@ SWIFT_PROTOCOL_NAMED("_AEMReporterProtocol") -@class NSURL; @protocol FBSDKAppLinkTarget; /// Contains App Link metadata relevant for navigation on this device @@ -494,7 +534,7 @@ SWIFT_PROTOCOL_NAMED("CAPIReporter") /// Internal type exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. /// @warning INTERNAL - DO NOT USE -SWIFT_CLASS("_TtC12FBSDKCoreKit17CoreUIApplication") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_CLASS("_TtC12FBSDKCoreKit17CoreUIApplication") @interface CoreUIApplication : NSObject SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull shared;) + (id _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; @@ -521,7 +561,7 @@ enum FBSDKProfilePictureMode : NSUInteger; @class NSCoder; /// A view to display a profile picture. -SWIFT_CLASS_NAMED("FBProfilePictureView") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_CLASS_NAMED("FBProfilePictureView") @interface FBSDKProfilePictureView : UIView /// The mode for the receiver to determine the aspect ratio of the source image. @property (nonatomic) enum FBSDKProfilePictureMode pictureMode; @@ -570,7 +610,14 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKTransfo + (FBSDKTransformerGraphRequestFactory * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (void)configureWithDatasetID:(NSString * _Nonnull)datasetID url:(NSString * _Nonnull)url accessKey:(NSString * _Nonnull)accessKey; -- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters; +- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters userAgent:(NSString * _Nonnull)userAgent; +@end + + +SWIFT_PROTOCOL_NAMED("MACARuleMatching") +@protocol FBSDKMACARuleMatching +- (void)enable; +- (NSDictionary * _Nullable)processParameters:(NSDictionary * _Nullable)params event:(NSString * _Nullable)event SWIFT_WARN_UNUSED_RESULT; @end @class NSDate; @@ -952,10 +999,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKSetting /// @warning INTERNAL - DO NOT USE @property (nonatomic, copy) NSString * _Nullable userAgentSuffix; /// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. @property (nonatomic) BOOL advertiserTrackingEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.\n "); /// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. @property (nonatomic) BOOL isAdvertiserTrackingEnabled; /// Internal property exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. @@ -1337,8 +1382,15 @@ SWIFT_CLASS_NAMED("_WebViewFactory") - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif #pragma clang diagnostic pop #endif + +#else +#error unsupported Swift architecture +#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h index 23c96145..ae840ce9 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h @@ -13,6 +13,7 @@ #import #import #import +#import #import #import #import @@ -65,6 +66,7 @@ #import #import #import +#import #import #import #import @@ -84,9 +86,7 @@ #import #import #import -#import #import -#import #import #import #import diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h index 56befda2..f8b78981 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h @@ -6,5 +6,5 @@ * LICENSE file in the root directory of this source tree. */ -#define FBSDK_VERSION_STRING @"15.1.0" -#define FBSDK_DEFAULT_GRAPH_API_VERSION @"v15.0" +#define FBSDK_VERSION_STRING @"16.1.3" +#define FBSDK_DEFAULT_GRAPH_API_VERSION @"v16.0" diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceDialogView.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceDialogView.h deleted file mode 100644 index e290e584..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceDialogView.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeviceDialogViewDelegate) -@protocol FBSDKDeviceDialogViewDelegate; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -NS_SWIFT_NAME(FBDeviceDialogView) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@interface FBSDKDeviceDialogView : UIView - -@property (nonatomic, weak) id delegate; -@property (nonatomic, copy) NSString *confirmationCode; - -// override point for subclasses. -- (void)buildView; - -@end - -NS_SWIFT_NAME(DeviceDialogViewDelegate) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@protocol FBSDKDeviceDialogViewDelegate - -- (void)deviceDialogViewDidCancel:(FBSDKDeviceDialogView *)deviceDialogView; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h index ec650cfa..a2ce0e4d 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h @@ -19,6 +19,24 @@ NS_SWIFT_NAME(_DeviceInformationProviding) @property (nonatomic, readonly) NSString *storageKey; @property (nullable, nonatomic, readonly) NSString *encodedDeviceInfo; +// group1 +@property (nullable, nonatomic) NSString *carrierName; +@property (nullable, nonatomic) NSString *timeZoneAbbrev; +@property (nonatomic) unsigned long long remainingDiskSpaceGB; +@property (nullable, nonatomic) NSString *timeZoneName; + +// Persistent data, but we maintain it to make rebuilding the device info as fast as possible. +@property (nullable, nonatomic) NSString *bundleIdentifier; +@property (nullable, nonatomic) NSString *longVersion; +@property (nullable, nonatomic) NSString *shortVersion; +@property (nullable, nonatomic) NSString *sysVersion; +@property (nullable, nonatomic) NSString *machine; +@property (nullable, nonatomic) NSString *language; +@property (nonatomic) unsigned long long totalDiskSpaceGB; +@property (nonatomic) unsigned long long coreCount; +@property (nonatomic) CGFloat width; +@property (nonatomic) CGFloat height; +@property (nonatomic) CGFloat density; @end diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceViewControllerBase.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceViewControllerBase.h deleted file mode 100644 index 9a08f5af..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceViewControllerBase.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if TARGET_OS_TV - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/* - An internal base class for device related flows. - - This is an internal API that should not be used directly and is subject to change. - */ -NS_SWIFT_NAME(FBDeviceViewControllerBase) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@interface FBSDKDeviceViewControllerBase : UIViewController -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeature.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeature.h index 3eabc556..4be2fe0a 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeature.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeature.h @@ -46,6 +46,8 @@ typedef NS_ENUM(NSUInteger, FBSDKFeature) { FBSDKFeatureSuggestedEvents = 0x01010401, FBSDKFeatureIntelligentIntegrity = 0x01010402, FBSDKFeatureModelRequest = 0x01010403, + FBSDKFeatureProtectedMode = 0x01010404, + FBSDKFeatureMACARuleMatching = 0x01010405, FBSDKFeatureEventDeactivation = 0x01010500, FBSDKFeatureSKAdNetwork = 0x01010600, FBSDKFeatureSKAdNetworkConversionValue = 0x01010601, @@ -54,6 +56,8 @@ typedef NS_ENUM(NSUInteger, FBSDKFeature) { FBSDKFeatureAEMConversionFiltering = 0x01010801, FBSDKFeatureAEMCatalogMatching = 0x01010802, FBSDKFeatureAEMAdvertiserRuleMatchInServer = 0x01010803, + FBSDKFeatureAEMAutoSetup = 0x01010804, + FBSDKFeatureAEMAutoSetupProxy = 0x01010805, FBSDKFeatureAppEventsCloudbridge = 0x01010900, /// Instrument FBSDKFeatureInstrument = 0x01020000, diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h index e352b82e..1fc9c008 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h @@ -30,7 +30,7 @@ NS_SWIFT_NAME(_RestrictiveDataFilterManager) - (void)enable; - (void)processEvents:(NSArray *> *)events; - (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters - eventName:(FBSDKAppEventName)eventName; + eventName:(nullable FBSDKAppEventName)eventName; @end NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h index 41d52df5..54c40506 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h @@ -107,6 +107,7 @@ NS_SWIFT_NAME(_ServerConfiguration) restrictiveParams:(nullable NSDictionary *)restrictiveParams AAMRules:(nullable NSDictionary *)AAMRules suggestedEventsSetting:(nullable NSDictionary *)suggestedEventsSetting + protectedModeRules:(nullable NSDictionary *)protectedModeRules NS_DESIGNATED_INITIALIZER; @property (nonatomic, readonly, getter = isAdvertisingIDEnabled, assign) BOOL advertisingIDEnabled; @@ -132,6 +133,7 @@ NS_SWIFT_NAME(_ServerConfiguration) @property (nullable, nonatomic, readonly, copy) NSDictionary *restrictiveParams; @property (nullable, nonatomic, readonly, copy) NSDictionary *AAMRules; @property (nullable, nonatomic, readonly, copy) NSDictionary *suggestedEventsSetting; +@property (nullable, nonatomic, readonly, copy) NSDictionary *protectedModeRules; @property (nonatomic, readonly) NSInteger version; - (nullable FBSDKDialogConfiguration *)dialogConfigurationForDialogName:(NSString *)dialogName; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Info.plist b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Info.plist index 43f115b2..6b628ed6 100644 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Info.plist and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Info.plist differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.abi.json b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 00000000..691d9251 --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,68791 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMNetworker", + "printedName": "AEMNetworker", + "children": [ + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerC17startGraphRequest04withE4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworker", + "printedName": "FBSDKCoreKit.AEMNetworker", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker(im)init", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventsStateFactory", + "printedName": "AppEventsStateFactory", + "children": [ + { + "kind": "Function", + "name": "createState", + "printedName": "createState(tokenString:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsState", + "printedName": "FBSDKCoreKit._AppEventsState", + "usr": "c:objc(cs)FBSDKAppEventsState" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC06createE011tokenString5appIDSo08FBSDKAppdE0CSS_SStF", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryC06createE011tokenString5appIDSo08FBSDKAppdE0CSS_SStF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createStateWithToken:appID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventsStateFactory", + "printedName": "FBSDKCoreKit.AppEventsStateFactory", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLink", + "printedName": "AppLink", + "children": [ + { + "kind": "Var", + "name": "sourceURL", + "printedName": "sourceURL", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)sourceURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL10Foundation0F0VSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "sourceURL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)sourceURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL10Foundation0F0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "sourceURL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targets", + "printedName": "targets", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)targets", + "mangledName": "$s12FBSDKCoreKit7AppLinkC7targetsSaySo08FBSDKAppD6Target_pGvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "targets", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)targets", + "mangledName": "$s12FBSDKCoreKit7AppLinkC7targetsSaySo08FBSDKAppD6Target_pGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "targets", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webURL", + "printedName": "webURL", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)webURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC6webURL10Foundation0F0VSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "webURL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)webURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC6webURL10Foundation0F0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "webURL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isBackToReferrer", + "printedName": "isBackToReferrer", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)backToReferrer", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "backToReferrer", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)isBackToReferrer", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "isBackToReferrer", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)setBackToReferrer:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvM", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sourceURL:targets:webURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)initWithSourceURL:targets:webURL:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL7targets03webF0AC10Foundation0F0VSg_SaySo08FBSDKAppD6Target_pGAJtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithSourceURL:targets:webURL:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "appLink", + "printedName": "appLink(sourceURL:targets:webURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkProtocol", + "printedName": "FBSDKCoreKit._AppLinkProtocol", + "usr": "c:objc(pl)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(cm)appLinkWithSourceURL:targets:webURL:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC03appD09sourceURL7targets03webG0So08FBSDKAppD0_p10Foundation0G0VSg_SaySo0jD6Target_pGALtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "appLinkWithSourceURL:targets:webURL:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sourceURL:targets:webURL:isBackToReferrer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)initWithSourceURL:targets:webURL:isBackToReferrer:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL7targets03webF016isBackToReferrerAC10Foundation0F0VSg_SaySo08FBSDKAppD6Target_pGAKSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithSourceURL:targets:webURL:isBackToReferrer:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)init", + "mangledName": "$s12FBSDKCoreKit7AppLinkCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink", + "mangledName": "$s12FBSDKCoreKit7AppLinkC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLink", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "AppLinkFactory", + "printedName": "AppLinkFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLink", + "printedName": "createAppLink(sourceURL:targets:webURL:isBackToReferrer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkProtocol", + "printedName": "FBSDKCoreKit._AppLinkProtocol", + "usr": "c:objc(pl)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC06createcD09sourceURL7targets03webH016isBackToReferrerSo08FBSDKAppD0_p10Foundation0H0VSg_SaySo0oD6Target_pGAMSbtF", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryC06createcD09sourceURL7targets03webH016isBackToReferrerSo08FBSDKAppD0_p10Foundation0H0VSg_SaySo0oD6Target_pGAMSbtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkWithSourceURL:targets:webURL:isBackToReferrer:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkFactory", + "printedName": "FBSDKCoreKit.AppLinkFactory", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkNavigation", + "printedName": "AppLinkNavigation", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "NonObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultResolver", + "printedName": "defaultResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cpy)defaultResolver", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "defaultResolver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)defaultResolver", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)setDefaultResolver:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extras", + "printedName": "extras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)extras", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC6extrasSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)extras", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC6extrasSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkData", + "printedName": "appLinkData", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)appLinkData", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD4DataSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)appLinkData", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD4DataSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLink", + "printedName": "appLink", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)appLink", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD0AA0cD0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)appLink", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD0AA0cD0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "navigationType", + "printedName": "navigationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)navigationType", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationTypeSo08FBSDKAppdeG0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)navigationType", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationTypeSo08FBSDKAppdeG0Vvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLink:extras:appLinkData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)initWithAppLink:extras:appLinkData:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD06extras0fD4DataAcA0cD0C_SDySSypGAItcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppLink:extras:appLinkData:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLink:extras:appLinkData:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)initWithAppLink:extras:appLinkData:settings:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD06extras0fD4Data8settingsAcA0cD0C_SDySSypGAjA16SettingsProtocol_ptcfc", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "initWithAppLink:extras:appLinkData:settings:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "navigation", + "printedName": "navigation(with:extras:appLinkData:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigationWithAppLink:extras:appLinkData:settings:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC10navigation4with6extras03appD4Data8settingsAcA0cD0C_SDySSypGAkA16SettingsProtocol_ptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "navigationWithAppLink:extras:appLinkData:settings:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "callbackAppLinkData", + "printedName": "callbackAppLinkData(forApp:url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Swift.String]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + }, + { + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)callbackAppLinkDataForAppWithName:url:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC08callbackcD4Data03forC03urlSDySSSDyS2SGGSS_SStFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "callbackAppLinkDataForAppWithName:url:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC8navigateSo08FBSDKAppdE4TypeVyKF", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigateSo08FBSDKAppdE4TypeVyKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resolveAppLink", + "printedName": "resolveAppLink(_:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)resolveAppLink:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC07resolvecD0_7handlery10Foundation3URLV_yAA0cD0CSg_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "resolveAppLink:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resolveAppLink", + "printedName": "resolveAppLink(_:resolver:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)resolveAppLink:resolver:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC07resolvecD0_8resolver7handlery10Foundation3URLV_So08FBSDKAppD9Resolving_pyAA0cD0CSg_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "resolveAppLink:resolver:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC8navigate2toSo08FBSDKAppdE4TypeVAA0cD0C_tKFZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2toSo08FBSDKAppdE4TypeVAA0cD0C_tKFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigationType", + "printedName": "navigationType(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigationTypeForLink:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationType3forSo08FBSDKAppdeG0VAA0cD0C_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigationTypeForLink:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigateToURL:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2to7handlery10Foundation3URLV_ySo08FBSDKAppdE4TypeV_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigateToURL:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:resolver:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigateToURL:resolver:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2to8resolver7handlery10Foundation3URLV_So08FBSDKAppD9Resolving_pySo0ldE4TypeV_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigateToURL:resolver:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appLinkURL", + "printedName": "appLinkURL(targetURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC03appD3URL06targetG010Foundation0G0VSgAH_tKF", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD3URL06targetG010Foundation0G0VSgAH_tKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postNavigateEventNotification", + "printedName": "postNavigateEventNotification(targetURL:error:navigationType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)postNavigateEventNotificationWithTargetURL:error:navigationType:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC29postNavigateEventNotification9targetURL5error14navigationTypey10Foundation0K0VSg_s5Error_pSgSo08FBSDKAppdeN0VtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigationType", + "printedName": "navigationType(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)navigationTypeFor:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationType3forSo08FBSDKAppdeG0VSaySo0iD6Target_pG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)init", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkEventPoster", + "printedName": "appLinkEventPoster", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkResolver", + "printedName": "appLinkResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:urlOpener:appLinkEventPoster:appLinkResolver:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settings9urlOpener03appD11EventPoster0kD8ResolverAeA16SettingsProtocol_p_So22FBSDKInternalURLOpener_pSo08FBSDKAppdL7Posting_pSo0sD9Resolving_ptcfc", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settings9urlOpener03appD11EventPoster0kD8ResolverAeA16SettingsProtocol_p_So22FBSDKInternalURLOpener_pSo08FBSDKAppdL7Posting_pSo0sD9Resolving_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkNavigation", + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkResolver", + "printedName": "AppLinkResolver", + "children": [ + { + "kind": "Var", + "name": "cachedAppLinks", + "printedName": "cachedAppLinks", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(py)cachedAppLinks", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)cachedAppLinks", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)setCachedAppLinks:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "appLink", + "printedName": "appLink(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)appLinkFromURL:handler:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC03appD04from7handlery10Foundation3URLV_yAA0cD0CSg_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "appLinkFromURL:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appLinks", + "printedName": "appLinks(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Foundation.URL : FBSDKCoreKit.AppLink], Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([Foundation.URL : FBSDKCoreKit.AppLink], Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Foundation.URL : FBSDKCoreKit.AppLink]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)appLinksFrom:handler:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC8appLinks4from7handlerySay10Foundation3URLVG_ySDyAiA0cD0CG_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAppLink", + "printedName": "buildAppLink(for:result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)buildAppLinkFor:result:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC05buildcD03for6resultAA0cD0C10Foundation3URLV_SDySSSDySSypGGtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolver", + "printedName": "FBSDKCoreKit.AppLinkResolver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)init", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "requestBuilder", + "printedName": "requestBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "clientTokenProvider", + "printedName": "clientTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(requestBuilder:clientTokenProvider:accessTokenProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + }, + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilder19clientTokenProvider06accesskL0AESo08FBSDKAppdE15RequestBuilding_p_So011FBSDKClientK9Providing_pSo011FBSDKAccesskR0_pXptcfc", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilder19clientTokenProvider06accesskL0AESo08FBSDKAppdE15RequestBuilding_p_So011FBSDKClientK9Providing_pSo011FBSDKAccesskR0_pXptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkResolver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkResolverRequestBuilder", + "printedName": "AppLinkResolverRequestBuilder", + "children": [ + { + "kind": "Var", + "name": "userInterfaceIdiom", + "printedName": "userInterfaceIdiom", + "children": [ + { + "kind": "TypeNominal", + "name": "UIUserInterfaceIdiom", + "printedName": "UIKit.UIUserInterfaceIdiom", + "usr": "c:@E@UIUserInterfaceIdiom" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiom33_D2EA324685EEF2BCFBEFEB3B7F7BA944LLSo06UIUseriJ0Vvp", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiom33_D2EA324685EEF2BCFBEFEB3B7F7BA944LLSo06UIUseriJ0Vvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userInterfaceIdiom:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolverRequestBuilder", + "printedName": "FBSDKCoreKit.AppLinkResolverRequestBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder" + }, + { + "kind": "TypeNominal", + "name": "UIUserInterfaceIdiom", + "printedName": "UIKit.UIUserInterfaceIdiom", + "hasDefaultArg": true, + "usr": "c:@E@UIUserInterfaceIdiom" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiomACSo06UIUseriJ0V_tcfc", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiomACSo06UIUseriJ0V_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "request", + "printedName": "request(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestProtocol", + "printedName": "FBSDKCoreKit.GraphRequestProtocol", + "usr": "c:objc(pl)FBSDKGraphRequest" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)requestForURLs:", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC7request3forSo010FBSDKGraphF0_pSay10Foundation3URLVG_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requestForURLs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getIdiomSpecificField", + "printedName": "getIdiomSpecificField()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)getIdiomSpecificField", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC21getIdiomSpecificFieldSSSgyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "getIdiomSpecificField", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolverRequestBuilder", + "printedName": "FBSDKCoreKit.AppLinkResolverRequestBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)init", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkTarget", + "printedName": "AppLinkTarget", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)URL", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10Foundation3URLVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "URL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)URL", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10Foundation3URLVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "URL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appStoreId", + "printedName": "appStoreId", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)appStoreId", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC10appStoreIdSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appStoreId", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)appStoreId", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC10appStoreIdSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "appStoreId", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appName", + "printedName": "appName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)appName", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC7appNameSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appName", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)appName", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC7appNameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "appName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)initWithURL:appStoreId:appName:", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10appStoreId0G4NameAC10Foundation3URLVSg_SSSgSStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithURL:appStoreId:appName:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "appLinkTargetWithURL", + "printedName": "appLinkTargetWithURL(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(cm)appLinkTargetWithURL:appStoreId:appName:", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC03appdE7WithURL3url0F7StoreId0F4NameAC10Foundation0H0VSg_SSSgSStFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "appLinkTargetWithURL:appStoreId:appName:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)init", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkTarget", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkTargetFactory", + "printedName": "AppLinkTargetFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLinkTarget", + "printedName": "createAppLinkTarget(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC06createcdE03url10appStoreId0I4NameSo08FBSDKAppdE0_p10Foundation3URLVSg_SSSgSStF", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryC06createcdE03url10appStoreId0I4NameSo08FBSDKAppdE0_p10Foundation3URLVSg_SSSgSStF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkTargetWithURL:appStoreId:appName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetFactory", + "printedName": "FBSDKCoreKit.AppLinkTargetFactory", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkURLFactory", + "printedName": "AppLinkURLFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLinkURL", + "printedName": "createAppLinkURL(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLProtocol", + "printedName": "FBSDKCoreKit._AppLinkURLProtocol", + "usr": "c:objc(pl)FBSDKAppLinkURL" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory(im)createAppLinkURLWithURL:", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryC06createcD3URL4withSo08FBSDKAppdG0_p10Foundation0G0V_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkURLWithURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkURLFactory", + "printedName": "FBSDKCoreKit.AppLinkURLFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory(im)init", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ApplicationDelegate", + "printedName": "ApplicationDelegate", + "children": [ + { + "kind": "Var", + "name": "applicationObservers", + "printedName": "applicationObservers", + "children": [ + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)applicationObservers", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationObservers", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setApplicationObservers:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "components", + "printedName": "components", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvp", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvg", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurator", + "printedName": "configurator", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvp", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvg", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAppLaunched", + "printedName": "isAppLaunched", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)isAppLaunched", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)isAppLaunched", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setIsAppLaunched:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "applicationState", + "printedName": "applicationState", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)applicationState", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationState", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setApplicationState:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0VvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(cpy)sharedInstance", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "sharedInstance", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(cm)sharedInstance", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)init", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(components:configurator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + }, + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + }, + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10components12configuratorAcA04CoreB10ComponentsC_AA0gB11Configuring_ptcfc", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10components12configuratorAcA04CoreB10ComponentsC_AA0gB11Configuring_ptcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "initializeSDK", + "printedName": "initializeSDK()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)initializeSDK", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13initializeSDKyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initializeSDK", + "printedName": "initializeSDK(launchOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)initializeSDKWithLaunchOptions:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13initializeSDK13launchOptionsySDySo019UIApplicationLaunchH3KeyaypGSg_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:continue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "NSUserActivity", + "printedName": "Foundation.NSUserActivity", + "usr": "c:objc(cs)NSUserActivity" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:continueUserActivity:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_8continueSbSo13UIApplicationC_So14NSUserActivityCtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:continueUserActivity:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.OpenURLOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenURLOptionsKey", + "printedName": "UIKit.UIApplication.OpenURLOptionsKey", + "usr": "c:@T@UIApplicationOpenURLOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:openURL:options:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:options:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_4open06sourceC010annotationSbSo13UIApplicationC_10Foundation3URLVSSSgypSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:didFinishLaunchingWithOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:didFinishLaunchingWithOptions:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_29didFinishLaunchingWithOptionsSbSo13UIApplicationC_SDySo0k6LaunchJ3KeyaypGSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC29applicationDidEnterBackgroundyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Notification?", + "children": [ + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationDidBecomeActive:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC26applicationDidBecomeActiveyy10Foundation12NotificationVSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationWillResignActive", + "printedName": "applicationWillResignActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationWillResignActive:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC27applicationWillResignActiveyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addObserver", + "printedName": "addObserver(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)addObserver:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11addObserveryySo25FBSDKApplicationObserving_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeObserver", + "printedName": "removeObserver(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)removeObserver:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC14removeObserveryySo25FBSDKApplicationObserving_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logSDKInitialize", + "printedName": "logSDKInitialize()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)logSDKInitialize", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16logSDKInitializeyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKApplicationDelegate", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "AuthenticationServices", + "printedName": "AuthenticationServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationSessionProtocol", + "printedName": "AuthenticationSessionProtocol", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:callbackURLScheme:completionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP3url17callbackURLScheme17completionHandlerx10Foundation3URLV_SSSgyAISg_s5Error_pSgtctcfc", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP3url17callbackURLScheme17completionHandlerx10Foundation3URLV_SSSgyAISg_s5Error_pSgtctcfc", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP5startSbyF", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP5startSbyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP6cancelyyF", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP6cancelyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "presentationContextProvider", + "printedName": "presentationContextProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvp", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "intro_iOS": "13.0", + "declAttributes": [ + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvg", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvs", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvM", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "intro_iOS": "13.0", + "declAttributes": [ + "Available" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationSessionState", + "printedName": "AuthenticationSessionState", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO4noneyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO4noneyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "started", + "printedName": "started", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO7startedyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO7startedyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "showAlert", + "printedName": "showAlert", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO9showAlertyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9showAlertyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "showWebBrowser", + "printedName": "showWebBrowser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO14showWebBrowseryA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO14showWebBrowseryA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "canceledBySystem", + "printedName": "canceledBySystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO16canceledBySystemyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO16canceledBySystemyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26AuthenticationSessionStateO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenClaims", + "printedName": "AuthenticationTokenClaims", + "children": [ + { + "kind": "Var", + "name": "jti", + "printedName": "jti", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iss", + "printedName": "iss", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aud", + "printedName": "aud", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exp", + "printedName": "exp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iat", + "printedName": "iat", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sub", + "printedName": "sub", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "givenName", + "printedName": "givenName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "familyName", + "printedName": "familyName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "picture", + "printedName": "picture", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userFriends", + "printedName": "userFriends", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvp", + "moduleName": "FBSDKCoreKit", + "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userBirthday", + "printedName": "userBirthday", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userAgeRange", + "printedName": "userAgeRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userHometown", + "printedName": "userHometown", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userLocation", + "printedName": "userLocation", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userGender", + "printedName": "userGender", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userLink", + "printedName": "userLink", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(encodedClaims:nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "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@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims(im)initWithEncodedClaims:nonce:", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC07encodedE05nonceACSgSS_SStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEncodedClaims:nonce:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jti:iss:aud:nonce:exp:iat:sub:name:givenName:middleName:familyName:email:picture:userFriends:userBirthday:userAgeRange:userHometown:userLocation:userGender:userLink:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "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 : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "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" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3jti3iss3aud5nonce3exp3iat3sub4name9givenName06middleO006familyO05email7picture11userFriends0T8Birthday0T8AgeRange0T8Hometown0T8Location0T6Gender0T4LinkACSS_S3SS2dS2SSgA5XSaySSGSgAXSDySSSo8NSNumberCGSgSDyS2SGSgA4_A2Xtcfc", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jti3iss3aud5nonce3exp3iat3sub4name9givenName06middleO006familyO05email7picture11userFriends0T8Birthday0T8AgeRange0T8Hometown0T8Location0T6Gender0T4LinkACSS_S3SS2dS2SSgA5XSaySSGSgAXSDySSSo8NSNumberCGSgSDyS2SGSgA4_A2Xtcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims(im)init", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAeA16SettingsProtocol_p_tcfc", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAeA16SettingsProtocol_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAuthenticationTokenClaims", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "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": "BackgroundEventLogger", + "printedName": "BackgroundEventLogger", + "children": [ + { + "kind": "Var", + "name": "isNewBackgroundRefresh", + "printedName": "isNewBackgroundRefresh", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvp", + "moduleName": "FBSDKCoreKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logBackgroundRefreshStatus", + "printedName": "logBackgroundRefreshStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBackgroundRefreshStatus", + "printedName": "UIKit.UIBackgroundRefreshStatus", + "usr": "c:@E@UIBackgroundRefreshStatus" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "moduleName": "FBSDKCoreKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogger", + "printedName": "FBSDKCoreKit.BackgroundEventLogger", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerVACycfc", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerVACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(infoDictionaryProvider:eventLogger:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProvider05eventE0AESo09FBSDKInfoI9Providing_p_So17FBSDKEventLogging_ptcfc", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProvider05eventE0AESo09FBSDKInfoI9Providing_p_So17FBSDKEventLogging_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BackgroundEventLogging", + "printedName": "BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "BackgroundEventLogging", + "printedName": "BackgroundEventLogging", + "children": [ + { + "kind": "Function", + "name": "logBackgroundRefreshStatus", + "printedName": "logBackgroundRefreshStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBackgroundRefreshStatus", + "printedName": "UIKit.UIBackgroundRefreshStatus", + "usr": "c:@E@UIBackgroundRefreshStatus" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BackgroundEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BridgeAPIResponseCreating", + "printedName": "BridgeAPIResponseCreating", + "children": [ + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:responseURL:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponseCancelled", + "printedName": "createResponseCancelled(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "CAPIReporter", + "printedName": "CAPIReporter", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)enable", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP6enableyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(factory:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)configureWithFactory:settings:", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP9configure7factory8settingsySo24FBSDKGraphRequestFactory_p_AA16SettingsProtocol_ptF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordEvent", + "printedName": "recordEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)recordEvent:", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP11recordEventyySDySSypGF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKCAPIReporter", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitComponents", + "printedName": "CoreKitComponents", + "children": [ + { + "kind": "Var", + "name": "accessTokenExpirer", + "printedName": "accessTokenExpirer", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDProvider", + "printedName": "advertiserIDProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemNetworker", + "printedName": "aemNetworker", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemReporter", + "printedName": "aemReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventParametersExtractor", + "printedName": "appEventParametersExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 5, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEvents", + "printedName": "appEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 6, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsConfigurationProvider", + "printedName": "appEventsConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 7, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsDropDeterminer", + "printedName": "appEventsDropDeterminer", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 8, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsStateProvider", + "printedName": "appEventsStateProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 9, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsStateStore", + "printedName": "appEventsStateStore", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 10, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsUtility", + "printedName": "appEventsUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 11, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkEventPoster", + "printedName": "appLinkEventPoster", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 12, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkFactory", + "printedName": "appLinkFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 13, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkResolver", + "printedName": "appLinkResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 14, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkTargetFactory", + "printedName": "appLinkTargetFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 15, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkURLFactory", + "printedName": "appLinkURLFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 16, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "atePublisherFactory", + "printedName": "atePublisherFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 17, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenWallet", + "printedName": "authenticationTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 18, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backgroundEventLogger", + "printedName": "backgroundEventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 19, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "capiReporter", + "printedName": "capiReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 20, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codelessIndexer", + "printedName": "codelessIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 21, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crashHandler", + "printedName": "crashHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 22, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crashObserver", + "printedName": "crashObserver", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 23, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataExtractor", + "printedName": "dataExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 24, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultDataStore", + "printedName": "defaultDataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 25, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deviceInformationProvider", + "printedName": "deviceInformationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 26, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dialogConfigurationMapBuilder", + "printedName": "dialogConfigurationMapBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 27, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorConfigurationProvider", + "printedName": "errorConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 28, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 29, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorReporter", + "printedName": "errorReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 30, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventDeactivationManager", + "printedName": "eventDeactivationManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 31, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 32, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "featureChecker", + "printedName": "featureChecker", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 33, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "featureExtractor", + "printedName": "featureExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 34, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileManager", + "printedName": "fileManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 35, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 36, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "getApplicationActivationNotifier", + "printedName": "getApplicationActivationNotifier", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 37, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestConnectionFactory", + "printedName": "graphRequestConnectionFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 38, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 39, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionLoggerFactory", + "printedName": "impressionLoggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 40, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 41, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "internalURLOpener", + "printedName": "internalURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 42, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 43, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 44, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggerFactory", + "printedName": "loggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 45, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macCatalystDeterminator", + "printedName": "macCatalystDeterminator", + "children": [ + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 46, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataIndexer", + "printedName": "metadataIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 47, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelManager", + "printedName": "modelManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 48, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 49, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "operatingSystemVersionComparer", + "printedName": "operatingSystemVersionComparer", + "children": [ + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 50, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paymentObserver", + "printedName": "paymentObserver", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 51, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "piggybackManager", + "printedName": "piggybackManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 52, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "profileSetter", + "printedName": "profileSetter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 53, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "restrictiveDataFilterManager", + "printedName": "restrictiveDataFilterManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 54, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rulesFromKeyProvider", + "printedName": "rulesFromKeyProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 55, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 56, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionDataTaskProvider", + "printedName": "sessionDataTaskProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 57, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 58, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "skAdNetworkReporter", + "printedName": "skAdNetworkReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 59, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "suggestedEventsIndexer", + "printedName": "suggestedEventsIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 60, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swizzler", + "printedName": "swizzler", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 61, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeSpentRecorder", + "printedName": "timeSpentRecorder", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 62, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokenCache", + "printedName": "tokenCache", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 63, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlHoster", + "printedName": "urlHoster", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 64, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlSessionProxyFactory", + "printedName": "urlSessionProxyFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 65, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userDataStore", + "printedName": "userDataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 66, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userIDProvider", + "printedName": "userIDProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 67, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webViewProvider", + "printedName": "webViewProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 68, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemManager", + "printedName": "aemManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 69, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "protectedModeManager", + "printedName": "protectedModeManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 70, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macaRuleMatchingManager", + "printedName": "macaRuleMatchingManager", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 71, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenExpirer:accessTokenWallet:advertiserIDProvider:aemNetworker:aemReporter:appEventParametersExtractor:appEvents:appEventsConfigurationProvider:appEventsDropDeterminer:appEventsStateProvider:appEventsStateStore:appEventsUtility:appLinkEventPoster:appLinkFactory:appLinkResolver:appLinkTargetFactory:appLinkURLFactory:atePublisherFactory:authenticationTokenWallet:backgroundEventLogger:capiReporter:codelessIndexer:crashHandler:crashObserver:dataExtractor:defaultDataStore:deviceInformationProvider:dialogConfigurationMapBuilder:errorConfigurationProvider:errorFactory:errorReporter:eventDeactivationManager:eventLogger:featureChecker:featureExtractor:fileManager:gateKeeperManager:getApplicationActivationNotifier:graphRequestConnectionFactory:graphRequestFactory:impressionLoggerFactory:infoDictionaryProvider:internalURLOpener:internalUtility:logger:loggerFactory:macCatalystDeterminator:metadataIndexer:modelManager:notificationCenter:operatingSystemVersionComparer:paymentObserver:piggybackManager:profileSetter:restrictiveDataFilterManager:rulesFromKeyProvider:serverConfigurationProvider:sessionDataTaskProvider:settings:skAdNetworkReporter:suggestedEventsIndexer:swizzler:timeSpentRecorder:tokenCache:urlHoster:urlSessionProxyFactory:userDataStore:userIDProvider:webViewProvider:aemManager:protectedModeManager:macaRuleMatchingManager:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + }, + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + }, + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + }, + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + }, + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + }, + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + }, + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + }, + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + }, + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + }, + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + }, + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + }, + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + }, + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + }, + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + }, + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + }, + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + }, + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + }, + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirer0eF6Wallet20advertiserIDProvider12aemNetworker0K8Reporter27appEventParametersExtractor0N6Events0nR21ConfigurationProvider0nR14DropDeterminer0nr5StateT00nrW5Store0nR7Utility0n4LinkO6Poster0nZ7Factory0nZ8Resolver0nZ13TargetFactory0nZ10URLFactory19atePublisherFactory014authenticationfH0010backgroundO6Logger04capiM015codelessIndexer12crashHandler13crashObserver04dataQ0011defaultDataX0017deviceInformationT006dialogS10MapBuilder05errorsT012errorFactory05errorM024eventDeactivationManager11eventLogger14featureChecker07featureQ011fileManager17gateKeeperManager32getApplicationActivationNotifier29graphRequestConnectionFactory19graphRequestFactory23impressionLoggerFactory014infoDictionaryT017internalURLOpener08internalY06logger13loggerFactory23macCatalystDeterminator15metadataIndexer12modelManager18notificationCenter30operatingSystemVersionComparer15paymentObserver16piggybackManager13profileSetter28restrictiveDataFilterManager012rulesFromKeyT006serversT0015sessionDataTaskT08settings011skAdNetworkM009suggestedR7Indexer8swizzler17timeSpentRecorder10tokenCache9urlHoster22urlSessionProxyFactory08userDataX004userJ007webViewT00K7Manager20protectedModeManager23macaRuleMatchingManagerAcA07_AccessF8Expiring_p_So011FBSDKAccessF9Providing_So25FBSDKTokenStringProvidingpXpSo26FBSDKAdvertiserIDProviding_p8FBAEMKit13AEMNetworking_pSgAA20_AEMReporterProtocol_pXpSo08FBSDKAppoP10Extracting_pSo17FBSDKEventLogging_So08FBSDKAppR11ConfiguringSo26FBSDKApplicationActivatingSo34FBSDKApplicationLifecycleObservingSo016FBSDKApplicationW7SettingSo30FBSDKSourceApplicationTrackingpSo08FBSDKApprS9Providing_pSo08FBSDKAppoU11Determining_pSo08FBSDKApprW9Providing_pSo08FBSDKApprW10Persisting_pSoA64__SoA56_So08FBSDKApprY0So21FBSDKLoggingNotifyingpSo08FBSDKAppzO7Posting_pSo08FBSDKAppZ8Creating_pSo08FBSDKAppZ9Resolving_pSo08FBSDKAppZ14TargetCreating_pSo08FBSDKAppZ11URLCreating_pSo25FBSDKATEPublisherCreating_pSo019FBSDKAuthenticationF9Providing_pXpAA010BackgroundO7Logging_pAA12CAPIReporter_pSo21FBSDKCodelessIndexing_pXpSo17FBSDKCrashHandler_pSo19FBSDKCrashObserving_pSo23FBSDKFileDataExtracting_pXpSo19FBSDKDataPersisting_pSo31FBSDKDeviceInformationProviding_pSo011FBSDKDialogS11MapBuilding_pSo010FBSDKErrorS9Providing_pSo18FBSDKErrorCreating_pSo19FBSDKErrorReporting_pSo08FBSDKAppR19ParameterProcessing_So21FBSDKEventsProcessingpSoA57__pSo20FBSDKFeatureChecking_So21FBSDKFeatureDisablingpSo22FBSDKFeatureExtracting_pXpSo17FBSDKFileManaging_pSo23FBSDKGateKeeperManaging_pXpypycSo34FBSDKGraphRequestConnectionFactory_pSo24FBSDKGraphRequestFactory_pSo28FBSDKImpressionLoggerFactory_pSo28FBSDKInfoDictionaryProviding_pSo22FBSDKInternalURLOpener_pSo013FBSDKInternalY0_pSo12FBSDKLogging_pXpSo21__FBSDKLoggerCreating_pSo27FBSDKMacCatalystDetermining_pSo21FBSDKMetadataIndexing_pSo20FBSDKEventProcessing_So014FBSDKIntegrityp9ProcessorT0pSo25_FBSDKNotificationPosting_So27FBSDKNotificationDeliveringpSo36FBSDKOperatingSystemVersionComparing_pSo21FBSDKPaymentObserving_pSo34FBSDKGraphRequestPiggybackManaging_pAA16ProfileProviding_pXpSoA88__SoA89_pSo017FBSDKRulesFromKeyT0_pSo011FBSDKServerS9Providing_pSo24FBSDKURLSessionProviding_pSo20FBSDKSettingsLogging_AA16SettingsProtocolpA52_20SKAdNetworkReporting_So08FBSDKApprM0pSgSo014FBSDKSuggestedR7Indexer_pSo14FBSDKSwizzling_pXpSoA62__So23FBSDKTimeSpentRecordingpSo17FBSDKTokenCaching_pSo15FBSDKURLHosting_pSo29FBSDKURLSessionProxyProviding_pSo23FBSDKUserDataPersisting_pSo20FBSDKUserIDProviding_pSo21FBSDKWebViewProviding_pSo14FBSDKAutoSetup_pSoA88__pAA16MACARuleMatching_ptcfc", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirer0eF6Wallet20advertiserIDProvider12aemNetworker0K8Reporter27appEventParametersExtractor0N6Events0nR21ConfigurationProvider0nR14DropDeterminer0nr5StateT00nrW5Store0nR7Utility0n4LinkO6Poster0nZ7Factory0nZ8Resolver0nZ13TargetFactory0nZ10URLFactory19atePublisherFactory014authenticationfH0010backgroundO6Logger04capiM015codelessIndexer12crashHandler13crashObserver04dataQ0011defaultDataX0017deviceInformationT006dialogS10MapBuilder05errorsT012errorFactory05errorM024eventDeactivationManager11eventLogger14featureChecker07featureQ011fileManager17gateKeeperManager32getApplicationActivationNotifier29graphRequestConnectionFactory19graphRequestFactory23impressionLoggerFactory014infoDictionaryT017internalURLOpener08internalY06logger13loggerFactory23macCatalystDeterminator15metadataIndexer12modelManager18notificationCenter30operatingSystemVersionComparer15paymentObserver16piggybackManager13profileSetter28restrictiveDataFilterManager012rulesFromKeyT006serversT0015sessionDataTaskT08settings011skAdNetworkM009suggestedR7Indexer8swizzler17timeSpentRecorder10tokenCache9urlHoster22urlSessionProxyFactory08userDataX004userJ007webViewT00K7Manager20protectedModeManager23macaRuleMatchingManagerAcA07_AccessF8Expiring_p_So011FBSDKAccessF9Providing_So25FBSDKTokenStringProvidingpXpSo26FBSDKAdvertiserIDProviding_p8FBAEMKit13AEMNetworking_pSgAA20_AEMReporterProtocol_pXpSo08FBSDKAppoP10Extracting_pSo17FBSDKEventLogging_So08FBSDKAppR11ConfiguringSo26FBSDKApplicationActivatingSo34FBSDKApplicationLifecycleObservingSo016FBSDKApplicationW7SettingSo30FBSDKSourceApplicationTrackingpSo08FBSDKApprS9Providing_pSo08FBSDKAppoU11Determining_pSo08FBSDKApprW9Providing_pSo08FBSDKApprW10Persisting_pSoA64__SoA56_So08FBSDKApprY0So21FBSDKLoggingNotifyingpSo08FBSDKAppzO7Posting_pSo08FBSDKAppZ8Creating_pSo08FBSDKAppZ9Resolving_pSo08FBSDKAppZ14TargetCreating_pSo08FBSDKAppZ11URLCreating_pSo25FBSDKATEPublisherCreating_pSo019FBSDKAuthenticationF9Providing_pXpAA010BackgroundO7Logging_pAA12CAPIReporter_pSo21FBSDKCodelessIndexing_pXpSo17FBSDKCrashHandler_pSo19FBSDKCrashObserving_pSo23FBSDKFileDataExtracting_pXpSo19FBSDKDataPersisting_pSo31FBSDKDeviceInformationProviding_pSo011FBSDKDialogS11MapBuilding_pSo010FBSDKErrorS9Providing_pSo18FBSDKErrorCreating_pSo19FBSDKErrorReporting_pSo08FBSDKAppR19ParameterProcessing_So21FBSDKEventsProcessingpSoA57__pSo20FBSDKFeatureChecking_So21FBSDKFeatureDisablingpSo22FBSDKFeatureExtracting_pXpSo17FBSDKFileManaging_pSo23FBSDKGateKeeperManaging_pXpypycSo34FBSDKGraphRequestConnectionFactory_pSo24FBSDKGraphRequestFactory_pSo28FBSDKImpressionLoggerFactory_pSo28FBSDKInfoDictionaryProviding_pSo22FBSDKInternalURLOpener_pSo013FBSDKInternalY0_pSo12FBSDKLogging_pXpSo21__FBSDKLoggerCreating_pSo27FBSDKMacCatalystDetermining_pSo21FBSDKMetadataIndexing_pSo20FBSDKEventProcessing_So014FBSDKIntegrityp9ProcessorT0pSo25_FBSDKNotificationPosting_So27FBSDKNotificationDeliveringpSo36FBSDKOperatingSystemVersionComparing_pSo21FBSDKPaymentObserving_pSo34FBSDKGraphRequestPiggybackManaging_pAA16ProfileProviding_pXpSoA88__SoA89_pSo017FBSDKRulesFromKeyT0_pSo011FBSDKServerS9Providing_pSo24FBSDKURLSessionProviding_pSo20FBSDKSettingsLogging_AA16SettingsProtocolpA52_20SKAdNetworkReporting_So08FBSDKApprM0pSgSo014FBSDKSuggestedR7Indexer_pSo14FBSDKSwizzling_pXpSoA62__So23FBSDKTimeSpentRecordingpSo17FBSDKTokenCaching_pSo15FBSDKURLHosting_pSo29FBSDKURLSessionProxyProviding_pSo23FBSDKUserDataPersisting_pSo20FBSDKUserIDProviding_pSo21FBSDKWebViewProviding_pSo14FBSDKAutoSetup_pSoA88__pAA16MACARuleMatching_ptcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC7defaultACvpZ", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC7defaultACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC7defaultACvgZ", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC7defaultACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Testable", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitConfigurator", + "printedName": "CoreKitConfigurator", + "children": [ + { + "kind": "Var", + "name": "components", + "printedName": "components", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvp", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvg", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(components:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfigurator", + "printedName": "FBSDKCoreKit.CoreKitConfigurator", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC" + }, + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAcA0cB10ComponentsC_tcfc", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAcA0cB10ComponentsC_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "performConfiguration", + "printedName": "performConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC20performConfigurationyyF", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC20performConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CoreKitConfiguring", + "printedName": "CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitConfiguring", + "printedName": "CoreKitConfiguring", + "children": [ + { + "kind": "Function", + "name": "performConfiguration", + "printedName": "performConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP20performConfigurationyyF", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP20performConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CoreKitConfiguring>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreUIApplication", + "printedName": "CoreUIApplication", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(cpy)shared", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC6sharedSo22FBSDKInternalURLOpener_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(cm)shared", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC6sharedSo22FBSDKInternalURLOpener_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreUIApplication", + "printedName": "FBSDKCoreKit.CoreUIApplication", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(im)init", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "AssociatedType", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "AssociatedType", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit16DependentAsValueP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValueP15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE15getDependencies0eG0QzyKF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ValueDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ValueDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EventDeactivationManager", + "printedName": "EventDeactivationManager", + "children": [ + { + "kind": "Var", + "name": "isEventDeactivationEnabled", + "printedName": "isEventDeactivationEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC02iscD7Enabled33_14ACE7546C2C147776F91B107E749DCALLSbvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC02iscD7Enabled33_14ACE7546C2C147776F91B107E749DCALLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "deactivatedEvents", + "printedName": "deactivatedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC17deactivatedEvents33_14ACE7546C2C147776F91B107E749DCALLShySSGvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC17deactivatedEvents33_14ACE7546C2C147776F91B107E749DCALLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "eventsWithDeactivatedParameters", + "printedName": "eventsWithDeactivatedParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.EventDeactivationManager.DeactivatedEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "DeactivatedEvent", + "printedName": "FBSDKCoreKit.EventDeactivationManager.DeactivatedEvent", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC011DeactivatedC033_14ACE7546C2C147776F91B107E749DCALLV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC31eventsWithDeactivatedParameters33_14ACE7546C2C147776F91B107E749DCALLSayAC0hC0AELLVGvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC31eventsWithDeactivatedParameters33_14ACE7546C2C147776F91B107E749DCALLSayAC0hC0AELLVGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC6enableyyF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "$__lazy_storage_$_enableOnce", + "printedName": "$__lazy_storage_$_enableOnce", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC28$__lazy_storage_$_enableOnce33_14ACE7546C2C147776F91B107E749DCALLyycSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC28$__lazy_storage_$_enableOnce33_14ACE7546C2C147776F91B107E749DCALLyycSgvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final" + ], + "fixedbinaryorder": 5, + "hasStorage": true + }, + { + "kind": "Function", + "name": "processEvents", + "printedName": "processEvents(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSMutableArray", + "printedName": "Foundation.NSMutableArray", + "usr": "c:objc(cs)NSMutableArray" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC13processEventsyySo14NSMutableArrayCF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC13processEventsyySo14NSMutableArrayCF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processEvents:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEvents.Name?", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC17processParameters_9eventNameSDySo08FBSDKAppc9ParameterI0aypGSgAI_So0jcI0aSgtF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC17processParameters_9eventNameSDySo08FBSDKAppc9ParameterI0aypGSgAI_So0jcI0aSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:eventName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDeactivationManager", + "printedName": "FBSDKCoreKit.EventDeactivationManager", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerCACycfc", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBIcon", + "printedName": "FBIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit6FBIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4sizeSo7UIImageCSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:scale:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5scaleSo7UIImageCSgSo6CGSizeV_12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:color:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:color:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5colorSo7UIImageCSgSo6CGSizeV_So7UIColorCtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:scale:color:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:scale:color:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5scale5colorSo7UIImageCSgSo6CGSizeV_12CoreGraphics7CGFloatVSo7UIColorCtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBIcon", + "printedName": "FBSDKCoreKit.FBIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)init", + "mangledName": "$s12FBSDKCoreKit6FBIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "mangledName": "$s12FBSDKCoreKit6FBIconC", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKIcon", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBProfilePictureView", + "printedName": "FBProfilePictureView", + "children": [ + { + "kind": "Var", + "name": "pictureMode", + "printedName": "pictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)pictureMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)pictureMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPictureMode:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0OvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0OvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profileID", + "printedName": "profileID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)profileID", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)profileID", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setProfileID:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentState", + "printedName": "currentState", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvp", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvg", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasProfileImage", + "printedName": "hasProfileImage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)hasProfileImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)hasProfileImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setHasProfileImage:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastState", + "printedName": "lastState", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "needsImageUpdate", + "printedName": "needsImageUpdate", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)needsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)needsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setNeedsImageUpdate:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeholderImageIsValid", + "printedName": "placeholderImageIsValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)placeholderImageIsValid", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)placeholderImageIsValid", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPlaceholderImageIsValid:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageView", + "printedName": "imageView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)imageView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)imageView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setImageView:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0CvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0CvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bounds", + "printedName": "bounds", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)bounds", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvp", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "bounds", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)bounds", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvg", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "bounds", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setBounds:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvs", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "setBounds:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentMode", + "printedName": "contentMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)contentMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvp", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "contentMode", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)contentMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvg", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "contentMode", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setContentMode:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvs", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "setContentMode:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0VvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:profile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWith:profile:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5frame7profileACSo6CGRectV_AA7ProfileCSgtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWith:profile:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithProfile:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC7profileAcA7ProfileCSg_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithProfile:", + "declAttributes": [ + "Custom", + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithFrame:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "Custom", + "Override", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBProfilePictureView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithCoder:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "Custom", + "Required", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setNeedsImageUpdate", + "printedName": "setNeedsImageUpdate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setNeedsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC19setNeedsImageUpdateyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "performInitialConfiguration", + "printedName": "performInitialConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)performInitialConfiguration", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC27performInitialConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accessTokenDidChange", + "printedName": "accessTokenDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)accessTokenDidChange:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC20accessTokenDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profileDidChange", + "printedName": "profileDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)profileDidChange:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16profileDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImageWithAccessToken", + "printedName": "updateImageWithAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImageWithAccessToken", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC26updateImageWithAccessTokenyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImageWithProfile", + "printedName": "updateImageWithProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImageWithProfile", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC22updateImageWithProfileyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetImage", + "printedName": "fetchAndSetImage(with:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC16fetchAndSetImage4with5statey10Foundation3URLV_AA07ProfiledE5StateVtF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16fetchAndSetImage4with5statey10Foundation3URLV_AA07ProfiledE5StateVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldImageFit", + "printedName": "shouldImageFit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)shouldImageFit", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC14shouldImageFitSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageSize", + "printedName": "getImageSize(imageShouldFit:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)getImageSizeWithImageShouldFit:scale:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12getImageSize14imageShouldFit5scaleSo6CGSizeVSb_12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProfileImageURL", + "printedName": "getProfileImageURL(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC18getProfileImageURL5state10Foundation0I0VSgAA0gdE5StateV_tF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC18getProfileImageURL5state10Foundation0I0VSgAA0gdE5StateV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPlaceholderImage", + "printedName": "setPlaceholderImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPlaceholderImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC19setPlaceholderImageyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImage", + "printedName": "updateImage(data:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11updateImage4data5statey10Foundation4DataV_AA07ProfiledE5StateVtF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11updateImage4data5statey10Foundation4DataV_AA07ProfiledE5StateVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImage", + "printedName": "updateImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11updateImageyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfilePictureView", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)UIView", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventName", + "printedName": "AppEventName", + "children": [ + { + "kind": "Var", + "name": "unlockedAchievement", + "printedName": "unlockedAchievement", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO19unlockedAchievementyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO19unlockedAchievementyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "activatedApp", + "printedName": "activatedApp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO09activatedC0yA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO09activatedC0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "addedPaymentInfo", + "printedName": "addedPaymentInfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO16addedPaymentInfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO16addedPaymentInfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "addedToCart", + "printedName": "addedToCart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO11addedToCartyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO11addedToCartyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "addedToWishlist", + "printedName": "addedToWishlist", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO15addedToWishlistyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO15addedToWishlistyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "completedRegistration", + "printedName": "completedRegistration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO21completedRegistrationyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO21completedRegistrationyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "viewedContent", + "printedName": "viewedContent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO13viewedContentyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO13viewedContentyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "initiatedCheckout", + "printedName": "initiatedCheckout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO17initiatedCheckoutyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO17initiatedCheckoutyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "achievedLevel", + "printedName": "achievedLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO13achievedLevelyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO13achievedLevelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "purchased", + "printedName": "purchased", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO9purchasedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO9purchasedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "rated", + "printedName": "rated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO5ratedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO5ratedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "searched", + "printedName": "searched", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO8searchedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8searchedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "spentCredits", + "printedName": "spentCredits", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO12spentCreditsyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO12spentCreditsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "completedTutorial", + "printedName": "completedTutorial", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO17completedTutorialyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO17completedTutorialyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventName?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit12AppEventNameO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit12AppEventNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit12AppEventNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit12AppEventNameO", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CustomEventField", + "printedName": "CustomEventField", + "children": [ + { + "kind": "Var", + "name": "eventTime", + "printedName": "eventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO9eventTimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO9eventTimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO9eventNameyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO9eventNameyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "valueToSum", + "printedName": "valueToSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO10valueToSumyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO10valueToSumyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "contentIds", + "printedName": "contentIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO10contentIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO10contentIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contents", + "printedName": "contents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8contentsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8contentsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO11contentTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO11contentTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO11descriptionyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO11descriptionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "level", + "printedName": "level", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO5levelyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO5levelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "maxRatingValue", + "printedName": "maxRatingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO14maxRatingValueyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO14maxRatingValueyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "numItems", + "printedName": "numItems", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8numItemsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8numItemsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "paymentInfoAvailable", + "printedName": "paymentInfoAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO20paymentInfoAvailableyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO20paymentInfoAvailableyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "registrationMethod", + "printedName": "registrationMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO18registrationMethodyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO18registrationMethodyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "searchString", + "printedName": "searchString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO12searchStringyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO12searchStringyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO7successyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO7successyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "orderId", + "printedName": "orderId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO7orderIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO7orderIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "adType", + "printedName": "adType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO6adTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO6adTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8currencyyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8currencyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.CustomEventField?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit16CustomEventFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventType", + "printedName": "AppEventType", + "children": [ + { + "kind": "Var", + "name": "mobileAppInstall", + "printedName": "mobileAppInstall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO06mobileC7InstallyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO06mobileC7InstallyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO6customyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO6customyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO5otheryA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO5otheryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueACSS_tcfc", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit12AppEventTypeO", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventUserAndAppDataField", + "printedName": "AppEventUserAndAppDataField", + "children": [ + { + "kind": "Var", + "name": "anonId", + "printedName": "anonId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO6anonIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO6anonIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appUserId", + "printedName": "appUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO03appE2IdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO03appE2IdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "advertiserId", + "printedName": "advertiserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO12advertiserIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO12advertiserIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "pageId", + "printedName": "pageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO6pageIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO6pageIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "pageScopedUserId", + "printedName": "pageScopedUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO010pageScopedE2IdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO010pageScopedE2IdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO04userG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO04userG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "advTE", + "printedName": "advTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO5advTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO5advTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "appTE", + "printedName": "appTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO5appTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO5appTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "considerViews", + "printedName": "considerViews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO13considerViewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO13considerViewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "deviceToken", + "printedName": "deviceToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO11deviceTokenyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO11deviceTokenyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "extinfo", + "printedName": "extinfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO7extinfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO7extinfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "includeDwellData", + "printedName": "includeDwellData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeDwellG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeDwellG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "includeVideoData", + "printedName": "includeVideoData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeVideoG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeVideoG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "installReferrer", + "printedName": "installReferrer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO15installReferreryA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO15installReferreryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "installerPackage", + "printedName": "installerPackage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO16installerPackageyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO16installerPackageyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "receiptData", + "printedName": "receiptData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO07receiptG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO07receiptG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "urlSchemes", + "printedName": "urlSchemes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO10urlSchemesyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO10urlSchemesyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "campaignIds", + "printedName": "campaignIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO11campaignIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO11campaignIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPISection", + "printedName": "ConversionsAPISection", + "children": [ + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8userDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8userDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO7appDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO7appDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "customData", + "printedName": "customData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO10customDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO10customDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "customEvents", + "printedName": "customEvents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO12customEventsyA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO12customEventsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPICustomEventField", + "printedName": "ConversionsAPICustomEventField", + "children": [ + { + "kind": "Var", + "name": "valueToSum", + "printedName": "valueToSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO10valueToSumyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO10valueToSumyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "eventTime", + "printedName": "eventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventTimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventTimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventNameyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventNameyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "contentIds", + "printedName": "contentIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO10contentIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO10contentIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contents", + "printedName": "contents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8contentsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8contentsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO11contentTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO11contentTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO11descriptionyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO11descriptionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "level", + "printedName": "level", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO5levelyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO5levelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "maxRatingValue", + "printedName": "maxRatingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO14maxRatingValueyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO14maxRatingValueyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "numItems", + "printedName": "numItems", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8numItemsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8numItemsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "paymentInfoAvailable", + "printedName": "paymentInfoAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO20paymentInfoAvailableyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO20paymentInfoAvailableyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "registrationMethod", + "printedName": "registrationMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO18registrationMethodyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO18registrationMethodyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "searchString", + "printedName": "searchString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO12searchStringyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO12searchStringyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO7successyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO7successyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "orderId", + "printedName": "orderId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO7orderIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO7orderIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "adType", + "printedName": "adType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO6adTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO6adTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8currencyyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8currencyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "Var", + "name": "anonId", + "printedName": "anonId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6anonIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6anonIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "fbLoginId", + "printedName": "fbLoginId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO9fbLoginIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO9fbLoginIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "madid", + "printedName": "madid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5madidyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5madidyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "pageId", + "printedName": "pageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6pageIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6pageIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "pageScopedUserId", + "printedName": "pageScopedUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16pageScopedUserIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16pageScopedUserIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO04userG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO04userG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "advTE", + "printedName": "advTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5advTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5advTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "appTE", + "printedName": "appTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5appTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5appTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "considerViews", + "printedName": "considerViews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO13considerViewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO13considerViewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "deviceToken", + "printedName": "deviceToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11deviceTokenyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11deviceTokenyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "extinfo", + "printedName": "extinfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO7extinfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO7extinfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "includeDwellData", + "printedName": "includeDwellData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeDwellG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeDwellG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "includeVideoData", + "printedName": "includeVideoData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeVideoG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeVideoG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "installReferrer", + "printedName": "installReferrer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO15installReferreryA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO15installReferreryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "installerPackage", + "printedName": "installerPackage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16installerPackageyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16installerPackageyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "receiptData", + "printedName": "receiptData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO07receiptG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO07receiptG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "urlSchemes", + "printedName": "urlSchemes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO10urlSchemesyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO10urlSchemesyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "campaignIds", + "printedName": "campaignIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11campaignIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11campaignIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPIEventName", + "printedName": "ConversionsAPIEventName", + "children": [ + { + "kind": "Var", + "name": "achievementUnlocked", + "printedName": "achievementUnlocked", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO19achievementUnlockedyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO19achievementUnlockedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "activateApp", + "printedName": "activateApp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO11activateAppyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO11activateAppyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "addPaymentInfo", + "printedName": "addPaymentInfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO14addPaymentInfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO14addPaymentInfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "addToCart", + "printedName": "addToCart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO9addToCartyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO9addToCartyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "addToWishlist", + "printedName": "addToWishlist", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO13addToWishlistyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO13addToWishlistyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "completeRegistration", + "printedName": "completeRegistration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO20completeRegistrationyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO20completeRegistrationyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "viewContent", + "printedName": "viewContent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO11viewContentyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO11viewContentyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "initiateCheckout", + "printedName": "initiateCheckout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO16initiateCheckoutyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO16initiateCheckoutyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "levelAchieved", + "printedName": "levelAchieved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO13levelAchievedyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO13levelAchievedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "purchase", + "printedName": "purchase", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8purchaseyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8purchaseyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "rate", + "printedName": "rate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO4rateyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO4rateyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "search", + "printedName": "search", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO6searchyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO6searchyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "spentCredits", + "printedName": "spentCredits", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO12spentCreditsyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO12spentCreditsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "tutorialCompletion", + "printedName": "tutorialCompletion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO18tutorialCompletionyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO18tutorialCompletionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OtherEventConstants", + "printedName": "OtherEventConstants", + "children": [ + { + "kind": "Var", + "name": "event", + "printedName": "event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO5eventyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO5eventyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "actionSource", + "printedName": "actionSource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO12actionSourceyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO12actionSourceyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "app", + "printedName": "app", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO3appyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO3appyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "mobileAppInstall", + "printedName": "mobileAppInstall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO16mobileAppInstallyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO16mobileAppInstallyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "installEventTime", + "printedName": "installEventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO07installD4TimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO07installD4TimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.OtherEventConstants?", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventsConversionsAPITransformer", + "printedName": "AppEventsConversionsAPITransformer", + "children": [ + { + "kind": "TypeDecl", + "name": "SectionFieldMapping", + "printedName": "SectionFieldMapping", + "children": [ + { + "kind": "Var", + "name": "section", + "printedName": "section", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(section:field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7section5fieldAeA0E10APISectionO_AA0e10APIUserAndc4DataH0OSgtcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7section5fieldAeA0E10APISectionO_AA0e10APIUserAndc4DataH0OSgtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "topLevelTransformations", + "printedName": "topLevelTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventUserAndAppDataField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventUserAndAppDataField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SectionCustomEventFieldMapping", + "printedName": "SectionCustomEventFieldMapping", + "children": [ + { + "kind": "Var", + "name": "section", + "printedName": "section", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(section:field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7section5fieldAeA0E10APISectionOSg_AA0e9APICustomiJ0Otcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7section5fieldAeA0E10APISectionOSg_AA0e9APICustomiJ0Otcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "customEventTransformations", + "printedName": "customEventTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.CustomEventField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.CustomEventField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "standardEventTransformations", + "printedName": "standardEventTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventName : FBSDKCoreKit.ConversionsAPIEventName]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventName : FBSDKCoreKit.ConversionsAPIEventName]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DataProcessingParameterName", + "printedName": "DataProcessingParameterName", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7optionsyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7optionsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "country", + "printedName": "country", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7countryyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7countryyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO5stateyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO5stateyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ValueTransformationType", + "printedName": "ValueTransformationType", + "children": [ + { + "kind": "Var", + "name": "array", + "printedName": "array", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5arrayyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5arrayyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "bool", + "printedName": "bool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO4boolyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO4boolyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "int", + "printedName": "int", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO3intyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO3intyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5fieldAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5fieldAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0AESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0AESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "transformValue", + "printedName": "transformValue(field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO14transformValue5field5valueypSgSS_yptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO14transformValue5field5valueypSgSS_yptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "splitAppEventParameters", + "printedName": "splitAppEventParameters(from:userData:appData:restOfData:customEvents:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO05splitC15EventParameters4from8userData03appL006restOfL006customD0AA0cH4TypeOSgSDySSypG_AMzAMzAMzSayAMGztFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO05splitC15EventParameters4from8userData03appL006restOfL006customD0AA0cH4TypeOSgSDySSypG_AMzAMzAMzSayAMGztFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateAppData", + "printedName": "transformAndUpdateAppData(_:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdateC4Data_5field5valueySDySSypGz_AA0c9EventUserhcJ5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdateC4Data_5field5valueySDySSypGz_AA0c9EventUserhcJ5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateUserData", + "printedName": "transformAndUpdateUserData(_:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26transformAndUpdateUserData_5field5valueySDySSypGz_AA0c5EventjhcK5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26transformAndUpdateUserData_5field5valueySDySSypGz_AA0c5EventjhcK5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateAppAndUserData", + "printedName": "transformAndUpdateAppAndUserData(userData:appData:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdatecH8UserData04userK003appK05field5valueySDySSypGz_AIzAA0c5EventjhcK5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdatecH8UserData04userK003appK05field5valueySDySSypGz_AIzAA0c5EventjhcK5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformEventName", + "printedName": "transformEventName(from:)", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO18transformEventName4fromS2S_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO18transformEventName4fromS2S_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformEvents", + "printedName": "transformEvents(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO09transformD04fromSaySDySSypGGSgSS_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO09transformD04fromSaySDySSypGGSgSS_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineCommonFields", + "printedName": "combineCommonFields(userData:appData:restOfData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19combineCommonFields8userData03appK006restOfK0SDySSypGAH_A2HtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19combineCommonFields8userData03appK006restOfK0SDySSypGAH_A2HtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedDataForMobileAppInstall", + "printedName": "combineAllTransformedDataForMobileAppInstall(commonFields:eventTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO034combineAllTransformedDataForMobileC7Install12commonFields9eventTimeSaySDySSypGGSgAG_SiSgtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO034combineAllTransformedDataForMobileC7Install12commonFields9eventTimeSaySDySSypGGSgAG_SiSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedDataForCustom", + "printedName": "combineAllTransformedDataForCustom(commonFields:customEvents:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO34combineAllTransformedDataForCustom12commonFields06customD0SaySDySSypGGSgAG_AHtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO34combineAllTransformedDataForCustom12commonFields06customD0SaySDySSypGGSgAG_AHtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedData", + "printedName": "combineAllTransformedData(eventType:userData:appData:restOfData:customEvents:eventTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO25combineAllTransformedData9eventType04userJ003appJ006restOfJ006customD00K4TimeSaySDySSypGGSgAA0c5EventL0O_A3kLSiSgtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO25combineAllTransformedData9eventType04userJ003appJ006restOfJ006customD00K4TimeSaySDySSypGGSgAA0c5EventL0O_A3kLSiSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "conversionsAPICompatibleEvent", + "printedName": "conversionsAPICompatibleEvent(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO29conversionsAPICompatibleEvent4fromSaySDySSypGGSgAF_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO29conversionsAPICompatibleEvent4fromSaySDySSypGGSgAF_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "SettingsAPIFields", + "printedName": "SettingsAPIFields", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO3urlyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO3urlyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "enabled", + "printedName": "enabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO7enabledyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO7enabledyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "datasetID", + "printedName": "datasetID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO9datasetIDyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO9datasetIDyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "accessKey", + "printedName": "accessKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO9accessKeyyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO9accessKeyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsAPIFields?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKAppEventsCAPIManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(cpy)shared", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(cm)shared", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSDKGKEnabled", + "printedName": "isSDKGKEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)isSDKGKEnabled", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isSDKGKEnabled", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setIsSDKGKEnabled:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "factory", + "printedName": "factory", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)factory", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)factory", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setFactory:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)settings", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)settings", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setSettings:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configRefreshTimestamp", + "printedName": "configRefreshTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)configRefreshTimestamp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)configRefreshTimestamp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setConfigRefreshTimestamp:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isLoadingConfig", + "printedName": "isLoadingConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)isLoadingConfig", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isLoadingConfig", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setIsLoadingConfig:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "completionBlocks", + "printedName": "completionBlocks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvg", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvs", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)init", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(factory:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)configureWithFactory:settings:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC9configure7factory8settingsySo24FBSDKGraphRequestFactory_p_AA16SettingsProtocol_ptF", + "moduleName": "FBSDKCoreKit", + "objc_name": "configureWithFactory:settings:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)enable", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordEvent", + "printedName": "recordEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)recordEvent:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC11recordEventyySDySSypGF", + "moduleName": "FBSDKCoreKit", + "objc_name": "recordEvent:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(withBlock:)", + "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:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)loadWithBlock:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC4load9withBlockyySbc_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldRefresh", + "printedName": "shouldRefresh()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)shouldRefresh", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC13shouldRefreshSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRefreshTimestampValid", + "printedName": "isRefreshTimestampValid()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isRefreshTimestampValid", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC23isRefreshTimestampValidSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "executeBlocks", + "printedName": "executeBlocks(isEnabled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)executeBlocksWithIsEnabled:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC13executeBlocks9isEnabledySb_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CAPIReporter", + "printedName": "CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKTransformerGraphRequestFactory", + "children": [ + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)contentType", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11contentTypeSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)contentType", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11contentTypeSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeoutInterval", + "printedName": "timeoutInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)timeoutInterval", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15timeoutIntervalSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)timeoutInterval", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15timeoutIntervalSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxCachedEvents", + "printedName": "maxCachedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)maxCachedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15maxCachedEventsSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)maxCachedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15maxCachedEventsSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxProcessedEvents", + "printedName": "maxProcessedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)maxProcessedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18maxProcessedEventsSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)maxProcessedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18maxProcessedEventsSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "retryEventsHttpResponse", + "printedName": "retryEventsHttpResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)retryEventsHttpResponse", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC23retryEventsHttpResponseSaySiGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)retryEventsHttpResponse", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC23retryEventsHttpResponseSaySiGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(cpy)shared", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(cm)shared", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "credentials", + "printedName": "credentials", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials?", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials?", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transformedEvents", + "printedName": "transformedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)transformedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)transformedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)setTransformedEvents:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvM", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CapiGCredentials", + "printedName": "CapiGCredentials", + "children": [ + { + "kind": "Var", + "name": "accessKey", + "printedName": "accessKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "capiGatewayURL", + "printedName": "capiGatewayURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "datasetID", + "printedName": "datasetID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessKey:capiGatewayURL:datasetID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKey14capiGatewayURL9datasetIDAESS_S2Stcfc", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKey14capiGatewayURL9datasetIDAESS_S2Stcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)init", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(datasetID:url:accessKey:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)configureWithDatasetID:url:accessKey:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC9configure9datasetID3url9accessKeyySS_S2StF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "callCapiGatewayAPI", + "printedName": "callCapiGatewayAPI(with:userAgent:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)callCapiGatewayAPIWith:userAgent:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18callCapiGatewayAPI4with9userAgentySDySSypG_SStF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "capiGatewayRequestDictionary", + "printedName": "capiGatewayRequestDictionary(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)capiGatewayRequestDictionaryWith:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC011capiGatewayE10Dictionary4withSDySSypGSayAFG_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleError", + "printedName": "handleError(response:events:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLResponse", + "printedName": "Foundation.URLResponse", + "usr": "c:objc(cs)NSURLResponse" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)handleErrorWithResponse:events:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11handleError8response6eventsySo13NSURLResponseCSg_SaySDySSypGGSgtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appendEvents", + "printedName": "appendEvents(events:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)appendEventsWithEvents:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC12appendEvents6eventsySaySDySSypGGSg_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphRequestPiggybackManager", + "printedName": "GraphRequestPiggybackManager", + "children": [ + { + "kind": "TypeDecl", + "name": "Values", + "printedName": "Values", + "children": [ + { + "kind": "Var", + "name": "tokenRefreshThresholdInSeconds", + "printedName": "tokenRefreshThresholdInSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokenRefreshRetryInSeconds", + "printedName": "tokenRefreshRetryInSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extendSSOToken", + "printedName": "extendSSOToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenRefreshFields", + "printedName": "accessTokenRefreshFields", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "permissionsPath", + "printedName": "permissionsPath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "permissionsRefreshFields", + "printedName": "permissionsRefreshFields", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO", + "moduleName": "FBSDKCoreKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "lastRefreshTry", + "printedName": "lastRefreshTry", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addPiggybackRequests", + "printedName": "addPiggybackRequests(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC03addE8RequestsyySo010FBSDKGraphD10Connecting_pF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC03addE8RequestsyySo010FBSDKGraphD10Connecting_pF", + "moduleName": "FBSDKCoreKit", + "objc_name": "addPiggybackRequests:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addRefreshPiggyback", + "printedName": "addRefreshPiggyback(_:permissionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestConnecting?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE0_17permissionHandlerySo010FBSDKGraphD10Connecting_p_ySoAF_pSg_ypSgs5Error_pSgtcSgtF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE0_17permissionHandlerySo010FBSDKGraphD10Connecting_p_ySoAF_pSg_ypSgs5Error_pSgtcSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "addRefreshPiggyback:permissionHandler:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRequestSafeForPiggyback", + "printedName": "isRequestSafeForPiggyback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestProtocol", + "printedName": "FBSDKCoreKit.GraphRequestProtocol", + "usr": "c:objc(pl)FBSDKGraphRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC02isd7SafeForE0ySbSo010FBSDKGraphD0_pF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC02isd7SafeForE0ySbSo010FBSDKGraphD0_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addRefreshPiggybackIfStale", + "printedName": "addRefreshPiggybackIfStale(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE7IfStale2toySo010FBSDKGraphD10Connecting_p_tF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE7IfStale2toySo010FBSDKGraphD10Connecting_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addServerConfigurationPiggyback", + "printedName": "addServerConfigurationPiggyback(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC022addServerConfigurationE02toySo010FBSDKGraphD10Connecting_p_tF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC022addServerConfigurationE02toySo010FBSDKGraphD10Connecting_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestPiggybackManager", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerCACycfc", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "tokenWallet", + "printedName": "tokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tokenWallet:settings:serverConfigurationProvider:graphRequestFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWallet8settings27serverConfigurationProvider05graphD7FactoryAESo25FBSDKAccessTokenProviding_pXp_AA16SettingsProtocol_pSo011FBSDKServermS0_pSo010FBSDKGraphdP0_ptcfc", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWallet8settings27serverConfigurationProvider05graphD7FactoryAESo25FBSDKAccessTokenProviding_pXp_AA16SettingsProtocol_pSo011FBSDKServermS0_pSo010FBSDKGraphdP0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "KeychainStoreFactory", + "printedName": "KeychainStoreFactory", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreFactory", + "printedName": "FBSDKCoreKit.KeychainStoreFactory", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "createKeychainStore", + "printedName": "createKeychainStore(service:accessGroup:)", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC06createcD07service11accessGroupSo013FBSDKKeychainD0_pSS_SSSgtF", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryC06createcD07service11accessGroupSo013FBSDKKeychainD0_pSS_SSSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createKeychainStoreWithService:accessGroup:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MACARuleMatching", + "printedName": "MACARuleMatching", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching(im)enable", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP6enableyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.MACARuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching(im)processParameters:event:", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP17processParameters_5eventSo12NSDictionaryCSgAH_SSSgtF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.MACARuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKMACARuleMatching", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MACARuleMatchingManager", + "printedName": "MACARuleMatchingManager", + "children": [ + { + "kind": "Var", + "name": "isEnable", + "printedName": "isEnable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC8isEnable33_0BB5878F933DE26C4692A35EA0FEF78ALLSbvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC8isEnable33_0BB5878F933DE26C4692A35EA0FEF78ALLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "macaRules", + "printedName": "macaRules", + "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:12FBSDKCoreKit23MACARuleMatchingManagerC9macaRules33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC9macaRules33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "keys", + "printedName": "keys", + "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:12FBSDKCoreKit23MACARuleMatchingManagerC4keys33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC4keys33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)enable", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getKey", + "printedName": "getKey(logic:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC6getKey5logicSSSgSDySSypG_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC6getKey5logicSSSgSDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stringComparison", + "printedName": "stringComparison(variable:values:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC16stringComparison8variable6values4dataSbSS_SDySSypGAHtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC16stringComparison8variable6values4dataSbSS_SDySSypGAHtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stringValueOf", + "printedName": "stringValueOf(_:)", + "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": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13stringValueOfySSSgypSgF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13stringValueOfySSSgypSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doubleValueOf", + "printedName": "doubleValueOf(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13doubleValueOfySdypSgF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13doubleValueOfySdypSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatchCCRule", + "printedName": "isMatchCCRule(_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13isMatchCCRule_4dataSbSSSg_SDySSypGtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13isMatchCCRule_4dataSbSSSg_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMatchPropertyIDs", + "printedName": "getMatchPropertyIDs(params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19getMatchPropertyIDs6paramsSSSDySSypG_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19getMatchPropertyIDs6paramsSSSDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)processParameters:event:", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC17processParameters_5eventSo12NSDictionaryCSgAH_SSSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:event:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateInfo", + "printedName": "generateInfo(params:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "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:12FBSDKCoreKit23MACARuleMatchingManagerC12generateInfo6params5eventySDySSypGz_SSSgtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC12generateInfo6params5eventySDySSypGz_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeGeneratedInfo", + "printedName": "removeGeneratedInfo(params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19removeGeneratedInfo6paramsySDySSypGz_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19removeGeneratedInfo6paramsySDySSypGz_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatchingManager", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)init", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "deviceInformationProvider", + "printedName": "deviceInformationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:deviceInformationProvider:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProvider017deviceInformationJ08settingsAESo011FBSDKServerI9Providing_p_So011FBSDKDevicelO0_pAA16SettingsProtocol_ptcfc", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProvider017deviceInformationJ08settingsAESo011FBSDKServerI9Providing_p_So011FBSDKDevicelO0_pAA16SettingsProtocol_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKMACARuleMatchingManager", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MACARuleMatching", + "printedName": "MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP" + }, + { + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV13dependentType33_958FB1E740EB546F978E744982C869ADLLxmvp", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV13dependentType33_958FB1E740EB546F978E744982C869ADLLxmvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKCoreKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKCoreKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Permission", + "printedName": "Permission", + "children": [ + { + "kind": "Var", + "name": "publicProfile", + "printedName": "publicProfile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO13publicProfileyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO13publicProfileyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userFriends", + "printedName": "userFriends", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userFriendsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userFriendsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO5emailyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO5emailyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAboutMe", + "printedName": "userAboutMe", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userAboutMeyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userAboutMeyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsBooks", + "printedName": "userActionsBooks", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsBooksyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsBooksyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsFitness", + "printedName": "userActionsFitness", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO18userActionsFitnessyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO18userActionsFitnessyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsMusic", + "printedName": "userActionsMusic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsMusicyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsMusicyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsNews", + "printedName": "userActionsNews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO15userActionsNewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO15userActionsNewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsVideo", + "printedName": "userActionsVideo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsVideoyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsVideoyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userBirthday", + "printedName": "userBirthday", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userBirthdayyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userBirthdayyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userEducationHistory", + "printedName": "userEducationHistory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO20userEducationHistoryyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO20userEducationHistoryyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userEvents", + "printedName": "userEvents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userEventsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userEventsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userGamesActivity", + "printedName": "userGamesActivity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userGamesActivityyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userGamesActivityyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userGender", + "printedName": "userGender", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userGenderyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userGenderyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userHometown", + "printedName": "userHometown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userHometownyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userHometownyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLikes", + "printedName": "userLikes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO9userLikesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO9userLikesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLocation", + "printedName": "userLocation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userLocationyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userLocationyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userManagedGroups", + "printedName": "userManagedGroups", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userManagedGroupsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userManagedGroupsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userPhotos", + "printedName": "userPhotos", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userPhotosyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userPhotosyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userPosts", + "printedName": "userPosts", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO9userPostsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO9userPostsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userRelationships", + "printedName": "userRelationships", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userRelationshipsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userRelationshipsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userRelationshipDetails", + "printedName": "userRelationshipDetails", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO23userRelationshipDetailsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO23userRelationshipDetailsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userReligionPolitics", + "printedName": "userReligionPolitics", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO20userReligionPoliticsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO20userReligionPoliticsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userTaggedPlaces", + "printedName": "userTaggedPlaces", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userTaggedPlacesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userTaggedPlacesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userVideos", + "printedName": "userVideos", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userVideosyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userVideosyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userWebsite", + "printedName": "userWebsite", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userWebsiteyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userWebsiteyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userWorkHistory", + "printedName": "userWorkHistory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO15userWorkHistoryyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO15userWorkHistoryyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readCustomFriendlists", + "printedName": "readCustomFriendlists", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO21readCustomFriendlistsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO21readCustomFriendlistsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readInsights", + "printedName": "readInsights", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12readInsightsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12readInsightsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readAudienceNetworkInsights", + "printedName": "readAudienceNetworkInsights", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO27readAudienceNetworkInsightsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO27readAudienceNetworkInsightsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readPageMailboxes", + "printedName": "readPageMailboxes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17readPageMailboxesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17readPageMailboxesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesShowList", + "printedName": "pagesShowList", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO13pagesShowListyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO13pagesShowListyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesManageCta", + "printedName": "pagesManageCta", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO14pagesManageCtayA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO14pagesManageCtayA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesManageInstantArticles", + "printedName": "pagesManageInstantArticles", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO26pagesManageInstantArticlesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO26pagesManageInstantArticlesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "adsRead", + "printedName": "adsRead", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO7adsReadyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO7adsReadyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLink", + "printedName": "userLink", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO8userLinkyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO8userLinkyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAgeRange", + "printedName": "userAgeRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userAgeRangeyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userAgeRangeyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> (Swift.String) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO6customyACSScACmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO6customyACSScACmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10PermissionO13stringLiteralACSS_tcfc", + "mangledName": "$s12FBSDKCoreKit10PermissionO13stringLiteralACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10PermissionO4nameSSvp", + "mangledName": "$s12FBSDKCoreKit10PermissionO4nameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10PermissionO4nameSSvg", + "mangledName": "$s12FBSDKCoreKit10PermissionO4nameSSvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10PermissionO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit10PermissionO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10PermissionO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit10PermissionO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10PermissionO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit10PermissionO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10PermissionO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit10PermissionO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit10PermissionO", + "mangledName": "$s12FBSDKCoreKit10PermissionO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "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": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Profile", + "printedName": "Profile", + "children": [ + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)userID", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(im)userID", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstName", + "printedName": "firstName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)firstName", + "mangledName": "$s12FBSDKCoreKit7ProfileC9firstNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)firstName", + "mangledName": "$s12FBSDKCoreKit7ProfileC9firstNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)middleName", + "mangledName": "$s12FBSDKCoreKit7ProfileC10middleNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)middleName", + "mangledName": "$s12FBSDKCoreKit7ProfileC10middleNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastName", + "printedName": "lastName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)lastName", + "mangledName": "$s12FBSDKCoreKit7ProfileC8lastNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)lastName", + "mangledName": "$s12FBSDKCoreKit7ProfileC8lastNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)name", + "mangledName": "$s12FBSDKCoreKit7ProfileC4nameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)name", + "mangledName": "$s12FBSDKCoreKit7ProfileC4nameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)linkURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC7linkURL10Foundation0E0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)linkURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC7linkURL10Foundation0E0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "refreshDate", + "printedName": "refreshDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)refreshDate", + "mangledName": "$s12FBSDKCoreKit7ProfileC11refreshDate10Foundation0E0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)refreshDate", + "mangledName": "$s12FBSDKCoreKit7ProfileC11refreshDate10Foundation0E0Vvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)imageURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL10Foundation0E0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)imageURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL10Foundation0E0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)email", + "mangledName": "$s12FBSDKCoreKit7ProfileC5emailSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)email", + "mangledName": "$s12FBSDKCoreKit7ProfileC5emailSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "friendIDs", + "printedName": "friendIDs", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)friendIDs", + "mangledName": "$s12FBSDKCoreKit7ProfileC9friendIDsSaySSGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)friendIDs", + "mangledName": "$s12FBSDKCoreKit7ProfileC9friendIDsSaySSGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "birthday", + "printedName": "birthday", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)birthday", + "mangledName": "$s12FBSDKCoreKit7ProfileC8birthday10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)birthday", + "mangledName": "$s12FBSDKCoreKit7ProfileC8birthday10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ageRange", + "printedName": "ageRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)ageRange", + "mangledName": "$s12FBSDKCoreKit7ProfileC8ageRangeSo012FBSDKUserAgeE0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)ageRange", + "mangledName": "$s12FBSDKCoreKit7ProfileC8ageRangeSo012FBSDKUserAgeE0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hometown", + "printedName": "hometown", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)hometown", + "mangledName": "$s12FBSDKCoreKit7ProfileC8hometownSo13FBSDKLocationCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)hometown", + "mangledName": "$s12FBSDKCoreKit7ProfileC8hometownSo13FBSDKLocationCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)location", + "mangledName": "$s12FBSDKCoreKit7ProfileC8locationSo13FBSDKLocationCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)location", + "mangledName": "$s12FBSDKCoreKit7ProfileC8locationSo13FBSDKLocationCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)gender", + "mangledName": "$s12FBSDKCoreKit7ProfileC6genderSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)gender", + "mangledName": "$s12FBSDKCoreKit7ProfileC6genderSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isLimited", + "printedName": "isLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)isLimited", + "mangledName": "$s12FBSDKCoreKit7ProfileC9isLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)isLimited", + "mangledName": "$s12FBSDKCoreKit7ProfileC9isLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_current", + "printedName": "_current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)_current", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)_current", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)set_current:", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC8_currentACSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isUpdatedWithAccessTokenChange", + "printedName": "isUpdatedWithAccessTokenChange", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)isUpdatedWithAccessTokenChange", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)isUpdatedWithAccessTokenChange", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvgZ", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)setIsUpdatedWithAccessTokenChange:", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDateACSS_SSSgA3K10Foundation0L0VSgAL0N0VSgtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDate05imageL05email9friendIDs8birthday8ageRange8hometown8location6genderACSS_SSSgA3S10Foundation0L0VSgAT0N0VSgAwSSaySSGSgAZSo012FBSDKUserAgeU0CSgSo13FBSDKLocationCSgA6_AStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDate05imageL05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimitedACSS_SSSgA3T10Foundation0L0VSgAU0N0VSgAxTSaySSGSgA_So012FBSDKUserAgeU0CSgSo13FBSDKLocationCSgA7_ATSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "enableUpdatesOnAccessTokenChange", + "printedName": "enableUpdatesOnAccessTokenChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)enableUpdatesOnAccessTokenChange:", + "mangledName": "$s12FBSDKCoreKit7ProfileC32enableUpdatesOnAccessTokenChangeyySbFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "enableUpdatesOnAccessTokenChange:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)init", + "mangledName": "$s12FBSDKCoreKit7ProfileCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "PictureMode", + "printedName": "PictureMode", + "children": [ + { + "kind": "Var", + "name": "square", + "printedName": "square", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO6squareyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO6squareyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "normal", + "printedName": "normal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO6normalyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO6normalyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "album", + "printedName": "album", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5albumyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5albumyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "small", + "printedName": "small", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5smallyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5smallyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "large", + "printedName": "large", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5largeyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5largeyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.PictureMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueAESgSu_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfilePictureMode", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "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": "Function", + "name": "imageURL", + "printedName": "imageURL(forMode:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)imageURLForPictureMode:size:", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL7forMode4size10Foundation0E0VSgAC07PictureG0O_So6CGSizeVtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "imageURLForPictureMode:size:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageURL", + "printedName": "getImageURL(profileID:pictureMode:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)getImageURLWithProfileID:pictureMode:size:", + "mangledName": "$s12FBSDKCoreKit7ProfileC11getImageURL9profileID11pictureMode4size10Foundation0F0VSgSS_AC07PictureJ0OSo6CGSizeVtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadCurrentProfile", + "printedName": "loadCurrentProfile(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.Profile?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)loadCurrentProfileWithCompletion:", + "mangledName": "$s12FBSDKCoreKit7ProfileC011loadCurrentC010completionyyACSg_s5Error_pSgtcSg_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "loadCurrentProfileWithCompletion:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadProfile", + "printedName": "loadProfile(accessToken:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.Profile?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)loadProfileWithAccessToken:completion:", + "mangledName": "$s12FBSDKCoreKit7ProfileC04loadC011accessToken10completionySo011FBSDKAccessF0CSg_yACSg_s5Error_pSgtcSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeGraphRequestParameters", + "printedName": "makeGraphRequestParameters(token:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)makeGraphRequestParametersWithToken:", + "mangledName": "$s12FBSDKCoreKit7ProfileC26makeGraphRequestParameters5tokenSDyS2SGSo16FBSDKAccessTokenCSg_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "current", + "printedName": "current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)currentProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "currentProfile", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)currentProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "currentProfile", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)setCurrentProfile:", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "setCurrentProfile:", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC7currentACSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "fetchCachedProfile", + "printedName": "fetchCachedProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Self?", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)fetchCachedProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC011fetchCachedC0ACXDSgyFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "fetchCachedProfile", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "profileUserDefaultsKey", + "printedName": "profileUserDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)profileUserDefaultsKey", + "mangledName": "$s12FBSDKCoreKit7ProfileC22profileUserDefaultsKeySSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isFromExtension": true, + "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:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)profileUserDefaultsKey", + "mangledName": "$s12FBSDKCoreKit7ProfileC22profileUserDefaultsKeySSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)supportsSecureCoding", + "mangledName": "$s12FBSDKCoreKit7ProfileC20supportsSecureCodingSbvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)supportsSecureCoding", + "mangledName": "$s12FBSDKCoreKit7ProfileC20supportsSecureCodingSbvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithCoder:", + "mangledName": "$s12FBSDKCoreKit7ProfileC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)encodeWithCoder:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6encode4withySo7NSCoderC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO6userIDyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO6userIDyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "firstName", + "printedName": "firstName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9firstNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9firstNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO10middleNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO10middleNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "lastName", + "printedName": "lastName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8lastNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8lastNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO4nameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO4nameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "linkURL", + "printedName": "linkURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO7linkURLyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO7linkURLyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "refreshDate", + "printedName": "refreshDate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11refreshDateyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11refreshDateyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8imageURLyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8imageURLyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO5emailyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO5emailyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "friendIDs", + "printedName": "friendIDs", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9friendIDsyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9friendIDsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "isLimited", + "printedName": "isLimited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9isLimitedyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9isLimitedyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "birthday", + "printedName": "birthday", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8birthdayyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8birthdayyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "ageRange", + "printedName": "ageRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8ageRangeyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8ageRangeyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "hometown", + "printedName": "hometown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8hometownyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8hometownyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8locationyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8locationyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO6genderyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO6genderyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBSDKCoreKit", + "implicit": 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:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10DeliveringpvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10DeliveringpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlHoster", + "printedName": "urlHoster", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenProvider:dataStore:graphRequestFactory:notificationCenter:settings:urlHoster:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProvider9dataStore19graphRequestFactory18notificationCenter8settings9urlHosterAESo011FBSDKAccessG9Providing_pXp_So19FBSDKDataPersisting_pSo010FBSDKGraphlM0_pSo25_FBSDKNotificationPosting_So0X10DeliveringpAA16SettingsProtocol_pSo15FBSDKURLHosting_ptcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProvider9dataStore19graphRequestFactory18notificationCenter8settings9urlHosterAESo011FBSDKAccessG9Providing_pXp_So19FBSDKDataPersisting_pSo010FBSDKGraphlM0_pSo25_FBSDKNotificationPosting_So0X10DeliveringpAA16SettingsProtocol_pSo15FBSDKURLHosting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfile", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ProfileProviding", + "printedName": "ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfilePictureViewState", + "printedName": "ProfilePictureViewState", + "children": [ + { + "kind": "Var", + "name": "profileID", + "printedName": "profileID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "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:12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "scale", + "printedName": "scale", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV5scale14CoreFoundation7CGFloatVvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV5scale12CoreGraphics7CGFloatVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "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": "s:12FBSDKCoreKit23ProfilePictureViewStateV5scale14CoreFoundation7CGFloatVvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV5scale12CoreGraphics7CGFloatVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pictureMode", + "printedName": "pictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "imageShouldFit", + "printedName": "imageShouldFit", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profileID:size:scale:pictureMode:imageShouldFit:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV9profileID4size5scale11pictureMode14imageShouldFitACSS_So6CGSizeV14CoreFoundation7CGFloatVAA0C0C0dL0OSbtcfc", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileID4size5scale11pictureMode14imageShouldFitACSS_So6CGSizeV12CoreGraphics7CGFloatVAA0C0C0dL0OSbtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileProviding", + "printedName": "ProfileProviding", + "children": [ + { + "kind": "Var", + "name": "current", + "printedName": "current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cpy)currentProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "objc_name": "currentProfile", + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)currentProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)setCurrentProfile:", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvsZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "fetchCachedProfile", + "printedName": "fetchCachedProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)fetchCachedProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP011fetchCachedC0AA0C0CSgyFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKProfileProviding", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProtectedModeManager", + "printedName": "ProtectedModeManager", + "children": [ + { + "kind": "Var", + "name": "isEnabled", + "printedName": "isEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC9isEnabled013_23E3C687B8F4H18C50A3A25F390F8C518LLSbvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC9isEnabled013_23E3C687B8F4H18C50A3A25F390F8C518LLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "standardParametersDefault", + "printedName": "standardParametersDefault", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC25standardParametersDefault013_23E3C687B8F4I18C50A3A25F390F8C518LLShySSGvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC25standardParametersDefault013_23E3C687B8F4I18C50A3A25F390F8C518LLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "standardParameters", + "printedName": "standardParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18standardParameters013_23E3C687B8F4H18C50A3A25F390F8C518LLShySSGvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18standardParameters013_23E3C687B8F4H18C50A3A25F390F8C518LLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)enable", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEvents.Name?", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)processParameters:eventName:", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC17processParameters_9eventNameSDySo022FBSDKAppEventParameterI0aypGSgAI_So0jkI0aSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:eventName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtectedModeManager", + "printedName": "FBSDKCoreKit.ProtectedModeManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)init", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProtectedModeManager", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginTooltipError", + "printedName": "LoginTooltipError", + "children": [ + { + "kind": "Var", + "name": "missingTooltipText", + "printedName": "missingTooltipText", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.LoginTooltipError.Type) -> FBSDKCoreKit.LoginTooltipError", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.LoginTooltipError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO07missingD4TextyA2CmF", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO07missingD4TextyA2CmF", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + }, + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17LoginTooltipErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO", + "moduleName": "FBSDKCoreKit", + "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": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConfigurationProvider", + "printedName": "ServerConfigurationProvider", + "children": [ + { + "kind": "Var", + "name": "loggingToken", + "printedName": "loggingToken", + "children": [ + { + "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:12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvp", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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:12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvg", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit27ServerConfigurationProviderC29shouldUseSafariViewController13forDialogNameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC29shouldUseSafariViewController13forDialogNameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadServerConfiguration", + "printedName": "loadServerConfiguration(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKLoginTooltip", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip", + "usr": "c:objc(cs)FBSDKLoginTooltip" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit27ServerConfigurationProviderC04loadcD010completionyySo17FBSDKLoginTooltipCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC04loadcD010completionyySo17FBSDKLoginTooltipCSg_s5Error_pSgtcSg_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProvider", + "printedName": "FBSDKCoreKit.ServerConfigurationProvider", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider(im)init", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AdSupport", + "printedName": "AdSupport", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "Settings", + "printedName": "Settings", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(cpy)sharedSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "sharedSettings", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(cm)sharedSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sdkVersion", + "printedName": "sdkVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)sdkVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC10sdkVersionSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "sdkVersion", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)sdkVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC10sdkVersionSSvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "sdkVersion", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultGraphAPIVersion", + "printedName": "defaultGraphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)defaultGraphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC22defaultGraphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)defaultGraphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC22defaultGraphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jpegCompressionQuality", + "printedName": "jpegCompressionQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)JPEGCompressionQuality", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "JPEGCompressionQuality", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)JPEGCompressionQuality", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setJPEGCompressionQuality:", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22jpegCompressionQuality14CoreFoundation7CGFloatVvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "autoLogAppEventsEnabled", + "printedName": "autoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)autoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)autoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAutoLogAppEventsEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAutoLogAppEventsEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAutoLogAppEventsEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAutoLogAppEventsEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isAutoLogAppEventsEnabled", + "printedName": "_isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codelessDebugLogEnabled", + "printedName": "codelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "codelessDebugLogEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "codelessDebugLogEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setCodelessDebugLogEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isCodelessDebugLogEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isCodelessDebugLogEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsCodelessDebugLogEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isCodelessDebugLogEnabled", + "printedName": "_isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDCollectionEnabled", + "printedName": "advertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "advertiserIDCollectionEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserIDCollectionEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAdvertiserIDCollectionEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserIDCollectionEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserIDCollectionEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsAdvertiserIDCollectionEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isAdvertiserIDCollectionEnabled", + "printedName": "_isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skAdNetworkReportEnabled", + "printedName": "skAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)skAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)skAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setSkAdNetworkReportEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSKAdNetworkReportEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSKAdNetworkReportEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsSKAdNetworkReportEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isEventDataUsageLimited", + "printedName": "isEventDataUsageLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEventDataUsageLimited", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEventDataUsageLimited", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsEventDataUsageLimited:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsEventDataUsageLimited:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseCachedValuesForExpensiveMetadata", + "printedName": "shouldUseCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseCachedValuesForExpensiveMetadata", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseCachedValuesForExpensiveMetadata", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setShouldUseCachedValuesForExpensiveMetadata:", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setShouldUseCachedValuesForExpensiveMetadata:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isGraphErrorRecoveryEnabled", + "printedName": "isGraphErrorRecoveryEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isGraphErrorRecoveryEnabled", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "isGraphErrorRecoveryEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsGraphErrorRecoveryEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setIsGraphErrorRecoveryEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)appID", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appID", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)appID", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "appID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAppID:", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAppID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC5appIDSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appURLSchemeSuffix", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "appURLSchemeSuffix", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAppURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAppURLSchemeSuffix:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_appURLSchemeSuffix", + "printedName": "_appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_appURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "clientToken", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "clientToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setClientToken:", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setClientToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC11clientTokenSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_clientToken", + "printedName": "_clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_clientToken:", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC12_clientTokenSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "displayName", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "displayName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDisplayName:", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDisplayName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC11displayNameSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_displayName", + "printedName": "_displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_displayName:", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC12_displayNameSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "facebookDomainPart", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "facebookDomainPart", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setFacebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setFacebookDomainPart:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_facebookDomainPart", + "printedName": "_facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_facebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIVersion", + "printedName": "graphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIVersion", + "declAttributes": [ + "Final", + "ObjC", + "Lazy", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "graphAPIVersion", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setGraphAPIVersion:", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setGraphAPIVersion:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC15graphAPIVersionSSvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "userAgentSuffix", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "userAgentSuffix", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setUserAgentSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setUserAgentSuffix:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabled", + "printedName": "advertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "advertiserTrackingEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAdvertiserTrackingEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserTrackingEnabled", + "printedName": "isAdvertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserTrackingEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserTrackingEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsAdvertiserTrackingEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertisingTrackingStatus", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertisingTrackingStatus", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertisingTrackingStatus:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0VvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isDataProcessingRestricted", + "printedName": "isDataProcessingRestricted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isDataProcessingRestrictedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isDataProcessingRestricted", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isDataProcessingRestrictedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isDataProcessingRestricted", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "persistableDataProcessingOptions", + "printedName": "persistableDataProcessingOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit8SettingsC32persistableDataProcessingOptionsSDySSypGSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "persistableDataProcessingOptions", + "declAttributes": [ + "Final", + "ObjC", + "Lazy", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit8SettingsC32persistableDataProcessingOptionsSDySSypGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "persistableDataProcessingOptions", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDataProcessingOptions:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24setDataProcessingOptionsyySaySSGSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDataProcessingOptions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:country:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDataProcessingOptions:country:state:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24setDataProcessingOptions_7country5stateySaySSGSg_s5Int32VAJtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDataProcessingOptions:country:state:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "loggingBehaviors", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "loggingBehaviors", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setLoggingBehaviors:", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setLoggingBehaviors:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enableLoggingBehavior", + "printedName": "enableLoggingBehavior(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)enableLoggingBehavior:", + "mangledName": "$s12FBSDKCoreKit8SettingsC21enableLoggingBehavioryySo012FBSDKLoggingF0aF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableLoggingBehavior", + "printedName": "disableLoggingBehavior(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)disableLoggingBehavior:", + "mangledName": "$s12FBSDKCoreKit8SettingsC22disableLoggingBehavioryySo012FBSDKLoggingF0aF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "shouldUseTokenOptimizations", + "printedName": "shouldUseTokenOptimizations", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseTokenOptimizations", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseTokenOptimizations", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setShouldUseTokenOptimizations:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setShouldUseTokenOptimizations:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isSetATETimeExceedsInstallTime", + "printedName": "isSetATETimeExceedsInstallTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit8SettingsC30isSetATETimeExceedsInstallTimeSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "isSetATETimeExceedsInstallTime", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit8SettingsC30isSetATETimeExceedsInstallTimeSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSetATETimeExceedsInstallTime", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isATETimeSufficientlyDelayed", + "printedName": "isATETimeSufficientlyDelayed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit8SettingsC28isATETimeSufficientlyDelayedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isATETimeSufficientlyDelayed", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit8SettingsC28isATETimeSufficientlyDelayedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isATETimeSufficientlyDelayed", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)installTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC16installTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "installTimestamp", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)installTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC16installTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "installTimestamp", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabledTimestamp", + "printedName": "advertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabledTimestamp", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabledTimestamp", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParamValue", + "printedName": "graphAPIDebugParamValue", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC23graphAPIDebugParamValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "graphAPIDebugParamValue", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC23graphAPIDebugParamValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParamValue", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParameterValue", + "printedName": "graphAPIDebugParameterValue", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC27graphAPIDebugParameterValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParameterValue", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC27graphAPIDebugParameterValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParameterValue", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)init", + "mangledName": "$s12FBSDKCoreKit8SettingsCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "recordInstall", + "printedName": "recordInstall()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)recordInstall", + "mangledName": "$s12FBSDKCoreKit8SettingsC13recordInstallyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "recordInstall", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordSetAdvertiserTrackingEnabled", + "printedName": "recordSetAdvertiserTrackingEnabled()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)recordSetAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC34recordSetAdvertiserTrackingEnabledyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logWarnings", + "printedName": "logWarnings()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)logWarnings", + "mangledName": "$s12FBSDKCoreKit8SettingsC11logWarningsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logWarnings", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIfSDKSettingsChanged", + "printedName": "logIfSDKSettingsChanged()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)logIfSDKSettingsChanged", + "mangledName": "$s12FBSDKCoreKit8SettingsC23logIfSDKSettingsChangedyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logIfSDKSettingsChanged", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistedStringProperty", + "printedName": "PersistedStringProperty", + "children": [ + { + "kind": "Var", + "name": "persistenceKey", + "printedName": "persistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovp", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovg", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backingKeyPath", + "printedName": "backingKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(persistenceKey:backingKeyPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + }, + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKey07backingH4PathAeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSSSgGtcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKey07backingH4PathAeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSSSgGtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "getPersistedStringProperty", + "printedName": "getPersistedStringProperty(_:)", + "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": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC26getPersistedStringPropertyySSSgAC0efG0VF", + "mangledName": "$s12FBSDKCoreKit8SettingsC26getPersistedStringPropertyySSSgAC0efG0VF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPersistedStringProperty", + "printedName": "setPersistedStringProperty(_:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + }, + { + "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:12FBSDKCoreKit8SettingsC26setPersistedStringProperty_2toyAC0efG0V_SSSgtF", + "mangledName": "$s12FBSDKCoreKit8SettingsC26setPersistedStringProperty_2toyAC0efG0V_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistedBooleanValue", + "printedName": "PersistedBooleanValue", + "children": [ + { + "kind": "Var", + "name": "persistenceKey", + "printedName": "persistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backingKeyPath", + "printedName": "backingKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultValue", + "printedName": "defaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 2, + "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:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(persistenceKey:backingKeyPath:defaultValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + }, + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKey07backingH4Path07defaultF0AeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSbSgGSbtcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKey07backingH4Path07defaultF0AeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSbSgGSbtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "getPersistedBooleanProperty", + "printedName": "getPersistedBooleanProperty(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC27getPersistedBooleanPropertyySbAC0eF5ValueVF", + "mangledName": "$s12FBSDKCoreKit8SettingsC27getPersistedBooleanPropertyySbAC0eF5ValueVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPersistedBooleanProperty", + "printedName": "setPersistedBooleanProperty(_:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC27setPersistedBooleanProperty_2toyAC0eF5ValueV_SbtF", + "mangledName": "$s12FBSDKCoreKit8SettingsC27setPersistedBooleanProperty_2toyAC0eF5ValueV_SbtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistenceKey", + "printedName": "PersistenceKey", + "children": [ + { + "kind": "Var", + "name": "urlSchemeSuffix", + "printedName": "urlSchemeSuffix", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO15urlSchemeSuffixyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO15urlSchemeSuffixyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO11clientTokenyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO11clientTokenyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO11displayNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO11displayNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "domainPart", + "printedName": "domainPart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO10domainPartyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO10domainPartyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25isAutoLogAppEventsEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25isAutoLogAppEventsEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO31isAdvertiserIDCollectionEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO31isAdvertiserIDCollectionEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25isCodelessDebugLogEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25isCodelessDebugLogEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO16loggingBehaviorsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO16loggingBehaviorsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "appID", + "printedName": "appID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO5appIDyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO5appIDyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "jpegCompressionQuality", + "printedName": "jpegCompressionQuality", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO22jpegCompressionQualityyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO22jpegCompressionQualityyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO26isSKAdNetworkReportEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO26isSKAdNetworkReportEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25advertisingTrackingStatusyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25advertisingTrackingStatusyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "limitEventAndDataUsage", + "printedName": "limitEventAndDataUsage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO22limitEventAndDataUsageyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO22limitEventAndDataUsageyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "useCachedValuesForExpensiveMetadata", + "printedName": "useCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO35useCachedValuesForExpensiveMetadatayA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO35useCachedValuesForExpensiveMetadatayA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "useTokenOptimizations", + "printedName": "useTokenOptimizations", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO21useTokenOptimizationsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO21useTokenOptimizationsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "dataProcessingOptions", + "printedName": "dataProcessingOptions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO21dataProcessingOptionsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO21dataProcessingOptionsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "bitmask", + "printedName": "bitmask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO7bitmaskyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO7bitmaskyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO16installTimestampyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO16installTimestampyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "setAdvertiserTrackingEnabledTimestamp", + "printedName": "setAdvertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO37setAdvertiserTrackingEnabledTimestampyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO37setAdvertiserTrackingEnabledTimestampyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 18 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "appEventsConfigurationProvider", + "printedName": "appEventsConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appEventsConfigurationProvider:dataStore:eventLogger:infoDictionaryProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProvider9dataStore11eventLogger014infoDictionaryI0AESo08FBSDKAppgH9Providing_p_So19FBSDKDataPersisting_pSo17FBSDKEventLogging_pSo09FBSDKInfooQ0_ptcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProvider9dataStore11eventLogger014infoDictionaryI0AESo08FBSDKAppgH9Providing_p_So19FBSDKDataPersisting_pSo17FBSDKEventLogging_pSo09FBSDKInfooQ0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "validateConfiguration", + "printedName": "validateConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)validateConfiguration", + "mangledName": "$s12FBSDKCoreKit8SettingsC21validateConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "unconfiguredDebugMessage", + "printedName": "unconfiguredDebugMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(cpy)unconfiguredDebugMessage", + "mangledName": "$s12FBSDKCoreKit8SettingsC24unconfiguredDebugMessageSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isFromExtension": true, + "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:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(cm)unconfiguredDebugMessage", + "mangledName": "$s12FBSDKCoreKit8SettingsC24unconfiguredDebugMessageSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKSettings", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SettingsProtocol", + "printedName": "SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP" + }, + { + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SettingsProtocol", + "printedName": "SettingsProtocol", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)appID", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)appID", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAppID:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)clientToken", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)clientToken", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setClientToken:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setUserAgentSuffix:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "sdkVersion", + "printedName": "sdkVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)sdkVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP10sdkVersionSSvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)sdkVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP10sdkVersionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)displayName", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)displayName", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDisplayName:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setFacebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setLoggingBehaviors:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAppURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isDataProcessingRestricted", + "printedName": "isDataProcessingRestricted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isDataProcessingRestrictedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isDataProcessingRestrictedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isAutoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isAutoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codelessDebugLogEnabled", + "printedName": "codelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDCollectionEnabled", + "printedName": "advertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isSetATETimeExceedsInstallTime", + "printedName": "isSetATETimeExceedsInstallTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP30isSetATETimeExceedsInstallTimeSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP30isSetATETimeExceedsInstallTimeSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isATETimeSufficientlyDelayed", + "printedName": "isATETimeSufficientlyDelayed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP28isATETimeSufficientlyDelayedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP28isATETimeSufficientlyDelayedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isSKAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isSKAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertisingTrackingStatusSo016FBSDKAdvertisingfG0Vvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertisingTrackingStatusSo016FBSDKAdvertisingfG0Vvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)installTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16installTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)installTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16installTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabledTimestamp", + "printedName": "advertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEventDataUsageLimited", + "printedName": "isEventDataUsageLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsEventDataUsageLimited:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseTokenOptimizations", + "printedName": "shouldUseTokenOptimizations", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setShouldUseTokenOptimizations:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIVersion", + "printedName": "graphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setGraphAPIVersion:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isGraphErrorRecoveryEnabled", + "printedName": "isGraphErrorRecoveryEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsGraphErrorRecoveryEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParamValue", + "printedName": "graphAPIDebugParamValue", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23graphAPIDebugParamValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23graphAPIDebugParamValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParameterValue", + "printedName": "graphAPIDebugParameterValue", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27graphAPIDebugParameterValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27graphAPIDebugParameterValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabled", + "printedName": "advertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserTrackingEnabled", + "printedName": "isAdvertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseCachedValuesForExpensiveMetadata", + "printedName": "shouldUseCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setShouldUseCachedValuesForExpensiveMetadata:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "persistableDataProcessingOptions", + "printedName": "persistableDataProcessingOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP32persistableDataProcessingOptionsSDySSypGSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP32persistableDataProcessingOptionsSDySSypGSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDataProcessingOptions:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP24setDataProcessingOptionsyySaySSGSgF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:country:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDataProcessingOptions:country:state:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP24setDataProcessingOptions_7country5stateySaySSGSg_s5Int32VAJtF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSettings", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DialogConfigurationName", + "printedName": "DialogConfigurationName", + "children": [ + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO7messageSSvpZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO7messageSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit23DialogConfigurationNameO7messageSSvgZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO7messageSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO5shareSSvpZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO5shareSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit23DialogConfigurationNameO5shareSSvgZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO5shareSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareDialogConfiguration", + "printedName": "ShareDialogConfiguration", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialogConfiguration", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationVACycfc", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationVACycfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "defaultShareMode", + "printedName": "defaultShareMode", + "children": [ + { + "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:12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "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:12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "shouldUseNativeDialog", + "printedName": "shouldUseNativeDialog(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV015shouldUseNativeD003forD4NameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV015shouldUseNativeD003forD4NameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV29shouldUseSafariViewController03forD4NameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV29shouldUseSafariViewController03forD4NameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderAESo011FBSDKServerE9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderAESo011FBSDKServerE9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "synchronized", + "printedName": "synchronized(_:closure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() throws -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit12synchronized_7closureyyXl_yyKXEtKF", + "mangledName": "$s12FBSDKCoreKit12synchronized_7closureyyXl_yyKXEtKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Rethrows", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TokenCache", + "printedName": "TokenCache", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessToken", + "printedName": "accessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "accessToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "accessToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAccessToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "authenticationToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "authenticationToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAuthenticationToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCache", + "printedName": "FBSDKCoreKit.TokenCache", + "usr": "s:12FBSDKCoreKit10TokenCacheC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10TokenCacheCACycfc", + "mangledName": "$s12FBSDKCoreKit10TokenCacheCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keychainStore", + "printedName": "keychainStore", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:keychainStore:dataStore:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settings13keychainStore04dataI0AeA16SettingsProtocol_p_So013FBSDKKeychainI0_pSo19FBSDKDataPersisting_ptcfc", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settings13keychainStore04dataI0AeA16SettingsProtocol_p_So013FBSDKKeychainI0_pSo19FBSDKDataPersisting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit10TokenCacheC", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_AEMReporterProtocol", + "printedName": "_AEMReporterProtocol", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)enable", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP6enableyyFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordAndUpdate", + "printedName": "recordAndUpdate(event:currency:value:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)recordAndUpdateEvent:currency:value:parameters:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP15recordAndUpdate5event8currency5value10parametersySS_SSSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "objc_name": "recordAndUpdateEvent:currency:value:parameters:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConversionFilteringEnabled", + "printedName": "setConversionFilteringEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setConversionFilteringEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP29setConversionFilteringEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCatalogMatchingEnabled", + "printedName": "setCatalogMatchingEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setCatalogMatchingEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP25setCatalogMatchingEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAdvertiserRuleMatchInServerEnabled", + "printedName": "setAdvertiserRuleMatchInServerEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP37setAdvertiserRuleMatchInServerEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handle", + "printedName": "handle(_:)", + "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": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)handle:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP6handleyy10Foundation3URLVSgFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKAEMReporter", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_AccessTokenExpirer", + "printedName": "_AccessTokenExpirer", + "children": [ + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(py)notificationCenter", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)notificationCenter", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(notificationCenter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpirer", + "printedName": "FBSDKCoreKit._AccessTokenExpirer", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)initWithNotificationCenter:", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterACSo25_FBSDKNotificationPosting_So0H10Deliveringp_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "checkAccessTokenExpirationDate", + "printedName": "checkAccessTokenExpirationDate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)checkAccessTokenExpirationDate", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC05checkcD14ExpirationDateyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "timerDidFire", + "printedName": "timerDidFire()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)timerDidFire", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC12timerDidFireyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpirer", + "printedName": "FBSDKCoreKit._AccessTokenExpirer", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)init", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "_FBSDKAccessTokenExpirer", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_AccessTokenExpiring", + "printedName": "_AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring", + "mangledName": "$s12FBSDKCoreKit20_AccessTokenExpiringP" + }, + { + "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": "_AccessTokenExpiring", + "printedName": "_AccessTokenExpiring", + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring", + "mangledName": "$s12FBSDKCoreKit20_AccessTokenExpiringP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "_FBSDKAccessTokenExpiring", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AuthenticationServices", + "printedName": "AuthenticationServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SafariServices", + "printedName": "SafariServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPI", + "printedName": "_BridgeAPI", + "children": [ + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIResponseFactory", + "printedName": "bridgeAPIResponseFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeProvider", + "printedName": "appURLSchemeProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pendingRequest", + "printedName": "pendingRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pendingRequestCompletionBlock", + "printedName": "pendingRequestCompletionBlock", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pendingURLOpener", + "printedName": "pendingURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSession", + "printedName": "authenticationSession", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSessionCompletionHandler", + "printedName": "authenticationSessionCompletionHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSessionState", + "printedName": "authenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0OvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0OvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isExpectingBackground", + "printedName": "isExpectingBackground", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "safariViewController", + "printedName": "safariViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isDismissingSafariViewController", + "printedName": "isDismissingSafariViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isActive", + "printedName": "isActive", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6sharedACvpZ", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6sharedACvgZ", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logger:urlOpener:bridgeAPIResponseFactory:appURLSchemeProvider:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + }, + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + }, + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6logger9urlOpener24bridgeAPIResponseFactory20appURLSchemeProvider05errorJ0ACSo11FBSDKLoggerC_So22FBSDKInternalURLOpener_pAA0cI8Creating_pSo08FBSDKAppL9Providing_pSo010FBSDKErrorR0_ptcfc", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6logger9urlOpener24bridgeAPIResponseFactory20appURLSchemeProvider05errorJ0ACSo11FBSDKLoggerC_So22FBSDKInternalURLOpener_pAA0cI8Creating_pSo08FBSDKAppL9Providing_pSo010FBSDKErrorR0_ptcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bridgeAPIRequestCompletionBlock", + "printedName": "bridgeAPIRequestCompletionBlock(request:completion:)", + "children": [ + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC31bridgeAPIRequestCompletionBlock7request10completionySb_s5Error_pSgtcSo011FBSDKBridgeF0_p_ySo0L11APIResponseCctF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC31bridgeAPIRequestCompletionBlock7request10completionySb_s5Error_pSgtcSo011FBSDKBridgeF0_p_ySo0L11APIResponseCctF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURLWithAuthenticationSession", + "printedName": "openURLWithAuthenticationSession(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32openURLWithAuthenticationSession3urly10Foundation3URLV_tF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32openURLWithAuthenticationSession3urly10Foundation3URLV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSessionCompletionHandler", + "printedName": "setSessionCompletionHandler(calling:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC27setSessionCompletionHandler7callingyySb_s5Error_pSgtc_tF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC27setSessionCompletionHandler7callingyySb_s5Error_pSgtc_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearSession", + "printedName": "clearSession()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12clearSessionyyF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12clearSessionyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewControllerDidDisappear", + "printedName": "viewControllerDidDisappear(_:animated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ContainerViewController", + "printedName": "FBSDKCoreKit._ContainerViewController", + "usr": "c:objc(cs)FBSDKContainerViewController" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI(im)viewControllerDidDisappear:animated:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26viewControllerDidDisappear_8animatedySo018FBSDKContainerViewF0C_SbtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "viewControllerDidDisappear:animated:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleBridgeAPIResponse", + "printedName": "handleBridgeAPIResponse(url:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit10_BridgeAPIC06handleC11APIResponse3url17sourceApplicationSb10Foundation3URLV_SSSgtF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC06handleC11APIResponse3url17sourceApplicationSb10Foundation3URLV_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelBridgeRequest", + "printedName": "cancelBridgeRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC06cancelC7RequestyyF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC06cancelC7RequestyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI(im)init", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPICACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "applicationWillResignActive", + "printedName": "applicationWillResignActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationWillResignActive:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC27applicationWillResignActiveyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationWillResignActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationDidBecomeActive:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26applicationDidBecomeActiveyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationDidBecomeActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29applicationDidEnterBackgroundyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationDidEnterBackground:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC11application_4open17sourceApplication10annotationSbSo13UIApplicationC_10Foundation3URLVSSSgypSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:didFinishLaunchingWithOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)application:didFinishLaunchingWithOptions:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC11application_29didFinishLaunchingWithOptionsSbSo13UIApplicationC_SDySo0k6LaunchJ3KeyaypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:didFinishLaunchingWithOptions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "open", + "printedName": "open(_:sender:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + }, + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openURL:sender:handler:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC4open_6sender7handlery10Foundation3URLV_So15FBSDKURLOpening_pSgySb_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openURL:sender:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "open", + "printedName": "open(_:useSafariViewController:from:completionBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openBridgeAPIRequest:useSafariViewController:fromViewController:completionBlock:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC4open_23useSafariViewController4from15completionBlockySo21FBSDKBridgeAPIRequest_p_SbSo06UIViewI0CSgySo0M11APIResponseCctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openBridgeAPIRequest:useSafariViewController:fromViewController:completionBlock:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURLWithSafariViewController", + "printedName": "openURLWithSafariViewController(url:sender:from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "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": "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openURLWithSafariViewController:sender:fromViewController:handler:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC31openURLWithSafariViewController3url6sender4from7handlery10Foundation3URLV_So15FBSDKURLOpening_pSgSo06UIViewI0CSgySb_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openURLWithSafariViewController:sender:fromViewController:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "safariViewControllerDidFinish", + "printedName": "safariViewControllerDidFinish(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)safariViewControllerDidFinish:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29safariViewControllerDidFinishyySo08SFSafarifG0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "safariViewControllerDidFinish:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentationAnchor", + "printedName": "presentationAnchor(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIWindow", + "printedName": "UIKit.UIWindow", + "usr": "c:objc(cs)UIWindow" + }, + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationSession", + "printedName": "AuthenticationServices.ASWebAuthenticationSession", + "usr": "c:objc(cs)ASWebAuthenticationSession" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)presentationAnchorForWebAuthenticationSession:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "presentationAnchorForWebAuthenticationSession:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "_BridgeAPIProtocolNativeV1", + "children": [ + { + "kind": "Var", + "name": "appScheme", + "printedName": "appScheme", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)appScheme", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)appScheme", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataLengthThreshold", + "printedName": "dataLengthThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)dataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19dataLengthThresholdSuvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)dataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19dataLengthThresholdSuvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shouldIncludeAppIcon", + "printedName": "shouldIncludeAppIcon", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)shouldIncludeAppIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C20shouldIncludeAppIconSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)shouldIncludeAppIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C20shouldIncludeAppIconSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pasteboard", + "printedName": "pasteboard", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)pasteboard", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10pasteboardSo15FBSDKPasteboard_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)pasteboard", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10pasteboardSo15FBSDKPasteboard_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultMaxBase64DataLengthThreshold", + "printedName": "defaultMaxBase64DataLengthThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(cpy)defaultMaxBase64DataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C35defaultMaxBase64DataLengthThresholdSuvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(cm)defaultMaxBase64DataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C35defaultMaxBase64DataLengthThresholdSuvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appIcon", + "printedName": "appIcon", + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)appIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C7appIconSo7UIImageCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)appIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C7appIconSo7UIImageCSgvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appScheme:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)initWithAppScheme:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeACSSSg_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppScheme:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appScheme:pasteboard:dataLengthThreshold:shouldIncludeAppIcon:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + }, + { + "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": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appScheme10pasteboard19dataLengthThreshold20shouldIncludeAppIconACSSSg_So15FBSDKPasteboard_pSgSuSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "requestURL", + "printedName": "requestURL(actionID:scheme:methodName:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)requestURLWithActionID:scheme:methodName:parameters:error:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10requestURL8actionID6scheme10methodName10parameters10Foundation0H0VSS_S2SSDySSypGtKF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requestURLWithActionID:scheme:methodName:parameters:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "responseParameters", + "printedName": "responseParameters(actionID:queryParameters:cancelled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutablePointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutablePointer", + "printedName": "Swift.UnsafeMutablePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjCBool", + "printedName": "ObjectiveC.ObjCBool", + "usr": "s:10ObjectiveC8ObjCBoolV" + } + ], + "usr": "s:Sp" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)responseParametersForActionID:queryParameters:cancelled:error:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C18responseParameters8actionID05queryH09cancelledSDySSypGSS_AHSpy10ObjectiveC8ObjCBoolVGSgtKF", + "moduleName": "FBSDKCoreKit", + "objc_name": "responseParametersForActionID:queryParameters:cancelled:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)init", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1CACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bundle", + "printedName": "bundle", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationDeliverer", + "printedName": "notificationDeliverer", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:bundle:notificationDeliverer:internalUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactory6bundle21notificationDeliverer15internalUtilityAESo18FBSDKErrorCreating_p_So28FBSDKInfoDictionaryProviding_pSo27FBSDKNotificationDelivering_pSo013FBSDKInternalO0_ptcfc", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactory6bundle21notificationDeliverer15internalUtilityAESo18FBSDKErrorCreating_p_So28FBSDKInfoDictionaryProviding_pSo27FBSDKNotificationDelivering_pSo013FBSDKInternalO0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKBridgeAPIProtocolNativeV1", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIRequestFactory", + "printedName": "_BridgeAPIRequestFactory", + "children": [ + { + "kind": "Function", + "name": "bridgeAPIRequest", + "printedName": "bridgeAPIRequest(with:scheme:methodName:parameters:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "FBSDKBridgeAPIProtocolType", + "printedName": "FBSDKCoreKit.FBSDKBridgeAPIProtocolType", + "usr": "c:@E@FBSDKBridgeAPIProtocolType" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory(im)bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryC06bridgeD04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeD0_pSgSo0N15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIRequestFactory", + "printedName": "FBSDKCoreKit._BridgeAPIRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory(im)init", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKBridgeAPIRequestFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIResponseFactory", + "printedName": "_BridgeAPIResponseFactory", + "children": [ + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:responseURL:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponseCancelled", + "printedName": "createResponseCancelled(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25_BridgeAPIResponseFactoryC23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIResponseFactory", + "printedName": "FBSDKCoreKit._BridgeAPIResponseFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory(im)init", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BridgeAPIResponseCreating", + "printedName": "BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_DialogConfigurationMapBuilder", + "printedName": "_DialogConfigurationMapBuilder", + "children": [ + { + "kind": "Function", + "name": "buildDialogConfigurationMap", + "printedName": "buildDialogConfigurationMap(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : FBSDKCoreKit._DialogConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "_DialogConfiguration", + "printedName": "FBSDKCoreKit._DialogConfiguration", + "usr": "c:objc(cs)FBSDKDialogConfiguration" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder(im)buildDialogConfigurationMapWithRawConfigurations:", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderC05buildcdE04fromSDySSSo011FBSDKDialogD0CGSaySDySSypGG_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "buildDialogConfigurationMapWithRawConfigurations:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilder", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder(im)init", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKDialogConfigurationMapBuilder", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ErrorFactory", + "printedName": "_ErrorFactory", + "children": [ + { + "kind": "Function", + "name": "error", + "printedName": "error(code:userInfo:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)errorWithCode:userInfo:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC5error4code8userInfo7message010underlyingC0s0C0_pSi_SDySSypGSgSSSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "errorWithCode:userInfo:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(domain:code:userInfo:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)errorWithDomain:code:userInfo:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC5error6domain4code8userInfo7message010underlyingC0s0C0_pSS_SiSDySSypGSgSSSgsAJ_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "errorWithDomain:code:userInfo:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidArgumentError", + "printedName": "invalidArgumentError(name:value:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)invalidArgumentErrorWithName:value:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC015invalidArgumentC04name5value7message010underlyingC0s0C0_pSS_ypSgSSSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "invalidArgumentErrorWithName:value:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidArgumentError", + "printedName": "invalidArgumentError(domain:name:value:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)invalidArgumentErrorWithDomain:name:value:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC015invalidArgumentC06domain4name5value7message010underlyingC0s0C0_pSS_SSypSgSSSgsAJ_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "invalidArgumentErrorWithDomain:name:value:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requiredArgumentError", + "printedName": "requiredArgumentError(name:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)requiredArgumentErrorWithName:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC016requiredArgumentC04name7message010underlyingC0s0C0_pSS_SSSgsAH_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requiredArgumentErrorWithName:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requiredArgumentError", + "printedName": "requiredArgumentError(domain:name:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)requiredArgumentErrorWithDomain:name:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC016requiredArgumentC06domain4name7message010underlyingC0s0C0_pSS_S2SSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requiredArgumentErrorWithDomain:name:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unknownError", + "printedName": "unknownError(message:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)unknownErrorWithMessage:userInfo:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC07unknownC07message8userInfos0C0_pSSSg_SDySSypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "unknownErrorWithMessage:userInfo:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reportError", + "printedName": "reportError(code:domain:message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC06reportC04code6domain7messageySi_S2SSgtF", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC06reportC04code6domain7messageySi_S2SSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorFactory", + "printedName": "FBSDKCoreKit._ErrorFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)init", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "reporter", + "printedName": "reporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvp", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvg", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvs", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvM", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterAESo19FBSDKErrorReporting_p_tcfc", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterAESo19FBSDKErrorReporting_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKErrorFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_FBCloseIcon", + "printedName": "_FBCloseIcon", + "children": [ + { + "kind": "Function", + "name": "image", + "printedName": "image(size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)imageWithSize:", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC5image4sizeSo7UIImageCSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:primaryColor:secondaryColor:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)imageWithSize:primaryColor:secondaryColor:scale:", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC5image4size12primaryColor09secondaryH05scaleSo7UIImageCSgSo6CGSizeV_So7UIColorCAO12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FBCloseIcon", + "printedName": "FBSDKCoreKit._FBCloseIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)init", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKCloseIcon", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_FBLogo", + "printedName": "_FBLogo", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit7_FBLogoC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FBLogo", + "printedName": "FBSDKCoreKit._FBLogo", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo(im)init", + "mangledName": "$s12FBSDKCoreKit7_FBLogoCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo", + "mangledName": "$s12FBSDKCoreKit7_FBLogoC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKLogo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_FeatureManager", + "printedName": "_FeatureManager", + "children": [ + { + "kind": "Var", + "name": "featureManagerPrefix", + "printedName": "featureManagerPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(py)featureManagerPrefix", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07featureD6PrefixSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)featureManagerPrefix", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07featureD6PrefixSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(cpy)shared", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(cm)shared", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEnabled", + "printedName": "isEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)isEnabled:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC9isEnabledySbSo12FBSDKFeatureVF", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEnabled:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "check", + "printedName": "check(_:completionBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + }, + { + "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:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)checkFeature:completionBlock:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC5check_15completionBlockySo12FBSDKFeatureV_ySbctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "checkFeature:completionBlock:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableFeature", + "printedName": "disableFeature(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)disableFeature:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07disableC0yySo12FBSDKFeatureVF", + "moduleName": "FBSDKCoreKit", + "objc_name": "disableFeature:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "storageKey", + "printedName": "storageKey(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)storageKeyFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC10storageKey3forSSSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkGateKeeper", + "printedName": "checkGateKeeper(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)checkGateKeeperFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC15checkGateKeeper3forSbSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "defaultStatus", + "printedName": "defaultStatus(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)defaultStatusFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC13defaultStatus3forSbSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParentFeature", + "printedName": "getParentFeature(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SDKFeature?", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC09getParentC03forSo12FBSDKFeatureVSgAG_tF", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC09getParentC03forSo12FBSDKFeatureVSgAG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "featureName", + "printedName": "featureName(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)featureNameFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC11featureName3forSSSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)init", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "store", + "printedName": "store", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(gateKeeperManager:settings:store:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD08settings5storeAESo09FBSDKGateH8Managing_pXp_AA16SettingsProtocol_pSo19FBSDKDataPersisting_ptcfc", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD08settings5storeAESo09FBSDKGateH8Managing_pXp_AA16SettingsProtocol_pSo19FBSDKDataPersisting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKFeatureManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_HumanSilhouetteIcon", + "printedName": "_HumanSilhouetteIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_HumanSilhouetteIcon", + "printedName": "FBSDKCoreKit._HumanSilhouetteIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon(im)init", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKHumanSilhouetteIcon", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_MeasurementEvent", + "printedName": "_MeasurementEvent", + "children": [ + { + "kind": "Function", + "name": "postNotification", + "printedName": "postNotification(eventName:arguments:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent(im)postNotificationForEventName:args:", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventC16postNotification9eventName9argumentsySS_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "postNotificationForEventName:args:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MeasurementEvent", + "printedName": "FBSDKCoreKit._MeasurementEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent(im)init", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKMeasurementEvent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_PaymentObserver", + "printedName": "_PaymentObserver", + "children": [ + { + "kind": "Var", + "name": "isObservingTransactions", + "printedName": "isObservingTransactions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvs", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvM", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "paymentQueue", + "printedName": "paymentQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestorFactory", + "printedName": "requestorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(paymentQueue:paymentProductRequestorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserver", + "printedName": "FBSDKCoreKit._PaymentObserver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + }, + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)initWithPaymentQueue:paymentProductRequestorFactory:", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueue0E23ProductRequestorFactoryACSo09SKPaymentF0C_So012FBSDKPaymentgH8Creating_ptcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithPaymentQueue:paymentProductRequestorFactory:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startObservingTransactions", + "printedName": "startObservingTransactions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)startObservingTransactions", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC26startObservingTransactionsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "startObservingTransactions", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopObservingTransactions", + "printedName": "stopObservingTransactions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)stopObservingTransactions", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC25stopObservingTransactionsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "stopObservingTransactions", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserver", + "printedName": "FBSDKCoreKit._PaymentObserver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)init", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "paymentQueue", + "printedName": "paymentQueue(_:updatedTransactions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[StoreKit.SKPaymentTransaction]", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)paymentQueue:updatedTransactions:", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueue_19updatedTransactionsySo09SKPaymentF0C_SaySo0I11TransactionCGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "paymentQueue:updatedTransactions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleTransaction", + "printedName": "handleTransaction(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC17handleTransactionyySo09SKPaymentF0CF", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC17handleTransactionyySo09SKPaymentF0CF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKPaymentObserver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_PaymentProductRequestorFactory", + "printedName": "_PaymentProductRequestorFactory", + "children": [ + { + "kind": "Function", + "name": "createRequestor", + "printedName": "createRequestor(transaction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PaymentProductRequestor", + "printedName": "FBSDKCoreKit.PaymentProductRequestor", + "usr": "c:objc(cs)FBSDKPaymentProductRequestor" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory(im)createRequestorWithTransaction:", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC06createE011transactionSo012FBSDKPaymentdE0CSo20SKPaymentTransactionC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createRequestorWithTransaction:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorFactory", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory(im)init", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "store", + "printedName": "store", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loggerFactory", + "printedName": "loggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "productsRequestFactory", + "printedName": "productsRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appStoreReceiptProvider", + "printedName": "appStoreReceiptProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:eventLogger:gateKeeperManager:store:loggerFactory:productsRequestFactory:appStoreReceiptProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + }, + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settings11eventLogger17gateKeeperManager5store06loggerF0015productsRequestF023appStoreReceiptProviderAeA16SettingsProtocol_p_So17FBSDKEventLogging_pSo09FBSDKGateM8Managing_pXpSo19FBSDKDataPersisting_pSo21__FBSDKLoggerCreating_pSo013FBSDKProductsR8Creating_pSo08FBSDKApptU9Providing_ptcfc", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settings11eventLogger17gateKeeperManager5store06loggerF0015productsRequestF023appStoreReceiptProviderAeA16SettingsProtocol_p_So17FBSDKEventLogging_pSo09FBSDKGateM8Managing_pXpSo19FBSDKDataPersisting_pSo21__FBSDKLoggerCreating_pSo013FBSDKProductsR8Creating_pSo08FBSDKApptU9Providing_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKPaymentProductRequestorFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_RestrictiveEventFilter", + "printedName": "_RestrictiveEventFilter", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(py)eventName", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventNameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)eventName", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventNameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "restrictiveParameters", + "printedName": "restrictiveParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(py)restrictiveParameters", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC21restrictiveParametersSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)restrictiveParameters", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC21restrictiveParametersSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventName:restrictiveParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_RestrictiveEventFilter", + "printedName": "FBSDKCoreKit._RestrictiveEventFilter", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)initWithEventName:restrictiveParameters:", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventName21restrictiveParametersACSS_SDySSypGtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEventName:restrictiveParameters:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_RestrictiveEventFilter", + "printedName": "FBSDKCoreKit._RestrictiveEventFilter", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)init", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKRestrictiveEventFilter", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_SKAdNetworkEvent", + "printedName": "_SKAdNetworkEvent", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(py)eventName", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC9eventNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)eventName", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC9eventNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(py)values", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)values", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)setValues:", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvM", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "_SKAdNetworkEvent", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)initWithJSON:", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC4jsonACSgSDySSypG_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithJSON:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_SKAdNetworkEvent", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)init", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKSKAdNetworkEvent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_ViewImpressionLogger", + "printedName": "_ViewImpressionLogger", + "children": [ + { + "kind": "Var", + "name": "impressionTrackers", + "printedName": "impressionTrackers", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cpy)impressionTrackers", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)impressionTrackers", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)setImpressionTrackers:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(py)eventName", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameSo013FBSDKAppEventG0avp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)eventName", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameSo013FBSDKAppEventG0avg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "trackedImpressions", + "printedName": "trackedImpressions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(py)trackedImpressions", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)trackedImpressions", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)setTrackedImpressions:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)initWithEventName:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameACSo013FBSDKAppEventG0a_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEventName:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "retrieveLogger", + "printedName": "retrieveLogger(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)retrieveLoggerWith:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC08retrieveE04withACSo17FBSDKAppEventNamea_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC29applicationDidEnterBackgroundyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logImpression", + "printedName": "logImpression(withIdentifier:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)logImpressionWithIdentifier:parameters:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC03logD014withIdentifier10parametersySS_SDySo26FBSDKAppEventParameterNameaypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logImpressionWithIdentifier:parameters:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)init", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationDeliverer", + "printedName": "notificationDeliverer", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tokenWallet", + "printedName": "tokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(graphRequestFactory:eventLogger:notificationDeliverer:tokenWallet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactory05eventE021notificationDeliverer11tokenWalletAESo010FBSDKGraphiJ0_p_So17FBSDKEventLogging_pSo27FBSDKNotificationDelivering_pSo25FBSDKAccessTokenProviding_pXptcfc", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactory05eventE021notificationDeliverer11tokenWalletAESo010FBSDKGraphiJ0_p_So17FBSDKEventLogging_pSo27FBSDKNotificationDelivering_pSo25FBSDKAccessTokenProviding_pXptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKViewImpressionLogger", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_WebDialog", + "printedName": "_WebDialog", + "children": [ + { + "kind": "Var", + "name": "shouldDeferVisibility", + "printedName": "shouldDeferVisibility", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)shouldDeferVisibility", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)shouldDeferVisibility", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setShouldDeferVisibility:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKCoreKit.WebDialogDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)delegate", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.WebDialogDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebDialogDelegate", + "printedName": "FBSDKCoreKit.WebDialogDelegate", + "usr": "c:objc(pl)FBSDKWebDialogDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)delegate", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.WebDialogDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebDialogDelegate", + "printedName": "FBSDKCoreKit.WebDialogDelegate", + "usr": "c:objc(pl)FBSDKWebDialogDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setDelegate:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)name", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)name", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setName:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC4nameSSvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "webViewFrame", + "printedName": "webViewFrame", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)webViewFrame", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webViewFrame", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setWebViewFrame:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)parameters", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)parameters", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setParameters:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "backgroundView", + "printedName": "backgroundView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)backgroundView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)backgroundView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setBackgroundView:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dialogView", + "printedName": "dialogView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)dialogView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)dialogView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setDialogView:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)path", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)path", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setPath:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC4pathSSSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:parameters:webViewFrame:path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)initWithName:parameters:webViewFrame:path:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4name10parameters12webViewFrame4pathACSS_SDyS2SGSgSo6CGRectVSSSgtcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)initWithName:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)show", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4showyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addObservers", + "printedName": "addObservers()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)addObservers", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12addObserversyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deviceOrientationDidChangeNotification", + "printedName": "deviceOrientationDidChangeNotification(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)deviceOrientationDidChangeNotification:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC38deviceOrientationDidChangeNotificationyy10Foundation0I0VF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeObservers", + "printedName": "removeObservers()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)removeObservers", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC15removeObserversyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)cancel", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC6cancelyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "complete", + "printedName": "complete(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)completeWith:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8complete4withySDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismiss", + "printedName": "dismiss(animated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)dismissWithAnimated:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC7dismiss8animatedySb_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fail", + "printedName": "fail(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)failWith:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4fail4withys5Error_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateURL", + "printedName": "generateURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)generateURLAndReturnError:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC11generateURL10Foundation0F0VyKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showWebView", + "printedName": "showWebView()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)showWebView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC04showC4ViewyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationFrameForOrientation", + "printedName": "applicationFrameForOrientation()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)applicationFrameForOrientation", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC30applicationFrameForOrientationSo6CGRectVyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateView", + "printedName": "updateView(scale:alpha:animationDuration:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "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:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)updateViewWithScale:alpha:animationDuration:completion:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10updateView5scale5alpha17animationDuration10completiony12CoreGraphics7CGFloatV_AKSdySbcSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)init", + "mangledName": "$s12FBSDKCoreKit10_WebDialogCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "webDialogView", + "printedName": "webDialogView(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogView:didCompleteWithResults:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD4View_22didCompleteWithResultsySo08FBSDKWebdF0C_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogView:didCompleteWithResults:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogView", + "printedName": "webDialogView(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogView:didFailWithError:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD4View_16didFailWithErrorySo08FBSDKWebdF0C_s0J0_ptF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogView:didFailWithError:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogViewDidCancel", + "printedName": "webDialogViewDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogViewDidCancel:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD13ViewDidCancelyySo08FBSDKWebdF0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogViewDidCancel:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogViewDidFinishLoad", + "printedName": "webDialogViewDidFinishLoad(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogViewDidFinishLoad:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD17ViewDidFinishLoadyySo08FBSDKWebdF0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogViewDidFinishLoad:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "windowFinder", + "printedName": "windowFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:windowFinder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactory12windowFinderAESo18FBSDKErrorCreating_p_So19_FBSDKWindowFinding_ptcfc", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactory12windowFinderAESo18FBSDKErrorCreating_p_So19_FBSDKWindowFinding_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKWebDialog", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_WebViewFactory", + "printedName": "_WebViewFactory", + "children": [ + { + "kind": "Function", + "name": "createWebView", + "printedName": "createWebView(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebView", + "printedName": "FBSDKCoreKit.WebView", + "usr": "c:objc(pl)FBSDKWebView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory(im)createWebViewWithFrame:", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryC06createcD05frameSo08FBSDKWebD0_pSo6CGRectV_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createWebViewWithFrame:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewFactory", + "printedName": "FBSDKCoreKit._WebViewFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory(im)init", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKWebViewFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AccessToken", + "printedName": "AccessToken", + "children": [ + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "expiredPermissions", + "printedName": "expiredPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hasGranted", + "printedName": "hasGranted(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "declKind": "Func", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE10hasGrantedySbAC10PermissionOF", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE10hasGrantedySbAC10PermissionOF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAccessToken", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAccessToken", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ASWebAuthenticationSession", + "printedName": "ASWebAuthenticationSession", + "declKind": "Class", + "usr": "c:objc(cs)ASWebAuthenticationSession", + "moduleName": "AuthenticationServices", + "isOpen": true, + "intro_iOS": "12.0", + "objc_name": "ASWebAuthenticationSession", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "AuthenticationSessionProtocol", + "printedName": "AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Comparable", + "printedName": "Comparable", + "children": [ + { + "kind": "Function", + "name": "fb_clamped", + "printedName": "fb_clamped(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ClosedRange", + "printedName": "Swift.ClosedRange<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SN" + } + ], + "declKind": "Func", + "usr": "s:SL12FBSDKCoreKitE10fb_clamped2toxSNyxG_tF", + "mangledName": "$sSL12FBSDKCoreKitE10fb_clamped2toxSNyxG_tF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:SL", + "mangledName": "$sSL", + "moduleName": "Swift", + "genericSig": "<τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AEMReporter", + "printedName": "AEMReporter", + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter", + "mangledName": "$s8FBAEMKit11AEMReporterC", + "moduleName": "FBAEMKit", + "objc_name": "FBAEMReporter", + "declAttributes": [ + "Final", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_AEMReporterProtocol", + "printedName": "_AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP" + }, + { + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLink.swift", + "kind": "StringLiteral", + "offset": 396, + "length": 7, + "value": "\"FBSDKCoreKit.AppLink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10839, + "length": 17, + "value": "\"outputURLScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10884, + "length": 11, + "value": "\"outputURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10923, + "length": 11, + "value": "\"sourceURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10963, + "length": 12, + "value": "\"sourceHost\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11006, + "length": 14, + "value": "\"sourceScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11046, + "length": 9, + "value": "\"success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11078, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11108, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11175, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11204, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 609, + "length": 17, + "value": "\"FBSDKCoreKit.AppLinkNavigation\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 671, + "length": 5, + "value": "\"url\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 708, + "length": 14, + "value": "\"app_store_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 751, + "length": 10, + "value": "\"app_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 5, + "value": "\"web\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 810, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 840, + "length": 8, + "value": "\"iphone\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 871, + "length": 6, + "value": "\"ipad\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 910, + "length": 17, + "value": "\"should_fallback\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 954, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 493, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 493, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 318, + "length": 29, + "value": "\"FBSDKCoreKit.AppLinkResolverRequestBuilder\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkTarget.swift", + "kind": "StringLiteral", + "offset": 419, + "length": 13, + "value": "\"FBSDKCoreKit.AppLinkTarget\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 908, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 954, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 1141, + "length": 31, + "value": "\"com.facebook.sdk.kits.bitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18010, + "length": 15, + "value": "\"fb_al_inbound\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18059, + "length": 17, + "value": "\"fb_auto_applink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18210, + "length": 11, + "value": "\"targetURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18257, + "length": 15, + "value": "\"targetURLHost\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18312, + "length": 19, + "value": "\"referralTargetURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18365, + "length": 13, + "value": "\"referralURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18416, + "length": 17, + "value": "\"referralAppName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18464, + "length": 10, + "value": "\"inputURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18511, + "length": 16, + "value": "\"inputURLScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18567, + "length": 19, + "value": "\"core_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18631, + "length": 20, + "value": "\"login_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18700, + "length": 24, + "value": "\"marketing_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18773, + "length": 24, + "value": "\"messenger_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18843, + "length": 21, + "value": "\"places_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18909, + "length": 20, + "value": "\"share_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18971, + "length": 17, + "value": "\"tv_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 19024, + "length": 15, + "value": "\"SchemeWarning\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 369, + "length": 5, + "value": "\"aud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 398, + "length": 7, + "value": "\"email\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 427, + "length": 5, + "value": "\"exp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 461, + "length": 13, + "value": "\"family_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 502, + "length": 12, + "value": "\"given_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 5, + "value": "\"iat\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 563, + "length": 5, + "value": "\"iss\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 590, + "length": 5, + "value": "\"jti\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 624, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 660, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 690, + "length": 7, + "value": "\"nonce\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 723, + "length": 9, + "value": "\"picture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 754, + "length": 5, + "value": "\"sub\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 790, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 837, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 925, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 969, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1011, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1053, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1125, + "length": 14, + "value": "\"facebook.com\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1173, + "length": 15, + "value": "\".facebook.com\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 287, + "length": 25, + "value": "\"FBSDKCoreKit.AuthenticationTokenClaims\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BackgroundEventLogger.swift", + "kind": "StringLiteral", + "offset": 327, + "length": 37, + "value": "\"BGTaskSchedulerPermittedIdentifiers\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BackgroundEventLogger.swift", + "kind": "StringLiteral", + "offset": 1623, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13668, + "length": 74, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13700, + "length": 1, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13735, + "length": 5, + "value": "\"nil\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13741, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 444, + "length": 7, + "value": "\"event\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 529, + "length": 18, + "value": "\"deprecated_param\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 583, + "length": 21, + "value": "\"is_deprecated_event\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "BooleanLiteral", + "offset": 653, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "BooleanLiteral", + "offset": 1361, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1349, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1460, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "StringLiteral", + "offset": 1543, + "length": 4, + "value": "\"me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 32, + "value": "\"fb_mobile_achievement_unlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 24, + "value": "\"fb_mobile_activate_app\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 28, + "value": "\"fb_mobile_add_payment_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 23, + "value": "\"fb_mobile_add_to_cart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 27, + "value": "\"fb_mobile_add_to_wishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 33, + "value": "\"fb_mobile_complete_registration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 633, + "length": 24, + "value": "\"fb_mobile_content_view\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 30, + "value": "\"fb_mobile_initiated_checkout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 739, + "length": 26, + "value": "\"fb_mobile_level_achieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 20, + "value": "\"fb_mobile_purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 16, + "value": "\"fb_mobile_rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 856, + "length": 18, + "value": "\"fb_mobile_search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 897, + "length": 25, + "value": "\"fb_mobile_spent_credits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 31, + "value": "\"fb_mobile_tutorial_completion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 32, + "value": "\"fb_mobile_achievement_unlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 24, + "value": "\"fb_mobile_activate_app\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 28, + "value": "\"fb_mobile_add_payment_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 23, + "value": "\"fb_mobile_add_to_cart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 27, + "value": "\"fb_mobile_add_to_wishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 33, + "value": "\"fb_mobile_complete_registration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 633, + "length": 24, + "value": "\"fb_mobile_content_view\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 30, + "value": "\"fb_mobile_initiated_checkout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 739, + "length": 26, + "value": "\"fb_mobile_level_achieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 20, + "value": "\"fb_mobile_purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 16, + "value": "\"fb_mobile_rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 856, + "length": 18, + "value": "\"fb_mobile_search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 897, + "length": 25, + "value": "\"fb_mobile_spent_credits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 31, + "value": "\"fb_mobile_tutorial_completion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1036, + "length": 10, + "value": "\"_logTime\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1066, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 13, + "value": "\"_valueToSum\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1165, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1202, + "length": 17, + "value": "\"fb_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1241, + "length": 16, + "value": "\"fb_description\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1273, + "length": 10, + "value": "\"fb_level\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 21, + "value": "\"fb_max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 14, + "value": "\"fb_num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1393, + "length": 27, + "value": "\"fb_payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 24, + "value": "\"fb_registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 18, + "value": "\"fb_search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 12, + "value": "\"fb_success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 13, + "value": "\"fb_order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1620, + "length": 13, + "value": "\"fb_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1036, + "length": 10, + "value": "\"_logTime\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1066, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 13, + "value": "\"_valueToSum\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1165, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1202, + "length": 17, + "value": "\"fb_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1241, + "length": 16, + "value": "\"fb_description\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1273, + "length": 10, + "value": "\"fb_level\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 21, + "value": "\"fb_max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 14, + "value": "\"fb_num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1393, + "length": 27, + "value": "\"fb_payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 24, + "value": "\"fb_registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 18, + "value": "\"fb_search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 12, + "value": "\"fb_success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 13, + "value": "\"fb_order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1620, + "length": 13, + "value": "\"fb_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1988, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 13, + "value": "\"app_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2053, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2085, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2203, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2248, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2340, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2396, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2489, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2534, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2575, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1988, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 13, + "value": "\"app_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2053, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2085, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2203, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2248, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2340, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2396, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2489, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2534, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2575, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2754, + "length": 11, + "value": "\"user_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 10, + "value": "\"app_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2814, + "length": 13, + "value": "\"custom_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2850, + "length": 15, + "value": "\"custom_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2754, + "length": 11, + "value": "\"user_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 10, + "value": "\"app_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2814, + "length": 13, + "value": "\"custom_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2850, + "length": 15, + "value": "\"custom_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2962, + "length": 12, + "value": "\"event_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2994, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3027, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3078, + "length": 14, + "value": "\"content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3149, + "length": 18, + "value": "\"max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3186, + "length": 11, + "value": "\"num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3228, + "length": 24, + "value": "\"payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3281, + "length": 21, + "value": "\"registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 15, + "value": "\"search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3373, + "length": 10, + "value": "\"order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3400, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2962, + "length": 12, + "value": "\"event_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2994, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3027, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3078, + "length": 14, + "value": "\"content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3149, + "length": 18, + "value": "\"max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3186, + "length": 11, + "value": "\"num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3228, + "length": 24, + "value": "\"payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3281, + "length": 21, + "value": "\"registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 15, + "value": "\"search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3373, + "length": 10, + "value": "\"order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3400, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3516, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 13, + "value": "\"fb_login_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3588, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3624, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3664, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3751, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3805, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3843, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3899, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3946, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3992, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4037, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4078, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4148, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3516, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 13, + "value": "\"fb_login_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3588, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3624, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3664, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3751, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3805, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3843, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3899, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3946, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3992, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4037, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4078, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4148, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4234, + "length": 21, + "value": "\"AchievementUnlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4277, + "length": 13, + "value": "\"ActivateApp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4315, + "length": 16, + "value": "\"AddPaymentInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4351, + "length": 11, + "value": "\"AddToCart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4386, + "length": 15, + "value": "\"AddToWishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4432, + "length": 22, + "value": "\"CompleteRegistration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4476, + "length": 13, + "value": "\"ViewContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 18, + "value": "\"InitiateCheckout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4558, + "length": 15, + "value": "\"LevelAchieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4592, + "length": 10, + "value": "\"Purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4617, + "length": 6, + "value": "\"Rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4640, + "length": 8, + "value": "\"Search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4671, + "length": 14, + "value": "\"SpentCredits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4714, + "length": 20, + "value": "\"TutorialCompletion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4234, + "length": 21, + "value": "\"AchievementUnlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4277, + "length": 13, + "value": "\"ActivateApp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4315, + "length": 16, + "value": "\"AddPaymentInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4351, + "length": 11, + "value": "\"AddToCart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4386, + "length": 15, + "value": "\"AddToWishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4432, + "length": 22, + "value": "\"CompleteRegistration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4476, + "length": 13, + "value": "\"ViewContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 18, + "value": "\"InitiateCheckout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4558, + "length": 15, + "value": "\"LevelAchieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4592, + "length": 10, + "value": "\"Purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4617, + "length": 6, + "value": "\"Rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4640, + "length": 8, + "value": "\"Search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4671, + "length": 14, + "value": "\"SpentCredits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4714, + "length": 20, + "value": "\"TutorialCompletion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 15, + "value": "\"action_source\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4861, + "length": 18, + "value": "\"MobileAppInstall\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4906, + "length": 19, + "value": "\"install_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 15, + "value": "\"action_source\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4861, + "length": 18, + "value": "\"MobileAppInstall\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4906, + "length": 19, + "value": "\"install_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8628, + "length": 25, + "value": "\"data_processing_options\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8673, + "length": 33, + "value": "\"data_processing_options_country\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8724, + "length": 31, + "value": "\"data_processing_options_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8628, + "length": 25, + "value": "\"data_processing_options\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8673, + "length": 33, + "value": "\"data_processing_options_country\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8724, + "length": 31, + "value": "\"data_processing_options_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 10, + "value": "\"endpoint\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 12, + "value": "\"is_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 377, + "length": 12, + "value": "\"dataset_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 12, + "value": "\"access_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 10, + "value": "\"endpoint\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 12, + "value": "\"is_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 377, + "length": 12, + "value": "\"dataset_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 12, + "value": "\"access_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 22, + "value": "\"cloudbridge_settings\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 736, + "length": 20, + "value": "\"capi_gateway_queue\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "BooleanLiteral", + "offset": 849, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "BooleanLiteral", + "offset": 1029, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "Array", + "offset": 1083, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "IntegerLiteral", + "offset": 1163, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "StringLiteral", + "offset": 380, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 423, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 482, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "Array", + "offset": 518, + "length": 192, + "value": "[1009, 1004, 429, 503, 504]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "Array", + "offset": 977, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 485, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 569, + "length": 20, + "value": "\"oauth\/access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 12, + "value": "\"grant_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 654, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 689, + "length": 11, + "value": "\"client_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 728, + "length": 12, + "value": "\"expires_at\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 29, + "value": "\"data_access_expiration_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 841, + "length": 12, + "value": "\"permission\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 878, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 912, + "length": 9, + "value": "\"granted\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 948, + "length": 10, + "value": "\"declined\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 984, + "length": 9, + "value": "\"expired\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1077, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1082, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1087, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1159, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1164, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1211, + "length": 21, + "value": "\"fb_extend_sso_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1311, + "length": 16, + "value": "\"me\/permissions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1370, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/MACARuleMatchingManager.swift", + "kind": "BooleanLiteral", + "offset": 357, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/MACARuleMatchingManager.swift", + "kind": "Array", + "offset": 422, + "length": 262, + "value": "[\"event\", \"_locale\", \"_appVersion\", \"_deviceOS\", \"_platform\", \"_deviceModel\", \"_nativeAppID\", \"_nativeAppShortVersion\", \"_timezone\", \"_carrier\", \"_deviceOSTypeName\", \"_deviceOSVersion\", \"_remainingDiskGB\"]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7931, + "length": 16, + "value": "\"public_profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 15, + "value": "\"user_about_me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8060, + "length": 20, + "value": "\"user_actions.books\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8109, + "length": 21, + "value": "\"user_action.fitness\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8157, + "length": 20, + "value": "\"user_actions.music\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 19, + "value": "\"user_actions.news\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8249, + "length": 20, + "value": "\"user_actions.video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8292, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8338, + "length": 24, + "value": "\"user_education_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8383, + "length": 13, + "value": "\"user_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8424, + "length": 21, + "value": "\"user_games_activity\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8466, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8502, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8537, + "length": 12, + "value": "\"user_likes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8572, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8615, + "length": 21, + "value": "\"user_managed_groups\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8657, + "length": 13, + "value": "\"user_photos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8690, + "length": 12, + "value": "\"user_posts\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8730, + "length": 20, + "value": "\"user_relationships\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8784, + "length": 27, + "value": "\"user_relationship_details\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8842, + "length": 24, + "value": "\"user_religion_politics\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8893, + "length": 20, + "value": "\"user_tagged_places\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8934, + "length": 13, + "value": "\"user_videos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8969, + "length": 14, + "value": "\"user_website\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9009, + "length": 19, + "value": "\"user_work_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9060, + "length": 25, + "value": "\"read_custom_friendlists\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9108, + "length": 15, + "value": "\"read_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 32, + "value": "\"read_audience_network_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9221, + "length": 21, + "value": "\"read_page_mailboxes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9266, + "length": 17, + "value": "\"pages_show_list\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9308, + "length": 18, + "value": "\"pages_manage_cta\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 31, + "value": "\"pages_manage_instant_articles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9412, + "length": 10, + "value": "\"ads_read\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9441, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9475, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7931, + "length": 16, + "value": "\"public_profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 15, + "value": "\"user_about_me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8060, + "length": 20, + "value": "\"user_actions.books\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8109, + "length": 21, + "value": "\"user_action.fitness\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8157, + "length": 20, + "value": "\"user_actions.music\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 19, + "value": "\"user_actions.news\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8249, + "length": 20, + "value": "\"user_actions.video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8292, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8338, + "length": 24, + "value": "\"user_education_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8383, + "length": 13, + "value": "\"user_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8424, + "length": 21, + "value": "\"user_games_activity\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8466, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8502, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8537, + "length": 12, + "value": "\"user_likes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8572, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8615, + "length": 21, + "value": "\"user_managed_groups\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8657, + "length": 13, + "value": "\"user_photos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8690, + "length": 12, + "value": "\"user_posts\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8730, + "length": 20, + "value": "\"user_relationships\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8784, + "length": 27, + "value": "\"user_relationship_details\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8842, + "length": 24, + "value": "\"user_religion_politics\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8893, + "length": 20, + "value": "\"user_tagged_places\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8934, + "length": 13, + "value": "\"user_videos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8969, + "length": 14, + "value": "\"user_website\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9009, + "length": 19, + "value": "\"user_work_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9060, + "length": 25, + "value": "\"read_custom_friendlists\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9108, + "length": 15, + "value": "\"read_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 32, + "value": "\"read_audience_network_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9221, + "length": 21, + "value": "\"read_page_mailboxes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9266, + "length": 17, + "value": "\"pages_show_list\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9308, + "length": 18, + "value": "\"pages_manage_cta\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 31, + "value": "\"pages_manage_instant_articles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9412, + "length": 10, + "value": "\"ads_read\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9441, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9475, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 591, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 699, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 806, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 5, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 591, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 699, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 806, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 5, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2718, + "length": 7, + "value": "\"graph\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2748, + "length": 9, + "value": "\"picture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2857, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2857, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 292, + "length": 12, + "value": "\"MM\/dd\/yyyy\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5901, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5957, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6060, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6095, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6129, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5901, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5957, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6060, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6095, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6129, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6238, + "length": 4, + "value": "\"me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6275, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6316, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6378, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6404, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6439, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6473, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6505, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6378, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6404, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6439, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6473, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6505, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6725, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6744, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6763, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ProfileProviding.swift", + "kind": "StringLiteral", + "offset": 2627, + "length": 46, + "value": "\"com.facebook.sdk.FBSDKProfile.currentProfile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile.swift", + "kind": "BooleanLiteral", + "offset": 3836, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile.swift", + "kind": "StringLiteral", + "offset": 858, + "length": 7, + "value": "\"FBSDKCoreKit.Profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "BooleanLiteral", + "offset": 365, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "Array", + "offset": 426, + "length": 3246, + "value": "[\"_currency\", \"_valueToSum\", \"fb_availability\", \"fb_body_style\", \"fb_checkin_date\", \"fb_checkout_date\", \"fb_city\", \"fb_condition_of_vehicle\", \"fb_content_category\", \"fb_content_ids\", \"fb_content_name\", \"fb_content_type\", \"fb_contents\", \"fb_country\", \"fb_currency\", \"fb_delivery_category\", \"fb_departing_arrival_date\", \"fb_departing_departure_date\", \"fb_destination_airport\", \"fb_destination_ids\", \"fb_dma_code\", \"fb_drivetrain\", \"fb_exterior_color\", \"fb_fuel_type\", \"fb_hotel_score\", \"fb_interior_color\", \"fb_lease_end_date\", \"fb_lease_start_date\", \"fb_listing_type\", \"fb_make\", \"fb_mileage.unit\", \"fb_mileage.value\", \"fb_model\", \"fb_neighborhood\", \"fb_num_adults\", \"fb_num_children\", \"fb_num_infants\", \"fb_num_items\", \"fb_order_id\", \"fb_origin_airport\", \"fb_postal_code\", \"fb_predicted_ltv\", \"fb_preferred_baths_range\", \"fb_preferred_beds_range\", \"fb_preferred_neighborhoods\", \"fb_preferred_num_stops\", \"fb_preferred_price_range\", \"fb_preferred_star_ratings\", \"fb_price\", \"fb_property_type\", \"fb_region\", \"fb_returning_arrival_date\", \"fb_returning_departure_date\", \"fb_search_string\", \"fb_state_of_vehicle\", \"fb_status\", \"fb_suggested_destinations\", \"fb_suggested_home_listings\", \"fb_suggested_hotels\", \"fb_suggested_jobs\", \"fb_suggested_local_service_businesses\", \"fb_suggested_location_based_items\", \"fb_suggested_vehicles\", \"fb_transmission\", \"fb_travel_class\", \"fb_travel_end\", \"fb_travel_start\", \"fb_trim\", \"fb_user_bucket\", \"fb_value\", \"fb_vin\", \"fb_year\", \"lead_event_source\", \"predicted_ltv\", \"product_catalog_id\", \"app_user_id\", \"appVersion\", \"_eventName\", \"_eventName_md5\", \"_currency\", \"_implicitlyLogged\", \"_inBackground\", \"_isTimedEvent\", \"_logTime\", \"fb_order_id\", \"_session_id\", \"_ui\", \"_valueToSum\", \"_valueToUpdate\", \"_is_fb_codeless\", \"_is_suggested_event\", \"_fb_pixel_referral_id\", \"fb_pixel_id\", \"trace_id\", \"user_agent\", \"subscription_id\", \"predicted_ltv\", \"event_id\", \"_restrictedParams\", \"_onDeviceParams\", \"purchase_valid_result_type\", \"core_lib_included\", \"login_lib_included\", \"share_lib_included\", \"place_lib_included\", \"messenger_lib_included\", \"applinks_lib_included\", \"marketing_lib_included\", \"_codeless_action\", \"sdk_initialized\", \"billing_client_lib_included\", \"billing_service_lib_included\", \"user_data_keys\", \"device_push_token\", \"fb_mobile_pckg_fp\", \"fb_mobile_app_cert_hash\", \"aggregate_id\", \"anonymous_id\", \"campaign_ids\", \"fb_post_attachment\", \"receipt_data\", \"ad_type\", \"fb_content\", \"fb_content_id\", \"fb_content_type\", \"fb_currency\", \"fb_description\", \"fb_level\", \"fb_max_rating_value\", \"fb_num_items\", \"fb_order_id\", \"fb_payment_info_available\", \"fb_registration_method\", \"fb_search_string\", \"fb_success\", \"pm\", \"_audiencePropertyIds\", \"cs_maca\"]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "Array", + "offset": 3721, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 3661, + "length": 460, + "value": "\": Please set a value for FacebookAutoLogAppEventsEnabled. Set the flag to TRUE if you want to collect app install, app launch and in-app purchase events automatically. To request user consent before collecting data, set the flag value to FALSE, then change to TRUE once user consent is received. Learn more: https:\/\/developers.facebook.com\/docs\/app-events\/getting-started-app-events-ios#disable-auto-events.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 209, + "value": "\": You haven't set a value for FacebookAdvertiserIDCollectionEnabled. Set the flag to TRUE if you want to collect Advertiser ID for better advertising and analytics results.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4441, + "length": 250, + "value": "\": The value for FacebookAdvertiserIDCollectionEnabled is currently set to FALSE so you're sending app events without collecting Advertiser ID. This can affect the quality of your advertising and analytics results.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4842, + "length": 7, + "value": "\"usage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4897, + "length": 9, + "value": "\"initial\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4955, + "length": 10, + "value": "\"previous\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 5013, + "length": 9, + "value": "\"current\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2021, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2222, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2405, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 25, + "value": "\"FacebookUrlSchemeSuffix\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 340, + "length": 21, + "value": "\"FacebookClientToken\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 21, + "value": "\"FacebookDisplayName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 20, + "value": "\"FacebookDomainPart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 33, + "value": "\"FacebookAutoLogAppEventsEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 39, + "value": "\"FacebookAdvertiserIDCollectionEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 33, + "value": "\"FacebookCodelessDebugLogEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 703, + "length": 25, + "value": "\"FacebookLoggingBehavior\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 746, + "length": 15, + "value": "\"FacebookAppID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 796, + "length": 32, + "value": "\"FacebookJpegCompressionQuality\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 867, + "length": 34, + "value": "\"FacebookSKAdNetworkReportEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 939, + "length": 57, + "value": "\"com.facebook.sdk:FBSDKSettingsAdvertisingTrackingStatus\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 54, + "value": "\"com.facebook.sdk:FBSDKSettingsLimitEventAndDataUsage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 67, + "value": "\"com.facebook.sdk:FBSDKSettingsUseCachedValuesForExpensiveMetadata\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 53, + "value": "\"com.facebook.sdk.FBSDKSettingsUseTokenOptimizations\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 53, + "value": "\"com.facebook.sdk:FBSDKSettingsDataProcessingOptions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1394, + "length": 39, + "value": "\"com.facebook.sdk:FBSDKSettingsBitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKSettingsInstallTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1560, + "length": 69, + "value": "\"com.facebook.sdk:FBSDKSettingsSetAdvertiserTrackingEnabledTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 25, + "value": "\"FacebookUrlSchemeSuffix\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 340, + "length": 21, + "value": "\"FacebookClientToken\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 21, + "value": "\"FacebookDisplayName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 20, + "value": "\"FacebookDomainPart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 33, + "value": "\"FacebookAutoLogAppEventsEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 39, + "value": "\"FacebookAdvertiserIDCollectionEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 33, + "value": "\"FacebookCodelessDebugLogEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 703, + "length": 25, + "value": "\"FacebookLoggingBehavior\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 746, + "length": 15, + "value": "\"FacebookAppID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 796, + "length": 32, + "value": "\"FacebookJpegCompressionQuality\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 867, + "length": 34, + "value": "\"FacebookSKAdNetworkReportEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 939, + "length": 57, + "value": "\"com.facebook.sdk:FBSDKSettingsAdvertisingTrackingStatus\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 54, + "value": "\"com.facebook.sdk:FBSDKSettingsLimitEventAndDataUsage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 67, + "value": "\"com.facebook.sdk:FBSDKSettingsUseCachedValuesForExpensiveMetadata\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 53, + "value": "\"com.facebook.sdk.FBSDKSettingsUseTokenOptimizations\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 53, + "value": "\"com.facebook.sdk:FBSDKSettingsDataProcessingOptions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1394, + "length": 39, + "value": "\"com.facebook.sdk:FBSDKSettingsBitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKSettingsInstallTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1560, + "length": 69, + "value": "\"com.facebook.sdk:FBSDKSettingsSetAdvertiserTrackingEnabledTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "FloatLiteral", + "offset": 1347, + "length": 3, + "value": "0.9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 5615, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 6356, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 7159, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 7308, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "StringLiteral", + "offset": 12338, + "length": 5, + "value": "\"ldu\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 16945, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "StringLiteral", + "offset": 20579, + "length": 391, + "value": "\"As of v9.0, you must initialize the SDK prior to calling any methods or setting any properties. You can do this by calling `ApplicationDelegate.application(_:didFinishLaunchingWithOptions:)`. Learn more: https:\/\/developers.facebook.com\/docs\/ios\/getting-started. If no `UIApplication` instance is available, you can use `ApplicationDelegate.initializeSDK()`.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ShareDialogConfiguration.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ShareDialogConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 314, + "length": 52, + "value": "\"com.facebook.sdk.v4.FBSDKAccessTokenInformationKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 404, + "length": 60, + "value": "\"com.facebook.sdk.v4.FBSDKAccessTokenInformationKeychainKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 514, + "length": 60, + "value": "\"com.facebook.sdk.v9.FBSDKAuthenticationTokenInformationKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 620, + "length": 68, + "value": "\"com.facebook.sdk.v9.FBSDKAuthenticationTokenInformationKeychainKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 716, + "length": 11, + "value": "\"tokenUUID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 758, + "length": 14, + "value": "\"tokenEncoded\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/_AccessTokenExpirer.swift", + "kind": "StringLiteral", + "offset": 483, + "length": 19, + "value": "\"FBSDKCoreKit._AccessTokenExpirer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 682, + "length": 59, + "value": "\"com.apple.AuthenticationServices.WebAuthenticationSession\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 777, + "length": 11, + "value": "\"com.apple\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 8, + "value": "\"bridge\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1420, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1519, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1542, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 445, + "length": 10, + "value": "\"FBSDKCoreKit._BridgeAPI\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "IntegerLiteral", + "offset": 693, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "IntegerLiteral", + "offset": 700, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1417, + "length": 5, + "value": "\"png\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1486, + "length": 10, + "value": "\"isBase64\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1527, + "length": 14, + "value": "\"isPasteboard\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1563, + "length": 5, + "value": "\"tag\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 32, + "value": "\"fbAppBridgeType_jsonReadyValue\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 39, + "value": "\"com.facebook.Facebook.FBAppBridgeType\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 15, + "value": "\"CFBundleIcons\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1802, + "length": 21, + "value": "\"CFBundlePrimaryIcon\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1851, + "length": 19, + "value": "\"CFBundleIconFiles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1926, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1965, + "length": 16, + "value": "\"method_results\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 19, + "value": "\"completionGesture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2061, + "length": 8, + "value": "\"cancel\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2094, + "length": 8, + "value": "\"dialog\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2177, + "length": 11, + "value": "\"action_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2214, + "length": 10, + "value": "\"app_icon\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2250, + "length": 10, + "value": "\"app_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2289, + "length": 13, + "value": "\"sdk_version\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2360, + "length": 13, + "value": "\"bridge_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2398, + "length": 13, + "value": "\"method_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2466, + "length": 6, + "value": "\"code\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2497, + "length": 8, + "value": "\"domain\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2532, + "length": 11, + "value": "\"user_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 457, + "length": 26, + "value": "\"FBSDKCoreKit._BridgeAPIProtocolNativeV1\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 587, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 615, + "length": 5, + "value": "\"url\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 647, + "length": 10, + "value": "\"versions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 529, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 578, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKErrorDeveloperMessageKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 44, + "value": "\"com.facebook.sdk:FBSDKErrorArgumentNameKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 45, + "value": "\"com.facebook.sdk:FBSDKErrorArgumentValueKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/FeatureManager\/_FeatureManager.swift", + "kind": "StringLiteral", + "offset": 571, + "length": 51, + "value": "\"com.facebook.sdk:FBSDKFeatureManager.FBSDKFeature\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_MeasurementEvent.swift", + "kind": "StringLiteral", + "offset": 691, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_MeasurementEvent.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 12, + "value": "\"event_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/_PaymentObserver.swift", + "kind": "BooleanLiteral", + "offset": 594, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/_PaymentObserver.swift", + "kind": "StringLiteral", + "offset": 514, + "length": 16, + "value": "\"FBSDKCoreKit._PaymentObserver\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/_RestrictiveEventFilter.swift", + "kind": "StringLiteral", + "offset": 459, + "length": 23, + "value": "\"FBSDKCoreKit._RestrictiveEventFilter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 604, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 10, + "value": "\"currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 711, + "length": 8, + "value": "\"amount\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 453, + "length": 17, + "value": "\"FBSDKCoreKit._SKAdNetworkEvent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/UI\/_ViewImpressionLogger.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 21, + "value": "\"FBSDKCoreKit._ViewImpressionLogger\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "BooleanLiteral", + "offset": 507, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "FloatLiteral", + "offset": 785, + "length": 3, + "value": "0.2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "FloatLiteral", + "offset": 814, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 9, + "value": "\"display\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 913, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 948, + "length": 14, + "value": "\"redirect_uri\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 986, + "length": 8, + "value": "\"app_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1024, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1103, + "length": 7, + "value": "\"touch\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1139, + "length": 35, + "value": "\"ios-\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1173, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1200, + "length": 21, + "value": "\"fbconnect:\/\/success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 447, + "length": 10, + "value": "\"FBSDKCoreKit._WebDialog\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos.swiftinterface b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.private.swiftinterface similarity index 51% rename from ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos.swiftinterface rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.private.swiftinterface index 9cf1249a..8bba5234 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos.swiftinterface +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,14 +1,19 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-tvos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit +// 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-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import AdSupport +import AuthenticationServices +import FBAEMKit @_exported import FBSDKCoreKit import FBSDKCoreKit_Basics import Foundation +import SafariServices import StoreKit import Swift import UIKit import _Concurrency +import _StringProcessing extension FBSDKCoreKit.AccessToken { public var permissions: Swift.Set { get @@ -21,6 +26,69 @@ extension FBSDKCoreKit.AccessToken { } public func hasGranted(_ permission: FBSDKCoreKit.Permission) -> Swift.Bool } +@objcMembers @objc(FBSDKAppLink) final public class AppLink : ObjectiveC.NSObject, FBSDKCoreKit._AppLinkProtocol { + @objc final public let sourceURL: Foundation.URL? + @objc final public let targets: [FBSDKCoreKit.AppLinkTargetProtocol] + @objc final public let webURL: Foundation.URL? + @objc final public var isBackToReferrer: Swift.Bool + @objc(initWithSourceURL:targets:webURL:) convenience public init(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLink. This method will be removed in future releases.\"") + @objc(appLinkWithSourceURL:targets:webURL:) public static func appLink(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?) -> FBSDKCoreKit._AppLinkProtocol + @objc(initWithSourceURL:targets:webURL:isBackToReferrer:) public init(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?, isBackToReferrer: Swift.Bool) + @objc deinit +} +@available(iOSApplicationExtension, unavailable, message: "Not available in app extension") +@objcMembers @objc(FBSDKAppLinkNavigation) final public class AppLinkNavigation : ObjectiveC.NSObject { + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `defaultResolver` instead.") + @nonobjc public static var `default`: FBSDKCoreKit.AppLinkResolving { + get + set + } + @objc(defaultResolver) public static var defaultResolver: FBSDKCoreKit.AppLinkResolving { + @objc get + @objc set + } + @objc final public let extras: [Swift.String : Any] + @objc final public let appLinkData: [Swift.String : Any] + @objc final public let appLink: FBSDKCoreKit.AppLink + @objc final public var navigationType: FBSDKCoreKit.AppLinkNavigationType { + @objc get + } + @objc(initWithAppLink:extras:appLinkData:) public init(appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any]) + @available(*, deprecated, message: "Please use init(appLink:extras:appLinkData:) to instantiate an `AppLinkNavigation`.\nThis method will be removed in the next major version.\"") + @objc(initWithAppLink:extras:appLinkData:settings:) convenience public init(appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any], settings: FBSDKCoreKit.SettingsProtocol) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLinkNavigation. This method will be removed in future releases.\"") + @objc(navigationWithAppLink:extras:appLinkData:settings:) public static func navigation(with appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any], settings: FBSDKCoreKit.SettingsProtocol) -> FBSDKCoreKit.AppLinkNavigation + @objc(callbackAppLinkDataForAppWithName:url:) public static func callbackAppLinkData(forApp appName: Swift.String, url: Swift.String) -> [Swift.String : [Swift.String : Swift.String]] + @available(swift, obsoleted: 0.1) + @objc(navigate:) final public func navigate(error errorPointer: Foundation.NSErrorPointer) -> FBSDKCoreKit.AppLinkNavigationType + @nonobjc final public func navigate() throws -> FBSDKCoreKit.AppLinkNavigationType + @objc(resolveAppLink:handler:) public static func resolveAppLink(_ destination: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @objc(resolveAppLink:resolver:handler:) public static func resolveAppLink(_ destination: Foundation.URL, resolver: FBSDKCoreKit.AppLinkResolving, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @available(swift, obsoleted: 0.1) + @objc(navigateToAppLink:error:) public static func navigate(to appLink: FBSDKCoreKit.AppLink, errorPointer: Foundation.ErrorPointer) -> FBSDKCoreKit.AppLinkNavigationType + @nonobjc public static func navigate(to appLink: FBSDKCoreKit.AppLink) throws -> FBSDKCoreKit.AppLinkNavigationType + @objc(navigationTypeForLink:) public static func navigationType(for appLink: FBSDKCoreKit.AppLink) -> FBSDKCoreKit.AppLinkNavigationType + @objc(navigateToURL:handler:) public static func navigate(to destination: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkNavigationBlock) + @objc(navigateToURL:resolver:handler:) public static func navigate(to destination: Foundation.URL, resolver: FBSDKCoreKit.AppLinkResolving, handler: @escaping FBSDKCoreKit.AppLinkNavigationBlock) + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKAppLinkResolver) final public class AppLinkResolver : ObjectiveC.NSObject, FBSDKCoreKit.AppLinkResolving { + @objc final public func appLink(from url: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @objc @available(iOSApplicationExtension, unavailable, message: "Not available in app extension") + final public func appLinks(from urls: [Foundation.URL], handler: @escaping FBSDKCoreKit.AppLinksBlock) + @objc override dynamic public init() + @objc deinit +} +@objcMembers @objc(FBSDKAppLinkTarget) final public class AppLinkTarget : ObjectiveC.NSObject, FBSDKCoreKit.AppLinkTargetProtocol { + @objc final public let url: Foundation.URL? + @objc final public let appStoreId: Swift.String? + @objc final public let appName: Swift.String + @objc(initWithURL:appStoreId:appName:) public init(url: Foundation.URL?, appStoreId: Swift.String?, appName: Swift.String) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLinkTarget. This method will be removed in future releases.\"") + @objc(appLinkTargetWithURL:appStoreId:appName:) public static func appLinkTargetWithURL(url: Foundation.URL?, appStoreId: Swift.String?, appName: Swift.String) -> FBSDKCoreKit.AppLinkTarget + @objc deinit +} @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKApplicationDelegate) final public class ApplicationDelegate : ObjectiveC.NSObject { @objc(sharedInstance) public static var shared: FBSDKCoreKit.ApplicationDelegate { get @@ -67,15 +135,45 @@ extension FBSDKCoreKit.AccessToken { @objc func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) @objc func recordEvent(_ parameters: [Swift.String : Any]) } +@_inheritsConvenienceInitializers @objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { + @objc public static let shared: FBSDKCoreKit._InternalURLOpener + @objc override dynamic public init() + @objc deinit +} @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKIcon) open class FBIcon : ObjectiveC.NSObject { - @objc open func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? - @objc public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, scale: CoreGraphics.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? + @objc open func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, scale: CoreFoundation.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? @objc override dynamic public init() @objc deinit } +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { + @objc @_Concurrency.MainActor(unsafe) final public var pictureMode: FBSDKCoreKit.Profile.PictureMode { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var profileID: Swift.String { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreFoundation.CGRect { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc override final public var contentMode: UIKit.UIView.ContentMode { + @objc get + @objc set + } + @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, profile: FBSDKCoreKit.Profile? = nil) + @objc(initWithProfile:) @_Concurrency.MainActor(unsafe) convenience public init(profile: FBSDKCoreKit.Profile? = nil) + @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreFoundation.CGRect) + @objc(initWithCoder:) @_Concurrency.MainActor(unsafe) required dynamic public init?(coder: Foundation.NSCoder) + @objc @_Concurrency.MainActor(unsafe) final public func setNeedsImageUpdate() + @objc deinit +} public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager +public typealias CAPIGBlock = (Swift.Bool) -> Swift.Void @objc @_inheritsConvenienceInitializers @objcMembers final public class FBSDKAppEventsCAPIManager : ObjectiveC.NSObject, FBSDKCoreKit.CAPIReporter { @objc public static let shared: FBSDKCoreKit.FBSDKAppEventsCAPIManager @objc override dynamic public init() @@ -96,7 +194,7 @@ public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager } @objc override dynamic public init() @objc public func configure(datasetID: Swift.String, url: Swift.String, accessKey: Swift.String) - @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any]) + @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any], userAgent: Swift.String) @objc deinit } final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @@ -104,6 +202,10 @@ final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @objc final public func createKeychainStore(service: Swift.String, accessGroup: Swift.String?) -> FBSDKCoreKit.KeychainStoreProtocol @objc deinit } +@objc(FBSDKMACARuleMatching) public protocol MACARuleMatching { + @objc func enable() + @objc func processParameters(_ params: Foundation.NSDictionary?, event: Swift.String?) -> Foundation.NSDictionary? +} public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { case publicProfile case userFriends @@ -156,6 +258,69 @@ public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { get } } +extension FBSDKCoreKit.Profile { + @objc(FBSDKProfilePictureMode) public enum PictureMode : Swift.UInt { + case square + case normal + case album + case small + case large + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreFoundation.CGSize) -> Foundation.URL? +} +extension FBSDKCoreKit.Profile { + @objc(loadCurrentProfileWithCompletion:) public static func loadCurrentProfile(completion: FBSDKCoreKit.ProfileBlock?) +} +extension FBSDKCoreKit.Profile : FBSDKCoreKit.ProfileProviding { + @objc(currentProfile) public static var current: FBSDKCoreKit.Profile? { + @objc get + @objc set + } + @objc public static func fetchCachedProfile() -> Self? +} +extension FBSDKCoreKit.Profile : Foundation.NSSecureCoding { + @objc public static var supportsSecureCoding: Swift.Bool { + @objc get + } + @objc convenience dynamic public init?(coder decoder: Foundation.NSCoder) + @objc final public func encode(with encoder: Foundation.NSCoder) +} +@objcMembers @objc(FBSDKProfile) final public class Profile : ObjectiveC.NSObject { + @objc final public let userID: FBSDKCoreKit.UserIdentifier + @objc final public let firstName: Swift.String? + @objc final public let middleName: Swift.String? + @objc final public let lastName: Swift.String? + @objc final public let name: Swift.String? + @objc final public let linkURL: Foundation.URL? + @objc final public let refreshDate: Foundation.Date + @objc final public let imageURL: Foundation.URL? + @objc final public let email: Swift.String? + @objc final public let friendIDs: [FBSDKCoreKit.UserIdentifier]? + @objc final public let birthday: Foundation.Date? + @objc final public let ageRange: FBSDKCoreKit.UserAgeRange? + @objc final public let hometown: FBSDKCoreKit.Location? + @objc final public let location: FBSDKCoreKit.Location? + @objc final public let gender: Swift.String? + @objc public static var isUpdatedWithAccessTokenChange: Swift.Bool { + @objc get + @objc set + } + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:) convenience public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String?, middleName: Swift.String?, lastName: Swift.String?, name: Swift.String?, linkURL: Foundation.URL?, refreshDate: Foundation.Date?) + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:) convenience public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String? = nil, middleName: Swift.String? = nil, lastName: Swift.String? = nil, name: Swift.String? = nil, linkURL: Foundation.URL? = nil, refreshDate: Foundation.Date? = Date(), imageURL: Foundation.URL? = nil, email: Swift.String? = nil, friendIDs: [FBSDKCoreKit.UserIdentifier]? = nil, birthday: Foundation.Date? = nil, ageRange: FBSDKCoreKit.UserAgeRange? = nil, hometown: FBSDKCoreKit.Location? = nil, location: FBSDKCoreKit.Location? = nil, gender: Swift.String? = nil) + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:) public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String?, middleName: Swift.String?, lastName: Swift.String?, name: Swift.String?, linkURL: Foundation.URL?, refreshDate: Foundation.Date?, imageURL: Foundation.URL?, email: Swift.String?, friendIDs: [FBSDKCoreKit.UserIdentifier]?, birthday: Foundation.Date?, ageRange: FBSDKCoreKit.UserAgeRange?, hometown: FBSDKCoreKit.Location?, location: FBSDKCoreKit.Location?, gender: Swift.String?, isLimited: Swift.Bool) + @available(*, deprecated, message: "This method is deprecated and will be removed in the next major release. Use `isUpdatedWithAccessTokenChange` instead.") + @objc(enableUpdatesOnAccessTokenChange:) public static func enableUpdatesOnAccessTokenChange(_ enabled: Swift.Bool) + @objc deinit +} +@objc(FBSDKProfileProviding) public protocol ProfileProviding { + @objc(currentProfile) static var current: FBSDKCoreKit.Profile? { get set } + @objc static func fetchCachedProfile() -> FBSDKCoreKit.Profile? +} public typealias LoginTooltipBlock = (FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> Swift.Void public enum LoginTooltipError : Swift.Error { case missingTooltipText @@ -187,7 +352,7 @@ extension FBSDKCoreKit.Settings { @objc final public var defaultGraphAPIVersion: Swift.String { @objc get } - @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreGraphics.CGFloat { + @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreFoundation.CGFloat { @objc get @objc set } @@ -358,7 +523,6 @@ public enum DialogConfigurationName { public static let message: Swift.String public static let share: Swift.String } -@available(tvOS, unavailable) public struct ShareDialogConfiguration { public init() public var defaultShareMode: Swift.String? { @@ -367,12 +531,58 @@ public struct ShareDialogConfiguration { public func shouldUseNativeDialog(forDialogName dialogName: Swift.String) -> Swift.Bool public func shouldUseSafariViewController(forDialogName dialogName: Swift.String) -> Swift.Bool } +@objc(FBSDKAEMReporter) public protocol _AEMReporterProtocol { + @objc static func enable() + @objc(recordAndUpdateEvent:currency:value:parameters:) static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) + @objc static func setConversionFilteringEnabled(_ isEnabled: Swift.Bool) + @objc static func setCatalogMatchingEnabled(_ isEnabled: Swift.Bool) + @objc static func setAdvertiserRuleMatchInServerEnabled(_ isEnabled: Swift.Bool) + @objc static func handle(_ url: Foundation.URL?) +} +extension FBAEMKit.AEMReporter : FBSDKCoreKit._AEMReporterProtocol { +} @objcMembers @objc(_FBSDKAccessTokenExpirer) final public class _AccessTokenExpirer : ObjectiveC.NSObject, FBSDKCoreKit._AccessTokenExpiring { @objc public init(notificationCenter: FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering) @objc deinit } @objc(_FBSDKAccessTokenExpiring) public protocol _AccessTokenExpiring { } +@objc @_hasMissingDesignatedInitializers final public class _BridgeAPI : ObjectiveC.NSObject, FBSDKCoreKit.FBSDKApplicationObserving, FBSDKCoreKit.URLOpener, FBSDKCoreKit.BridgeAPIRequestOpening, FBSDKCoreKit._ContainerViewControllerDelegate, SafariServices.SFSafariViewControllerDelegate { + public static let shared: FBSDKCoreKit._BridgeAPI + @objc final public func viewControllerDidDisappear(_ viewController: FBSDKCoreKit._ContainerViewController, animated: Swift.Bool) + @objc deinit +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func applicationWillResignActive(_ application: UIKit.UIApplication?) + @objc final public func applicationDidBecomeActive(_ application: UIKit.UIApplication?) + @objc final public func applicationDidEnterBackground(_ application: UIKit.UIApplication?) + @objc final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func application(_ application: UIKit.UIApplication, didFinishLaunchingWithOptions launchOptions: [UIKit.UIApplication.LaunchOptionsKey : Any]? = nil) -> Swift.Bool +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func open(_ url: Foundation.URL, sender: FBSDKCoreKit.URLOpening?, handler: @escaping FBSDKCoreKit.SuccessBlock) + @objc final public func open(_ request: FBSDKCoreKit.BridgeAPIRequestProtocol, useSafariViewController: Swift.Bool, from fromViewController: UIKit.UIViewController?, completionBlock: @escaping FBSDKCoreKit.BridgeAPIResponseBlock) + @objc final public func openURLWithSafariViewController(url: Foundation.URL, sender: FBSDKCoreKit.URLOpening?, from fromViewController: UIKit.UIViewController?, handler: @escaping FBSDKCoreKit.SuccessBlock) +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func safariViewControllerDidFinish(_ safariViewController: SafariServices.SFSafariViewController) +} +@available(iOS 13, *) +extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPresentationContextProviding { + @objc final public func presentationAnchor(for session: AuthenticationServices.ASWebAuthenticationSession) -> AuthenticationServices.ASPresentationAnchor +} +@objcMembers @objc(FBSDKBridgeAPIProtocolNativeV1) final public class _BridgeAPIProtocolNativeV1 : ObjectiveC.NSObject, FBSDKCoreKit.BridgeAPIProtocol { + @objc(initWithAppScheme:) convenience public init(appScheme: Swift.String?) + @objc(initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:) public init(appScheme: Swift.String?, pasteboard: FBSDKCoreKit._Pasteboard?, dataLengthThreshold: Swift.UInt, shouldIncludeAppIcon: Swift.Bool) + @objc deinit + @objc final public func requestURL(actionID: Swift.String, scheme: Swift.String, methodName: Swift.String, parameters: [Swift.String : Any]) throws -> Foundation.URL + @objc final public func responseParameters(actionID: Swift.String, queryParameters: [Swift.String : Any], cancelled cancelledRef: Swift.UnsafeMutablePointer?) throws -> [Swift.String : Any] +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKBridgeAPIRequestFactory) final public class _BridgeAPIRequestFactory : ObjectiveC.NSObject, FBSDKCoreKit.BridgeAPIRequestCreating { + @objc final public func bridgeAPIRequest(with protocolType: FBSDKCoreKit.FBSDKBridgeAPIProtocolType, scheme: Swift.String, methodName: Swift.String?, parameters: [Swift.String : Any]?, userInfo: [Swift.String : Any]? = nil) -> FBSDKCoreKit.BridgeAPIRequestProtocol? + @objc override dynamic public init() + @objc deinit +} @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKDialogConfigurationMapBuilder) final public class _DialogConfigurationMapBuilder : ObjectiveC.NSObject, FBSDKCoreKit._DialogConfigurationMapBuilding { @objc final public func buildDialogConfigurationMap(from rawConfigurations: [[Swift.String : Any]]) -> [Swift.String : FBSDKCoreKit._DialogConfiguration] @objc override dynamic public init() @@ -389,8 +599,13 @@ public struct ShareDialogConfiguration { @objc override dynamic public init() @objc deinit } +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCloseIcon) final public class _FBCloseIcon : ObjectiveC.NSObject { + @objc final public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLogo) final public class _FBLogo : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? @objc override dynamic public init() @objc deinit } @@ -402,6 +617,16 @@ public struct ShareDialogConfiguration { @objc override dynamic public init() @objc deinit } +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKHumanSilhouetteIcon) final public class _HumanSilhouetteIcon : FBSDKCoreKit.FBIcon { + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKMeasurementEvent) final public class _MeasurementEvent : ObjectiveC.NSObject, FBSDKCoreKit._AppLinkEventPosting { + @objc(postNotificationForEventName:args:) final public func postNotification(eventName: Swift.String, arguments: [Swift.String : Any]) + @objc override dynamic public init() + @objc deinit +} @objc(FBSDKPaymentObserver) final public class _PaymentObserver : ObjectiveC.NSObject, FBSDKCoreKit._PaymentObserving { @objc(initWithPaymentQueue:paymentProductRequestorFactory:) public init(paymentQueue: StoreKit.SKPaymentQueue, paymentProductRequestorFactory: FBSDKCoreKit._PaymentProductRequestorCreating) @objc(startObservingTransactions) final public func startObservingTransactions() @@ -422,11 +647,39 @@ extension FBSDKCoreKit._PaymentObserver : StoreKit.SKPaymentTransactionObserver @objc(initWithEventName:restrictiveParameters:) public init(eventName: Swift.String, restrictiveParameters: [Swift.String : Any]) @objc deinit } +@objcMembers @objc(FBSDKSKAdNetworkEvent) final public class _SKAdNetworkEvent : ObjectiveC.NSObject { + @objc final public let eventName: Swift.String? + @objc final public var values: [Swift.String : Swift.Double]? + @objc(initWithJSON:) public init?(json: [Swift.String : Any]) + @objc deinit +} @objcMembers @objc(FBSDKViewImpressionLogger) final public class _ViewImpressionLogger : ObjectiveC.NSObject, FBSDKCoreKit.ImpressionLogging { @objc(initWithEventName:) public init(eventName: FBSDKCoreKit.AppEvents.Name) @objc public static func retrieveLogger(with eventName: FBSDKCoreKit.AppEvents.Name) -> FBSDKCoreKit._ViewImpressionLogger @objc final public func logImpression(withIdentifier identifier: Swift.String, parameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]?) @objc deinit } +@objcMembers @objc(FBSDKWebDialog) final public class _WebDialog : ObjectiveC.NSObject { + @objc final public var shouldDeferVisibility: Swift.Bool + @objc weak final public var delegate: FBSDKCoreKit.WebDialogDelegate? + @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreFoundation.CGRect = .zero, path: Swift.String? = nil) + @objc convenience public init(name: Swift.String) + @objc final public func show() + @objc deinit +} +extension FBSDKCoreKit._WebDialog : FBSDKCoreKit.WebDialogViewDelegate { + @objc final public func webDialogView(_ webDialogView: FBSDKCoreKit.FBWebDialogView, didCompleteWithResults results: [Swift.String : Any]) + @objc final public func webDialogView(_ webDialogView: FBSDKCoreKit.FBWebDialogView, didFailWithError error: Swift.Error) + @objc final public func webDialogViewDidCancel(_ webDialogView: FBSDKCoreKit.FBWebDialogView) + @objc final public func webDialogViewDidFinishLoad(_ webDialogView: FBSDKCoreKit.FBWebDialogView) +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKWebViewFactory) final public class _WebViewFactory : ObjectiveC.NSObject, FBSDKCoreKit._WebViewProviding { + @objc final public func createWebView(frame: CoreFoundation.CGRect) -> FBSDKCoreKit.WebView + @objc override dynamic public init() + @objc deinit +} +extension FBSDKCoreKit.Profile.PictureMode : Swift.Equatable {} +extension FBSDKCoreKit.Profile.PictureMode : Swift.Hashable {} +extension FBSDKCoreKit.Profile.PictureMode : Swift.RawRepresentable {} extension FBSDKCoreKit.LoginTooltipError : Swift.Equatable {} extension FBSDKCoreKit.LoginTooltipError : Swift.Hashable {} diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.swiftdoc b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.swiftdoc index cb26d51a..580ca920 100644 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.swiftdoc and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.swiftinterface b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.swiftinterface index 3115c794..8bba5234 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.swiftinterface +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import AdSupport import AuthenticationServices import FBAEMKit @@ -12,6 +13,7 @@ import StoreKit import Swift import UIKit import _Concurrency +import _StringProcessing extension FBSDKCoreKit.AccessToken { public var permissions: Swift.Set { get @@ -133,22 +135,20 @@ extension FBSDKCoreKit.AccessToken { @objc func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) @objc func recordEvent(_ parameters: [Swift.String : Any]) } -@_inheritsConvenienceInitializers @available(tvOS, unavailable) -@objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { +@_inheritsConvenienceInitializers @objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { @objc public static let shared: FBSDKCoreKit._InternalURLOpener @objc override dynamic public init() @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKIcon) open class FBIcon : ObjectiveC.NSObject { - @objc open func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? - @objc public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, scale: CoreGraphics.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? + @objc open func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, scale: CoreFoundation.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? @objc override dynamic public init() @objc deinit } -@_inheritsConvenienceInitializers @available(tvOS, unavailable) -@objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { @objc @_Concurrency.MainActor(unsafe) final public var pictureMode: FBSDKCoreKit.Profile.PictureMode { @objc get @objc set @@ -157,22 +157,23 @@ extension FBSDKCoreKit.AccessToken { @objc get @objc set } - @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreGraphics.CGRect { - @_Concurrency.MainActor(unsafe) @objc get - @_Concurrency.MainActor(unsafe) @objc set + @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreFoundation.CGRect { + @objc get + @objc set } @_Concurrency.MainActor(unsafe) @objc override final public var contentMode: UIKit.UIView.ContentMode { - @_Concurrency.MainActor(unsafe) @objc get - @_Concurrency.MainActor(unsafe) @objc set + @objc get + @objc set } - @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreGraphics.CGRect, profile: FBSDKCoreKit.Profile? = nil) + @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, profile: FBSDKCoreKit.Profile? = nil) @objc(initWithProfile:) @_Concurrency.MainActor(unsafe) convenience public init(profile: FBSDKCoreKit.Profile? = nil) - @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreGraphics.CGRect) + @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreFoundation.CGRect) @objc(initWithCoder:) @_Concurrency.MainActor(unsafe) required dynamic public init?(coder: Foundation.NSCoder) @objc @_Concurrency.MainActor(unsafe) final public func setNeedsImageUpdate() @objc deinit } public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager +public typealias CAPIGBlock = (Swift.Bool) -> Swift.Void @objc @_inheritsConvenienceInitializers @objcMembers final public class FBSDKAppEventsCAPIManager : ObjectiveC.NSObject, FBSDKCoreKit.CAPIReporter { @objc public static let shared: FBSDKCoreKit.FBSDKAppEventsCAPIManager @objc override dynamic public init() @@ -193,7 +194,7 @@ public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager } @objc override dynamic public init() @objc public func configure(datasetID: Swift.String, url: Swift.String, accessKey: Swift.String) - @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any]) + @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any], userAgent: Swift.String) @objc deinit } final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @@ -201,6 +202,10 @@ final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @objc final public func createKeychainStore(service: Swift.String, accessGroup: Swift.String?) -> FBSDKCoreKit.KeychainStoreProtocol @objc deinit } +@objc(FBSDKMACARuleMatching) public protocol MACARuleMatching { + @objc func enable() + @objc func processParameters(_ params: Foundation.NSDictionary?, event: Swift.String?) -> Foundation.NSDictionary? +} public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { case publicProfile case userFriends @@ -266,7 +271,7 @@ extension FBSDKCoreKit.Profile { get } } - @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreGraphics.CGSize) -> Foundation.URL? + @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreFoundation.CGSize) -> Foundation.URL? } extension FBSDKCoreKit.Profile { @objc(loadCurrentProfileWithCompletion:) public static func loadCurrentProfile(completion: FBSDKCoreKit.ProfileBlock?) @@ -347,7 +352,7 @@ extension FBSDKCoreKit.Settings { @objc final public var defaultGraphAPIVersion: Swift.String { @objc get } - @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreGraphics.CGFloat { + @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreFoundation.CGFloat { @objc get @objc set } @@ -518,7 +523,6 @@ public enum DialogConfigurationName { public static let message: Swift.String public static let share: Swift.String } -@available(tvOS, unavailable) public struct ShareDialogConfiguration { public init() public var defaultShareMode: Swift.String? { @@ -533,6 +537,7 @@ public struct ShareDialogConfiguration { @objc static func setConversionFilteringEnabled(_ isEnabled: Swift.Bool) @objc static func setCatalogMatchingEnabled(_ isEnabled: Swift.Bool) @objc static func setAdvertiserRuleMatchInServerEnabled(_ isEnabled: Swift.Bool) + @objc static func handle(_ url: Foundation.URL?) } extension FBAEMKit.AEMReporter : FBSDKCoreKit._AEMReporterProtocol { } @@ -595,12 +600,12 @@ extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPr @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCloseIcon) final public class _FBCloseIcon : ObjectiveC.NSObject { - @objc final public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? + @objc final public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? @objc override dynamic public init() @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLogo) final public class _FBLogo : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? @objc override dynamic public init() @objc deinit } @@ -613,7 +618,7 @@ extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPr @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKHumanSilhouetteIcon) final public class _HumanSilhouetteIcon : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? @objc override dynamic public init() @objc deinit } @@ -657,7 +662,7 @@ extension FBSDKCoreKit._PaymentObserver : StoreKit.SKPaymentTransactionObserver @objcMembers @objc(FBSDKWebDialog) final public class _WebDialog : ObjectiveC.NSObject { @objc final public var shouldDeferVisibility: Swift.Bool @objc weak final public var delegate: FBSDKCoreKit.WebDialogDelegate? - @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreGraphics.CGRect = .zero, path: Swift.String? = nil) + @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreFoundation.CGRect = .zero, path: Swift.String? = nil) @objc convenience public init(name: Swift.String) @objc final public func show() @objc deinit @@ -669,7 +674,7 @@ extension FBSDKCoreKit._WebDialog : FBSDKCoreKit.WebDialogViewDelegate { @objc final public func webDialogViewDidFinishLoad(_ webDialogView: FBSDKCoreKit.FBWebDialogView) } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKWebViewFactory) final public class _WebViewFactory : ObjectiveC.NSObject, FBSDKCoreKit._WebViewProviding { - @objc final public func createWebView(frame: CoreGraphics.CGRect) -> FBSDKCoreKit.WebView + @objc final public func createWebView(frame: CoreFoundation.CGRect) -> FBSDKCoreKit.WebView @objc override dynamic public init() @objc deinit } diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/module.modulemap b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/module.modulemap index f951cee0..0680aff1 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/module.modulemap +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/FBSDKCoreKit.framework/Modules/module.modulemap @@ -6,6 +6,6 @@ framework module FBSDKCoreKit { } module FBSDKCoreKit.Swift { - header "FBSDKCoreKit-Swift.h" - requires objc + header "FBSDKCoreKit-Swift.h" + requires objc } diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index e9fd3068..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKCoreKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit deleted file mode 100644 index 225c25aa..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FBSDKCoreKit b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FBSDKCoreKit deleted file mode 120000 index 2257ddcb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FBSDKCoreKit +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/FBSDKCoreKit \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FBSDKCoreKit b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FBSDKCoreKit new file mode 100644 index 00000000..0a387ea9 Binary files /dev/null and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FBSDKCoreKit differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings deleted file mode 100644 index 84881da5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besoek %@ en voer die kode in wat hierbo vertoon word."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Om jou rekening te verbind, maak die Facebook-toepassing op jou mobiele toestel oop en kontroleer vir kennisgewings."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OF -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Goed"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Kanselleer"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Meld asseblief weer by hierdie toepassing aan om jou Facebook-rekening te herkoppel. "; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Goed"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Die bediener is tydelik besig, probeer asseblief weer."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Kanselleer"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Meld af"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Met Facebook aangemeld"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "As %@ aangemeld"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Meld aan"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Gaan voort met Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Meld met Facebook aan"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Meld af"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Toegang is nie na die Facebook-rekening verleen nie. Verifieer toestelinstellings."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kan nie aan Facebook koppel nie. Gaan jou netwerkverbinding na en probeer weer."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Jou Facebook-wagwoord het verander. Om jou wagwoord te bevestig, maak Instellings > Facebook oop en tik jou naam."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Die Facebook-rekening is nie op die toestel opgestel nie."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Jou rekening is nie bevestig nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Jy kan nie op die oomblik by toepassings aanmeld nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Jy is in beheer – kies watter inligting jy met toepassings wil deel."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Meld aan"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Stuur"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Deel"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nie jy nie?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bevestig aantekening"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Gaan voort as %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings deleted file mode 100644 index f67e1352..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "تفضل بزيارة %@ وإدخال الرمز الموضح أدناه."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "لربط حسابك، افتح تطبيق فيسبوك على جهازك المحمول ثم تفقد الإشعارات."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- أو -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "موافق"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "إلغاء"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "يرجى تسجيل الدخول إلى هذا التطبيق مرة أخرى لإعادة الاتصال بحساب فيسبوك."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "موافق"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "الخادم مشغول مؤقتًا، يرجى إعادة المحاولة."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "إلغاء"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "تسجيل الخروج"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "تم تسجيل الدخول بحساب فيسبوك"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "تم تسجيل الدخول باسم %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "تسجيل الدخول"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "متابعة بحساب فيسبوك"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "تسجيل الدخول بحساب فيسبوك"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "تسجيل الخروج"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "لم يتم منح إذن الوصول لحساب فيسبوك. تحقق من إعدادات الجهاز."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "تعذر الاتصال بفيسبوك. يُرجى التحقق من الاتصال بالإنترنت وإعادة المحاولة."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "تم تغيير كلمة سر فيسبوك الخاصة بك. لتأكيد كلمة السر، افتح الإعدادات > فيسبوك ثم اضغط على اسمك."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "لم تتم تهيئة حساب فيسبوك على الجهاز."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "لم يتم تأكيد حسابك. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "لا يمكنك تسجيل الدخول إلى التطبيقات حاليًا. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "أنت المتحكم - اختر المعلومات التي تريد مشاركتها مع التطبيقات."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "تسجيل الدخول"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "إرسال"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "مشاركة"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "لست أنت؟"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "تأكيد تسجيل الدخول"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "متابعة باسم %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings deleted file mode 100644 index 768fcdbb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ -এ যান এবং উপরে যে কোডটি দেখানো হয়েছে সেটি লিখুন।"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "আপনার অ্যাকাউন্টে সংযোগ করতে, আপনার মোবাইল ডিভাইসে Facebook অ্যাপটি খুলুন এবং বিজ্ঞপ্তি চেক করুন।"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- অথবা -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ঠিক আছে"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "বাতিল করুন"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "আপনার Facebook অ্যাকাউন্টটিতে পুনরায় সংযোগ করার জন্য অনুগ্রহ করে এই অ্যাপটিতে লগ ইন করুন৷"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ঠিক আছে"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "এই সার্ভারটি সাময়িকভাবে ব্যস্ত আছে, অনুগ্রহ করে পুনরায় চেষ্টা করুন৷"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "বাতিল করুন"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "লগ আউট করুন"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ব্যবহার করে লগ ইন করা হয়েছে"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ হিসাবে লগ ইন করা হয়েছে"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "লগ ইন করুন"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook এর সাথে চালিয়ে যান"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook -এর সাথে লগ ইন করুন"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "লগ আউট করুন"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook অ্যাকাউন্টটিতে অ্যাক্সেস করার অনুমতি নেই৷ ডিভাইস সেটিংস যাচাই করুন৷"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook-এ সংযোগ করা যাচ্ছে না৷ আপনার নেটওয়ার্ক সংযোগটি পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন৷"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "আপনার Facebook পাসওয়ার্ডটি পরিবর্তিত হয়েছে৷ আপনার পাসওয়ার্ডটি নিশ্চিত করতে, সেটিংস > Facebook খুলুন এবং আপনার নামটি ট্যাপ করুন৷"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook অ্যাকাউন্টটি এই ডিভাইসে কনফিগার করা যাযনি৷"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "আপনার অ্যাকাউন্টটি নিশ্চিত করা যায়নি৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "এই সময়ে আপনি অ্যাপসে লগ ইন করতে পারবেন না৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "আপনি নিয়ন্ত্রণে আছেন - অ্যাপ্সের সাথে আপনি যে তথ্য শেয়ার করতে চান তা বাছুন৷"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "লগ ইন করুন"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "পাঠান"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ভাগ করুন"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "আপনি নন?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "লগ ইন নিশ্চিত করুন"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ হিসেবে চালিয়ে যান"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings deleted file mode 100644 index c15549c4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Navštivte %@ a zadejte nahoře uvedený kód."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Účet si můžete připojit tak, že si na mobilním zařízení spustíte aplikaci Facebook a podíváte se do upozornění."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- NEBO -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Zrušit"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Pokud se chcete ke svému Facebook účtu znovu připojit, přihlaste se k této aplikaci ještě jednou."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server je dočasně zaneprázdněný, zkuste to znovu."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Zrušit"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odhlásit"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Přihlášen(a) přes Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Přihlášen(a) jako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Přihlásit"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Pokračovat přes Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Přihlásit se přes Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odhlásit"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook účtu nebylo oprávnění uděleno. Ověřte nastavení zařízení."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "K Facebooku se nedá připojit. Zkontrolujte připojení k síti a zkuste to znovu."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Vaše heslo na Facebook je změněné. Pokud chcete heslo potvrdit, přejděte do Nastavení > Facebook a klepněte na své jméno."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "V tomto zařízení není Facebook účet konfigurovaný."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet není potvrzený. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Do aplikací se v této chvíli přihlásit nemůžete. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Je jen na vás, které informace chcete s aplikacemi sdílet."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Přihlásit"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Odeslat"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Sdílet"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nejste to vy?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrdit přihlášení"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Pokračovat jako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings deleted file mode 100644 index a6d9ed40..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Gå til %@, og indtast den kode, der er angivet ovenfor."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Du kan tilknytte din konto ved at åbne Facebook-appen på din mobilenhed og tjekke notifikationerne."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuller"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Log på denne app igen for at genoprette forbindelsen til din Facebook-konto."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serveren er optaget i øjeblikket. Prøv igen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuller"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log af"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logget på med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logget på som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log på"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsæt med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log på med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log af"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Der er ikke blevet givet adgang til Facebook-kontoen. Kontrollér enhedsindstillingerne."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kunne ikke oprette forbindelse til Facebook. Kontrollér din netværksforbindelse, og prøv igen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Din Facebook-adgangskode er ændret. For at bekræfte din adgangskode skal du åbne Indstillinger > Facebook og trykke på dit navn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke blevet konfigureret på enheden."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Din konto er ikke bekræftet. Log på www.facebook.com, og følg instruktionerne."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge på apps på nuværende tidspunkt. Log på www.facebook.com, og følg instruktionerne."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du har styringen – vælg de oplysninger, som du vil dele med apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log på"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Del"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ikke dig?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekræft login"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsæt som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings deleted file mode 100644 index 1e470805..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besuche %@ und gib den oben angezeigten Code ein."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Um dein Konto zu verbinden, öffne die Facebook-App auf deinem Mobilgerät und prüfe, ob du Benachrichtigungen erhalten hast."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– ODER –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Abbrechen"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Melde dich bitte erneut bei dieser App an, um die Verbindung mit deinem Facebook-Konto wiederherzustellen."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Der Server ist vorübergehend beschäftigt. Bitte versuche es erneut."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Abbrechen"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Abmelden"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Über Facebook angemeldet"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Als %@ angemeldet"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Anmelden"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Mit Facebook fortfahren"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Über Facebook anmelden"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Abmelden"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Auf das Facebook-Konto wurde kein Zugriff erteilt. Überprüfe bitte die Geräteeinstellungen."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Verbindung zu Facebook kann nicht hergestellt werden. Bitte überprüfe deine Netzwerkverbindung und versuche es erneut."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Dein Facebook-Passwort hat sich geändert. Öffne „Einstellungen“ > „Facebook“ und tippe auf deinen Namen, um dein Passwort zu bestätigen."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Das Facebook-Konto wurde für dieses Gerät nicht konfiguriert."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Dein Konto wurde nicht bestätigt. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kannst dich zurzeit nicht bei Apps anmelden. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Es liegt ganz an dir – du kannst dir aussuchen, was du mit Apps teilen möchtest."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Anmelden"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Senden"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Teilen"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nicht du?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Login bestätigen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortfahren als %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings deleted file mode 100644 index 09ca6484..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Επισκεφτείτε τη διεύθυνση %@ και συμπληρώστε τον παραπάνω κωδικό."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Για να συνδεθείτε στο λογαριασμό σας, ανοίξτε την εφαρμογή Facebook στη φορητή συσκευή σας και ελέγξτε τις ειδοποιήσεις."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- Ή -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Άκυρο"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Συνδεθείτε ξανά σε αυτή την εφαρμογή για να συνδέσετε και πάλι το λογαριασμό σας στο Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Ο διακομιστής είναι προσωρινά απασχολημένος, προσπαθήστε ξανά."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Άκυρο"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Αποσύνδεση"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Έχει γίνει σύνδεση μέσω Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Έχει γίνει σύνδεση ως %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Σύνδεση"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Συνεχίστε με το Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Σύνδεση μέσω Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Αποσύνδεση"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Δεν έχει παραχωρηθεί πρόσβαση στο λογαριασμό Facebook. Επαληθεύστε τις ρυθμίσεις της συσκευής σας."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Δεν είναι δυνατή η σύνδεση στο Facebook. Ελέγξτε τη σύνδεση στο δίκτυο και προσπαθήστε ξανά."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ο κωδικός πρόσβασής σας στο Facebook άλλαξε. Για να επιβεβαιώσετε τον κωδικό σας, πηγαίνετε στις Ρυθμίσεις > Facebook και πατήστε το όνομά σας."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Ο λογαριασμός Facebook δεν έχει διαμορφωθεί στη συσκευή."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ο λογαριασμός σας δεν επιβεβαιώθηκε. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Προς το παρόν δεν μπορείτε να συνδεθείτε σε εφαρμογές. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Έχετε τον έλεγχο - επιλέξτε ποιες πληροφορίες θέλετε να κοινοποιούνται στις εφαρμογές."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Σύνδεση"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Αποστολή"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Κοινοποίηση"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Δεν είστε εσείς;"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Επιβεβαίωση σύνδεσης"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Συνέχεια ως %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings deleted file mode 100644 index c88ac076..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings deleted file mode 100644 index e36f841c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Visit %@ and enter the code shown above."; - -/* The 'or' string for smart login instructions */ -"DeviceLogin.SmartLogInOrLabel" = "-- OR --"; - -/* The string for smart login instructions */ -"DeviceLogin.SmartLogInPrompt" = "To connect your account, open the Facebook app on your mobile device and check for notifications."; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancel"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Please log in to this app again to reconnect your Facebook account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "The server is temporarily busy, please try again."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancel"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log out"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logged in using Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logged in as %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continue with Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log in with Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log out"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Access has not been granted to the Facebook account. Verify device settings."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Unable to connect to Facebook. Please check your network connection and try again."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Your Facebook password has changed. To confirm your password, open Settings > Facebook and tap your name."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "The Facebook account has not been configured on the device."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Your account is not confirmed. Please log in to www.facebook.com and follow the instructions given."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "You cannot log in to apps at this time. Please log in to www.facebook.com and follow the instructions given."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "You're in control – choose what information you want to share with apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log In"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Share"; - -/* The title for the alert when smart login requires confirmation */ -"SmartLogin.ConfirmationTitle" = "Confirm Login"; - -/* The format string to continue as for the alert when smart login requires confirmation */ -"SmartLogin.Continue" = "Continue as %@"; - -/* The cancel label for the alert when smart login requires confirmation */ -"SmartLogin.NotYou" = "Not you?"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings deleted file mode 100644 index 0c5ce879..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e ingresa el código que se muestra arriba."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Aceptar"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Inicia sesión de nuevo en esta aplicación para volver a conectarte a tu cuenta de Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Aceptar"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "El servidor está temporalmente ocupado. Vuelve a intentarlo."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Cerrar sesión"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Inicio de sesión"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Salir"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "No se concedió acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión a internet y vuelve a intentarlo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Cambió tu contraseña de Facebook. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "No se configuró la cuenta de Facebook en el dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no está confirmada. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tú decides: elige qué información quieres compartir con las aplicaciones."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Inicio de sesión"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartir"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "¿No eres tú?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings deleted file mode 100644 index 4ecd5d68..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e introduce el código que se muestra arriba."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Aceptar"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Vuelve a iniciar sesión en esta aplicación para volver a conectar tu cuenta de Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Aceptar"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "El servidor está ocupado temporalmente. Vuelve a intentarlo más tarde."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Salir"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Inicio de sesión"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Salir"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "No se ha otorgado acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión de red y vuelve a intentarlo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Tu contraseña de Facebook ha cambiado. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "La cuenta de Facebook no se ha configurado en el dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no se ha confirmado. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tú tienes el control: elige la información que quieres compartir con las aplicaciones."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Inicio de sesión"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartir"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "¿No eres tú?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings deleted file mode 100644 index f51fcaa6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Siirry osoitteeseen %@ ja kirjoita oheinen koodi sivulle."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Pääset liittämään käyttäjätilisi avaamalla Facebook-sovelluksen mobiililaitteellasi ja tarkistamalla ilmoitukset."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- TAI -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Peruuta"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Kirjaudu tähän sovellukseen uudelleen, jotta voit yhdistää Facebook-tilisi uudelleen."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Palvelin on tilapäisesti varattu, yritä uudelleen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Peruuta"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Kirjaudu ulos"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sisäänkirjautunut Facebookin avulla"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sisäänkirjautunut nimellä %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Kirjaudu sisään"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Jatka Facebook-tunnuksilla"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Kirjaudu sisään Facebookin avulla"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Kirjaudu ulos"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Pääsyä Facebook-tiliin ei ole myönnetty. Tarkista laiteasetukset."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Yhteyttä Facebookiin ei voi muodostaa. Tarkista verkkoyhteys ja yritä sitten uudelleen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-salasanasi on vaihdettu. Vahvista salasanasi avaamalla Asetukset > Facebook ja napauttamalla nimeäsi."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-tiliä ei ole määritetty laitteessa."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tiliäsi ei ole vahvistettu. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Et pysty kirjautumaan sovelluksiin tällä hetkellä. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Sinä voit valita, mitä tietoja jaat sovelluksille."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Kirjaudu sisään"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Lähetä"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Jaa"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Etkö tämä ole sinä?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Vahvista sisäänkirjautuminen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Jatka nimellä %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings deleted file mode 100644 index c72600b1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Pumunta sa %@ at ilagay ang code na ipinapakita sa itaas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para ikonekta ang iyong account, buksan ang Facebook app sa iyong cellphone at tumingin ng mga notification."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O KAYA -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Kanselahin"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Mangyaring mag-log in muli sa app na ito para ikonekta muli ang iyong Facebook account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Pansamantalang abala ang server, pakisubukan muli."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Kanselahin"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Mag-log Out"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Naka-log in gamit ang Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Naka-log in bilang si %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Mag-log in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Magatuloy sa Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Mag-log in sa pamamagitan ng Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Mag-log out"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Hindi binigyan ng access ang Facebook account. Beripikahin ang mga setting ng device."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Hindi nakakonekta sa Facebook. Tingnan ang iyong koneksyon sa network at subukan muli."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Nagbago ang iyong password sa Facebook. Para makumpirma ang iyong password, buksan ang Mga Setting > Facebook at i-tap ang iyong pangalan."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Hindi na-configure sa device ang Facebook account."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Hindi nakumpirma ang iyong account. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Hindi ka makakapag-log in sa mga app sa oras na ito. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Ikaw ang may kontrol - piliin kung anong impormasyon ang gusto mong ibahagi sa mga app."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Mag-log In"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Ipadala"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Ibahagi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Hindi ikaw?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "I-confirm ang Pag-log in"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Magpatuloy bilang %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings deleted file mode 100644 index f0511b2e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Consultez la page %@ et saisissez le code indiqué ci-dessus."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Pour connecter votre compte, lancez l’application Facebook sur votre appareil mobile et consultez les notifications."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OU -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuler"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Veuillez vous connecter à nouveau à cette application pour reconnecter votre compte Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Le serveur est temporairement occupé. Veuillez réessayer plus tard."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuler"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Déconnexion"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Connecté(e) à l’aide de Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Connecté(e) en tant que %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Connexion"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuer avec Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Connexion avec Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Déconnexion"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "L’accès au compte Facebook n’a pas été autorisé. Vérifiez les paramètres de l’appareil."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Connexion à Facebook impossible. Vérifiez votre connexion avant de réessayer."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Votre mot de passe Facebook a changé. Pour confirmer votre mot de passe, ouvrez Paramètres > Facebook et saisissez votre nom."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Le compte Facebook n’a pas été configuré sur l’appareil."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Votre compte n’est pas confirmé. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Vous ne pouvez pas vous connecter à des applications pour le moment. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Vous gardez le contrôle. Choisissez les informations que vous souhaitez partager avec les applications."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Connexion"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Envoyer"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Partager"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ce n’est pas vous ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmer la connexion"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuer en tant que %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings deleted file mode 100644 index 95bec7fb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ ની મુલાકાત લો અને ઉપર બતાવ્યા પ્રમાણે કોડ દાખલ કરો."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "તમારા એકાઉન્ટ સાથે જોડાવા માટે, તમારા મોબાઇલ ઉપકરણ પર Facebook એપ્લિકેશન ખોલો અને સૂચનો માટે તપાસો."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- અથવા -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ઠીક"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "રદ કરો"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "તમારા ફેસબુક ખાતાને ફરીથી કનેક્ટ કરવા માટે કૃપા કરીને આ એપ્લિકેશનમાં ફરી લૉગ ઇન કરો."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ઠીક"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "સર્વર અસ્થાયીરૂપે વ્યસ્ત છે, કૃપા કરીને ફરી પ્રયાસ કરો."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "રદ કરો"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "લૉગ આઉટ કરો"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "ફેસબુકનો ઉપયોગ કરીને લૉગ ઇન કરો"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ તરીકે લૉગ ઇન થયાં"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "લૉગ ઇન કરો"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook સાથે ચાલુ રાખો"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "ફેસબુક સાથે લૉગ ઇન કરો"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "લૉગ આઉટ કરો"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "ફેસબુક ખાતા પર ઍક્સેસ આપવામાં આવી નથી. ઉપકરણ સેટિંગ્સ ચકાસો"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "ફેસબુકથી કનેક્ટ કરવામાં અસમર્થ. તમારું નેટવર્ક કનેક્શન તપાસો અને ફરી પ્રયાસ કરો."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "તમારો ફેસબુક પાસવર્ડ બદલાઈ ગયો છે. તમારા પાસવર્ડની પુષ્ટિ કરવા માટે, સેટિંગ્સ > ફેસબુક ખોલો અને તમારા નામ પર ટૅપ કરો."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "ઉપકરણ પર ફેસબુક ખાતું કન્ફિગર કરવામાં આવ્યું નથી."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "તમારા ખાતાની પુષ્ટિ કરવામાં આવી નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "તમે આ સમયે એપ્લિકેશન્સમાં લૉગ ઇન કરી શકતાં નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "તમે નિયંત્રણ કરો છો - તમે એપ્લિકેશન્સ સાથે કઈ માહિતી શેર કરવા માંગો છો તે પસંદ કરો."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "લૉગ ઇન કરો"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "મોકલો"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "શેર કરો"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "તમે નહિ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "લૉગિનની પુષ્ટિ કરો"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ તરીકે ચાલુ રાખો"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings deleted file mode 100644 index be0f033b..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "בקר ב-%@ והזן את הקוד המופיע למעלה."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "כדי לחבר את החשבון שלך, פתח את אפליקציית פייסבוק במכשיר הנייד שלך ובדוק אם יש התראות."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- או -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "אישור"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ביטול"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "התחבר לאפליקציה זו שוב כדי לחבר מחדש את חשבון הפייסבוק שלך."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "אישור"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "השרת עמוס באופן זמני, נסה שוב."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ביטול"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "התנתק"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "מחובר באמצעות פייסבוק"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "מחובר בתור %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "התחבר"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "המשך עם פייסבוק"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "התחבר באמצעות פייסבוק"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "התנתק"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "לא הוענקה גישה לחשבון הפייסבוק. אמת את הגדרות המכשיר."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "לא ניתן להתחבר לפייסבוק. בדוק את החיבור שלך לרשת ונסה שוב."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "סיסמת הפייסבוק שלך השתנתה. כדי לאשר את הסיסמה, פתח את 'הגדרות' > 'פייסבוק' והקש על שמך."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "חשבון הפייסבוק לא הוגדר במכשיר."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "החשבון שלך לא אושר. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "לא ניתן להתחבר לאפליקציות כעת. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "אתה מחליט - בחר איזה מידע אתה רוצה לשתף עם אפליקציות."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "התחבר"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "שלח"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "שתף"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "לא אתה?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "אשר התחברות"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "המשך כ-%@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings deleted file mode 100644 index 16d49ea6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ पर जाएँ और ऊपर दिया गया कोड दर्ज करें."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "अपने खाते को कनेक्ट करने के लिए, अपने मोबाइल एप्लिकेशन में Facebook एप्लिकेशन खोलें और सूचनाओं के लिए जाँच करें."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- या -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ठीक"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "रद्द करें"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "अपने Facebook खाते से फिर से कनेक्ट होने के लिए कृपया इस एप्लिकेशन में फिर से लॉग इन करें."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ठीक"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "सर्वर अस्थायी रूप से व्यस्त है, कृपया फिर से कोशिश करें."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "रद्द करें"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "लॉग आउट करें"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook का उपयोग करके लॉग इन किया हुआ है"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ के रूप में लॉग इन किया हुआ है"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "लॉग इन करें"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook के साथ जारी रखें"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook से लॉग इन करें"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "लॉग आउट"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook खाते को एक्सेस नहीं दी गई है. डिवाइस सेटिंग सत्यापित करें."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook से कनेक्ट होने में असमर्थ. कृपया अपने नेटवर्क कनेक्शन की जाँच करें फिर से प्रयास करें."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "आपका Facebook पासवर्ड बदल गया है. अपना पासवर्ड कन्फ़र्म करने के लिए, सेटिंग > Facebook खोलें और अपना नाम टैप करें."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "डिवाइस पर Facebook खाता कॉन्फ़िगर नहीं किया गया है."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "आपका खाता कन्फ़र्म नहीं किया गया है. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "आप इस समय एप्लिकेशन में लॉग इन नहीं कर सकते. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "आप नियंत्रण में हैं - चुनें कि आप एप्लिकेशन से कौन-सी जानकारी साझा करना चाहते हैं."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "लॉग इन करें"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "भेजें"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "साझा करें"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "आप नहीं हैं?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "लॉग इन कन्फ़र्म करें"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ के रूप में जारी रखें"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings deleted file mode 100644 index 1a30854a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Posjetite adresu %@ i unesite gore prikazan kod."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Da biste povezali račun, otvorite aplikaciju Facebook na mobilnom uređaju i potražite obavijesti."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ILI -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "U redu"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Odustani"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Ponovo se prijavite u ovu aplikaciju kako biste se ponovo povezali s Facebook računom."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "U redu"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Poslužitelj je privremeno zauzet, pokušajte ponovo."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Odustani"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odjavi se"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Prijavljen putem Facebooka"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Prijavljen kao %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Prijavi se"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Nastavite s korištenjem Facebooka"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Prijava putem Facebooka"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odjavi se"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Pristup Facebook računu nije odobren. Provjerite postavke uređaja."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Povezivanje s Facebookom nije uspjelo. Provjerite mrežnu vezu i pokušajte ponovo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Promijenili ste lozinku za Facebook. Za potvrdu lozinke otvorite Postavke > Facebook i dodirnite svoje ime."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Na uređaju nije konfiguriran račun za Facebook."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Vaš račun nije potvrđen. Prijavite se na www.facebook.com i slijedite upute."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "U ovome trenutku prijava u aplikacije nije moguća. Prijavite se na www.facebook.com i slijedite upute."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Vi odlučujete – odaberite koje podatke želite dijeliti u aplikacijama."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Prijava"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Pošalji"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Dijeli"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "To niste vi?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrda prijave"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Nastavi kao %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings deleted file mode 100644 index 81a206e1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Keresd fel a %@ címet, és írd be a fent megjelenített kódot."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "A fiók hozzákapcsolásához nyisd meg a Facebook alkalmazást a mobilkészülékeden, és nézd meg az értesítéseket."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- VAGY -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Mégsem"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Kérjük, jelentkezz be újra ebbe az alkalmazásba, ha szeretnéd ismét összekapcsolni a Facebook-fiókoddal."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "A kiszolgáló átmenetileg foglalt, próbáld meg újra."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Mégsem"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Kijelentkezés"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Bejelentkezve a Facebook használatával"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Bejelentkezve %@ néven"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Bejelentkezés"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Folytatás a Facebookkal"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Bejelentkezés a Facebook használatával"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Kijelentkezés"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "A Facebook-fiókhoz nincs megadva a hozzáférés. Ellenőrizd az eszköz beállításait."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nem sikerült kapcsolódni a Facebookhoz. Ellenőrizd a hálózati kapcsolatot, majd próbáld meg újra."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-jelszavad megváltozott. A jelszó megerősítéséhez nyisd meg a Settings (Beállítások) > Facebook pontot, és koppints a nevedre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A készüléken nincs beállítva a Facebook-fiók."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A fiókod nincs megerősítve. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Jelenleg nem tudsz alkalmazásokba bejelentkezni. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "A döntés a kezedben van: kiválaszthatod, hogy milyen adatokat osztasz meg az alkalmazásokkal."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Bejelentkezés"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Küldés"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Megosztás"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nem te vagy az?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bejelentkezés megerősítése"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Folytatás mint %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings deleted file mode 100644 index da53d0d0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Kunjungi %@ dan masukkan kode yang ditampilkan di atas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akun Anda, buka aplikasi Facebook di perangkat seluler Anda dan periksa pemberitahuan."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Batal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Harap masuk ke aplikasi ini lagi untuk menghubungkan kembali akun Facebook Anda."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server untuk sementara sedang sibuk, harap coba lagi."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Batal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Keluar"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Masuk menggunakan Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Masuk sebagai %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Masuk"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Lanjutkan dengan Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Masuk menggunakan Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Keluar"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Akses belum diberikan ke akun Facebook. Verifikasi pengaturan perangkat."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Tidak dapat terhubung ke Facebook. Periksa koneksi jaringan dan coba lagi."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Kata sandi Facebook Anda telah diubah. Untuk mengonfirmasi kata sandi Anda, buka Pengaturan > Facebook, lalu ketuk nama Anda."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Akun Facebook belum dikonfigurasikan di perangkat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Akun Anda tidak dikonfirmasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Saat ini Anda tidak dapat masuk ke aplikasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Anda memegang kendali - pilih info yang ingin Anda bagikan dengan aplikasi."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Masuk"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Kirim"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Berbagi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Bukan Anda?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Konfirmasikan Masuk"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Lanjutkan sebagai %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings deleted file mode 100644 index 38915663..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e inserisci il codice mostrato sopra."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Per collegare il tuo account, apri l'app Facebook sul tuo dispositivo mobile e controlla se hai notifiche."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OPPURE -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annulla"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Effettua di nuovo l'accesso a questa applicazione per riconnettere il tuo account Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Il server è temporaneamente occupato, riprova."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annulla"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Esci"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Accesso effettuato tramite Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Accesso effettuato come %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Accedi"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continua con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Accedi con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Esci"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "All'account Facebook non è stato concesso l'accesso. Verifica le impostazioni del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Impossibile connettersi a Facebook. Controlla la tua connessione e riprova."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "La tua password di Facebook è stata modificata. Per confermare la password, apri Impostazioni > Facebook e tocca il tuo nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "L'account Facebook non è stato configurato nel dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Il tuo account non è stato verificato. Accedi a www.facebook.com e segui le istruzioni fornite."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Impossibile accedere alle applicazioni al momento. Accedi a www.facebook.com e segui le istruzioni fornite."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Il controllo è nelle tue mani: scegli quali informazioni condividere con le app."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Accedi"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Invia"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Condividi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Non sei tu?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Conferma l'accesso"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continua come %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings deleted file mode 100644 index c4922b5e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@にアクセスし、上に表示されているコードを入力してください。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "アカウントをリンクするには、お使いのモバイル機器でFacebookアプリを開き、お知らせをご確認ください。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- または -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "キャンセル"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "このアプリにもう一度ログインして、Facebookアカウントを再接続してください。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "サーバーが一時的にビジーです。もう一度お試しください。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "キャンセル"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ログアウト"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebookを使用してログイン中"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@としてログイン中"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ログイン"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebookで続ける"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebookでログイン"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ログアウト"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebookアカウントにアクセス権が与えられていません。デバイス設定を確認してください。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebookに接続できませんでした。ネットワーク接続を確認してもう一度お試しください。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebookパスワードが変更されています。パスワードを確認するには、[設定] > [Facebook]の順に開き、名前をタップしてください。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "デバイスにFacebookアカウントが構成されていません。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "アカウントが確認されません。www.facebook.comにログインし、表示される説明に従ってください。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "今はアプリにログインできません。www.facebook.comにログインし、表示される説明に従ってください。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "アプリと共有する情報をコントロールできます。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ログイン"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "送信"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "シェア"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "別のユーザーとしてログイン"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ログインの確認"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@として続行"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings deleted file mode 100644 index 9ecdac9d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings +++ /dev/null @@ -1,71 +0,0 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "ನಿಮ್ಮ ಸ್ಮಾರ್ಟ್‌ ಫೋನ್‌ ಅಥವಾ ಕಂಪ್ಯೂಟರ್‌ನಲ್ಲಿ %@ ಗೆ ಭೇಟಿ ನೀಡಿ ಮತ್ತು ಈ ಕೋಡ್‌ ಅನ್ನು ನಮೂದಿಸಿ:"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ಸರಿ"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ರದ್ದುಮಾಡು"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "ನಿಮ್ಮ Facebook ಖಾತೆಯನ್ನು ಮರುಸಂಪರ್ಕಗೊಳಿಸಲು ಈ ಅಪ್ಲಿಕೇಶನ್‌ನಲ್ಲಿ ಮತ್ತೊಮ್ಮೆ ಲಾಗಿನ್‌ ಮಾಡಿ."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ಸರಿ"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "ಸರ್ವರ್ ತಾತ್ಕಾಲಿಕವಾಗಿ ಕಾರ್ಯನಿರತವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ರದ್ದುಮಾಡು"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ಲಾಗ್‌ ಔಟ್‌"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ಬಳಸಿಕೊಂಡು ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ ರಂತೆ ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ಲಾಗ್‌ ಇನ್‌"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ಅನ್ನು ಮುಂದುವರಿಸಿ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ಮೂಲಕ ಲಾಗ್‌ ಇನ್‌ ಮಾಡಿ"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ಲಾಗ್‌ ಔಟ್‌"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ಖಾತೆಗೆ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಲಾಗಿಲ್ಲ. ಸಾಧನದ ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ಪರಿಶೀಲಿಸಿ."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook ಗೆ ಸಂಪರ್ಕಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನಿಮ್ಮ ನೆಟ್‌ವರ್ಕ್‌ ಸಂಪರ್ಕವನ್ನು ಪರಿಶೀಲಿಸಿ ಹಾಗೂ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "ನಿಮ್ಮ Facebook ಪಾಸ್‌ವರ್ಡ್‌ ಬದಲಿಸಲಾಗಿದೆ. ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್‌ ಖಚಿತಪಡಿಸಲು, ಸೆಟ್ಟಿಂಗ್‌ಗಳು > Facebook ತೆರೆಯಿರಿ ಮತ್ತು ನಿಮ್ಮ ಹೆಸರನ್ನು ಟ್ಯಾಪ್‌ ಮಾಡಿ."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook ಖಾತೆಯನ್ನು ಸಾಧನದಲ್ಲಿ ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿಲ್ಲ."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ದೃಢೀಕರಿಸಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ನೀವು ಈ ಸಮಯದಲ್ಲಿ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗೆ ಲಾಗಿನ್‌ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ನೀವು ನಿಯಂತ್ರಣದಲ್ಲಿರುವಿರಿ - ನೀವು ಅಪ್ಲಿಕೇಶನ್‌ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಹಂಚಿಕೊಳ್ಳಲು ಬಯಸುವ ವಿಷಯವನ್ನು ಆರಿಸಿ."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ಲಾಗ್‌ ಇನ್‌"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ಕಳುಹಿಸಿ"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ಹಂಚಿಕೊಳ್ಳಿ"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings deleted file mode 100644 index f7692eff..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@를 방문하여 위에 표시된 코드를 입력하세요."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "계정을 연결하려면 모바일 기기에서 Facebook 앱을 열고 알림을 확인하세요."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 또는 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "확인"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "취소"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Facebook 계정을 다시 연결하려면 이 앱에 다시 로그인하세요."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "확인"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "일시적으로 서버 사용량이 많아졌습니다. 다시 시도하세요."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "취소"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "로그아웃"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook 계정으로 로그인함"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@(으)로 로그인함"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "로그인"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook으로 계속"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook으로 로그인"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "로그아웃"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook 계정에 대한 액세스가 승인되지 않았습니다. 기기 설정을 확인하세요."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook에 연결할 수 없습니다. 네트워크 연결을 확인하고 다시 시도하세요."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook 비밀번호가 변경되었습니다. 비밀번호를 확인하려면 설정 > Facebook으로 이동하여 이름을 누르세요."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook 계정이 기기에 구성되어 있지 않습니다."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "계정이 확인되지 않았습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "현재 앱에 로그인할 수 없습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "원하는 정보를 선택하여 앱에 공유할 수 있습니다."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "로그인"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "보내기"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "공유하기"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "회원님이 아닌가요?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "로그인 확인"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@님으로 계속"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings deleted file mode 100644 index 8b9ead15..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ സന്ദർശിച്ച്‌ മുകളിൽ കാണിച്ച‌ കോഡ്‌ നൽകുക."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "നിങ്ങളുടെ അക്കൗണ്ട്‌ കണക്‌റ്റുചെയ്യാൻ, നിങ്ങളുടെ മൊബൈൽ ഉപകരണത്തിലെ Facebook ആപ്പ്‌ തുറന്ന്‌ അറിയിപ്പുകൾ പരിശോധിക്കുക."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- അല്ലെങ്കിൽ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ശരി"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "റദ്ദാക്കുക"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "നിങ്ങളുടെ Facebook അക്കൗണ്ടുമായി വീണ്ടും കണക്‌റ്റുചെയ്യുന്നതിന് ഈ ആപ്ലിക്കേഷനിൽ വീണ്ടും ലോഗിൻ ചെയ്യുക."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ശരി"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "സെർവർ താൽക്കാലികമായി തിരക്കിലാണ്, വീണ്ടും ശ്രമിക്കുക."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "റദ്ദാക്കുക"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്‌തു"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ എന്നതായി ലോഗിൻ ചെയ്‌തു"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ലോഗിൻ ചെയ്യുക"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ഉപയോഗിച്ച് തുടരുക"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook അക്കൗണ്ടിലേക്ക് ആക്‌സസ് നൽകിയിട്ടില്ല. ഉപകരണ ക്രമീകരണങ്ങൾ പരിശോധിച്ചുറപ്പിക്കുക."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook-ലേക്ക് കണക്‌റ്റുചെയ്യാനായില്ല. നിങ്ങളുടെ നെറ്റ്‌വർക്ക് കണക്ഷൻ പരിശോധിച്ച് വീണ്ടും ശ്രമിക്കുക."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "നിങ്ങളുടെ Facebook പാസ്‌വേഡ് മാറി. പാ‌സ്‌വേഡ് സ്ഥിരീകരിക്കുന്നതിന് ക്രമീകരണങ്ങൾ > Facebook എന്നത് തുറന്ന് പേര് ടാപ്പുചെയ്യുക."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "ഉപകരണത്തിൽ Facebook അക്കൗണ്ട് കോൺഫിഗർ ചെയ്‌തിട്ടില്ല."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "അക്കൗണ്ട് സ്ഥിരീകരിച്ചു. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "നിങ്ങൾക്ക് ഈ സമയം ആപ്ലിക്കേഷനുകളിലേക്ക് ലോഗിൻ ചെയ്യാനാവില്ല. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "നിങ്ങളുടെ നിയന്ത്രണത്തിലാണ് - നിങ്ങൾക്ക് ആപ്‌സുമായി ഏതെല്ലാം വിവരങ്ങൾ പങ്കിടണമെന്ന് തിരഞ്ഞെടുക്കുക."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ലോഗിൻ ചെയ്യുക"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "അയയ്‌ക്കുക"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "പങ്കിടൂ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "നിങ്ങൾ അല്ലേ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ലോഗിൻ സ്ഥിരീകരിക്കുക"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ആയി തുടരുക"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings deleted file mode 100644 index e857096c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ वर भेट द्या आणि वर दर्शवलेला कोड प्रविष्ट करा."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "तुमचे खाते कनेक्ट करण्यासाठी, तुमच्या मोबाईल उपकरणावर Facebook अॅप उघडा आणि सूचना तपासा."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- किंवा -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ठीक"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "रद्द करा"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "कृपया आपले फेसबुक खाते रीकनेक्ट करण्यासाठी या अनुप्रयोगावर पुन्हा लॉग इन करा."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ठीक"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "सर्व्हर तात्पुरता व्यस्त आहे, कृपया पुन्हा प्रयत्न करा."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "रद्द करा"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "लॉग आउट करा"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "फेसबुक वापरून लॉग इन केले"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ म्हणून लॉग इन केले"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "लॉग इन करा"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook सह चालू ठेवा"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "फेसबुकसह लॉग इन करा"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "लॉग आउट करा"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "फेसबुक खात्यावर प्रवेशास मंजूरी दिली गेली नाही. डिव्हाइस सेटिंग्ज सत्यापित करा."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "फेसबुकशी कनेक्ट करण्यात अक्षम. आपले नेटवर्क कनेक्शन तपासा आणि पुन्हा प्रयत्न करा."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "आपला फेसबुक पासवर्ड बदलला आहे. आपल्या पासवर्डची पुष्टी करण्यासाठी, सेटिंग्ज > फेसबुक उघडा आणि आपले नाव टॅप करा."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "डिव्हाइसवर फेसबुक खाते कॉन्फिगर केले गेले नाही."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "आपल्या खात्याची पुष्टी झाली नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "आपण यावेळी अनुप्रयोगांवर लॉग इन करू शकत नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "तुम्ही नियंत्रणात आहात - तुम्ही कोणती माहिती अॅपसह सामायिक करू इच्छिता ते निवडा."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "लॉग इन करा"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "पाठवा"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "सामायिक करा"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "तुम्ही नाही?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "लॉग इन पुष्टी करा"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ म्हणून चालू ठेवा"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings deleted file mode 100644 index 60b4cdb9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Lawati %@ dan masukkan kod yang ditunjukkan di atas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akaun anda, buka apl Facebook di peranti mudah alih anda dan semak pemberitahuan."; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Bukan anda?"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Batal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Sila log masuk ke aplikasi ini sekali lagi untuk menyambung semula akaun Facebook anda."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Pelayan ini sibuk buat sementara waktu, sila cuba lagi."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Batal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log Keluar"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Dilog masuk menggunakan Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Dilog masuk sebagai %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log masuk"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Teruskan dengan Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log masuk dengan Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log keluar"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Akses ke akaun Facebook tidak diberikan. Sahkan tetapan peranti."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Tidak dapat menyambung ke Facebook. Semak sambungan rangkaian anda dan cuba lagi."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Kata laluan Facebook anda telah ditukar. Untuk mengesahkan kata laluan anda, buka Tetapan > Facebook dan ketik nama anda."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Akaun Facebook masih belum dikonfigurasikan pada peranti."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Akaun anda tidak disahkan. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Anda tidak boleh log masuk ke aplikasi pada masa ini. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Anda yang mengawal - pilih maklumat yang anda ingin kongsi dengan apl."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log Masuk"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Hantar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Kongsi"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Sahkan Log Masuk"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Teruskan sebagai %@"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings deleted file mode 100644 index 3ebb66c3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Gå til %@, og oppgi koden som vises ovenfor."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Koble til kontoen din ved å åpne Facebook-appen på mobilenheten din og se etter varsler."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Avbryt"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Logg deg inn igjen på denne appen for å koble til Facebook-kontoen på nytt."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serveren er midlertidig opptatt. Prøv på nytt."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Avbryt"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Logg ut"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logget inn med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logget inn som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Logg inn"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsett med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Logg inn med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Logg ut"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Det er ikke gitt tilgang til Facebook-kontoen. Bekreft enhetsinnstillinger."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kunne ikke koble til Facebook. Kontroller nettverkstilkoblingen, og prøv på nytt."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-passordet ditt er endret. Bekreft passordet ditt ved å gå til Innstillinger > Facebook og trykke på navnet ditt."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke konfigurert på enheten."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Kontoen din er bekreftet. Logg deg inn på www.facebook.com, og følg instruksjonene."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge deg inn på apper for øyeblikket. Logg deg inn på www.facebook.com, og følg instruksjonene."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du bestemmer – velg hvilke opplysninger du vil dele med appene."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Logg inn"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Del"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ikke deg?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekreft innlogging"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsett som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings deleted file mode 100644 index 160654a4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Ga naar %@ en voer de bovenstaande code in."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Om je account te verbinden, open je de Facebook-app op je mobiele apparaat en controleer of je meldingen ziet."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OF -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuleren"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Meld je nogmaals aan bij deze app om verbinding te maken met je Facebook-account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "De server is tijdelijk niet beschikbaar. Probeer het opnieuw."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuleren"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Afmelden"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Aangemeld via Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Aangemeld als %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Aanmelden"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Doorgaan met Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Aanmelden met Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Afmelden"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Er is geen toegang verleend aan het Facebook-account. Verifieer de apparaatinstellingen."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Er kan geen verbinding worden gemaakt met Facebook. Controleer je netwerkverbinding en probeer het opnieuw."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Je Facebook-wachtwoord is gewijzigd. Open Instellingen > Facebook en tik op je naam om je wachtwoord te bevestigen."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Het Facebook-account is niet geconfigureerd op het apparaat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Je account is niet bevestigd. Meld je aan bij www.facebook.com en volg de instructies."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Je kunt je momenteel niet aanmelden bij apps. Meld je aan bij www.facebook.com en volg de instructies."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Jij hebt de controle. Kies welke informatie je met apps wilt delen."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Aanmelden"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Verzenden"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Delen"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ben jij dit niet?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Aanmelden bevestigen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Doorgaan als %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings deleted file mode 100644 index 07027466..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ ਵਿੱਚ ਜਾਓ ਅਤੇ ਉੱਤੇ ਦਿਖਾਏ ਗਏ ਕੋਡ ਨੂੰ ਦਾਖ਼ਲ ਕਰੋ।"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "ਆਪਣੇ ਖਾਤੇ ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਲਈ, ਆਪਣੀ ਮੋਬਾਈਲ ਡਿਵਾਈਸ 'ਤੇ Facebook ਐਪ ਨੂੰ ਖੋਲ੍ਹੋ ਅਤੇ ਸੂਚਨਾਵਾਂ ਨੂੰ ਦੇਖੋ।"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ਜਾਂ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ਠੀਕ"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ਰੱਦ ਕਰੋ"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੇ Facebook ਖਾਤੇ ਨਾਲ ਮੁੜ ਕਨੈਕਟ ਕਰਨ ਲਈ ਇਸ ਐਪ ਵਿੱਚ ਦੁਬਾਰਾ ਲੌਗ ਇਨ ਕਰੋ।"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ਠੀਕ"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "ਇਹ ਸਰਵਰ ਅਸਥਾਈ ਰੂਪ ਵਿੱਚ ਵਿਅਸਤ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ਰੱਦ ਕਰੋ"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ਦਾ ਉਪਯੋਗ ਕਰਕੇ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ ਵੱਜੋਂ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ਲੌਗ ਇਨ ਕਰੋ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ਦੇ ਨਾਲ ਜਾਰੀ ਰੱਖੋ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ਦੇ ਨਾਲ ਲੌਗ ਇਨ ਕਰੋ"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ਖਾਤੇ ਨੂੰ ਐਕਸੈਸ ਪ੍ਰਦਾਨ ਨਹੀਂ ਕੀਤੀ ਗਈ। ਡਿਵਾਈਸ ਸੈੱਟਿੰਗਜ਼ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਵਿੱਚ ਅਸਮਰਥਿਤ ਆਪਣੇ ਨੈੱਟਵਰਕ ਕਨੈਕਸ਼ਨ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "ਤੁਹਾਡੇ Facebook ਪਾਸਵਰਡ ਨੂੰ ਬਦਲ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਆਪਣੇ ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰਨ ਲਈ, ਸੈੱਟਿੰਗਜ਼ > Facebook ਖੋਲ੍ਹੋ ਅਤੇ ਆਪਣੇ ਨਾਂ ਨੂੰ ਟੈਪ ਕਰੋ।"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook ਖਾਤੇ ਨੂੰ ਡਿਵਾਈਸ 'ਤੇ ਕਨਫ਼ੀਗਰ ਨਹੀਂ ਕੀਤਾ ਗਿਆ ਹੈ।"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "ਤੁਹਾਡੇ ਖਾਤੇ ਦੀ ਪੁਸ਼ਟੀ ਨਹੀਂ ਕੀਤੀ ਗਈ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ਤੁਸੀਂ ਇਸ ਸਮੇਂ ਐਪ ਵਿੱਚ ਲੌਗ ਇਨ ਨਹੀਂ ਕਰ ਸਕਦੇ ਹੋ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ਤੁ\ਸੀਂ ਨਿਯੰਤਰਣ ਵਿੱਚ ਹੋ - ਉਹ ਜਾਣਕਾਰੀ ਚੁਣੋ ਜੋ ਤੁਸੀਂ ਐਪਸ ਦੇ ਨਾਲ ਸਾਂਝੀ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ।"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ਲੌਗ ਇਨ ਕਰੋ"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ਸਾਂਝਾ ਕਰੋ"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ਭੇਜੋ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "ਕੀ ਤੁਸੀਂ ਨਹੀਂ ਹੋ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ਲੌਗਇਨ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ਵੱਜੋਂ ਜਾਰੀ ਰੱਖੋ"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings deleted file mode 100644 index 5b0954f5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Wejdź na stronę %@ i wprowadź podany powyżej kod."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Aby połączyć konto, otwórz aplikację Facebook na urządzeniu mobilnym i sprawdź powiadomienia."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- LUB -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Anuluj"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Zaloguj się jeszcze raz do aplikacji, aby ponownie przyłączyć swoje konto na Facebooku."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serwer jest zajęty, spróbuj później."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Anuluj"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Wyloguj się"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Zalogowano przez Facebooka"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Zalogowano jako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Zaloguj się"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Kontynuuj za pośrednictwem Facebooka"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Zaloguj się przez Facebooka"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Wyloguj się"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Brak dostępu z tego konta na Facebooku. Sprawdź ustawienia urządzenia."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nie można połączyć się z Facebookiem. Sprawdź połączenie sieciowe i spróbuj ponownie."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Twoje hasło do Facebooka zostało zmienione. Aby potwierdzić hasło, otwórz Ustawienia > Facebook i dotknij swojego imienia i nazwiska."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Na tym urządzeniu nie skonfigurowano konta na Facebooku."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Konto niepotwierdzone. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Brak możliwości logowania się do aplikacji. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Masz pełną kontrolę – określ, jakie informacje chcesz udostępniać aplikacjom."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Zaloguj się"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Wyślij"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Udostępnij"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "To nie Ty?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potwierdź logowanie"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Kontynuuj jako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings deleted file mode 100644 index 6ff2c772..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Acesse %@ e introduza o código mostrado acima."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar sua conta, abra o aplicativo Facebook em seu dispositivo móvel e verifique se tem notificações."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– OU –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Entre nesse aplicativo novamente para reconectar sua conta do Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tente novamente."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Sair"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Você entrou usando o Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Conectado como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Entrar"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar com o Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Entrar com o Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Sair"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "O acesso à conta do Facebook não foi permitido. Verifique as configurações do dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Não foi possível se conectar ao Facebook. Verifique sua conexão de rede e tente novamente."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "A sua senha do Facebook foi alterada. Para confirmar a sua senha, abra Configurações > Facebook e toque no seu nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A sua conta não foi confirmada. Entre no site www.facebook.com e siga as instruções fornecidas."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Não é possível entrar em aplicativos neste momento. Entre no site www.facebook.com e siga as instruções fornecidas."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Você é quem controla — escolha quais informações você quer compartilhar com os aplicativos."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Entrar"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Envio"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartilhar"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Não é você?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirme o login"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continue como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings deleted file mode 100644 index 6648e115..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e introduz o código mostrado acima."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para ligares a tua conta, abre a app Facebook no teu dispositivo móvel e verifica se tens notificações."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– OU –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Volta a iniciar sessão nesta aplicação para te ligares novamente à tua conta do Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tenta novamente."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Terminar sessão"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Com sessão iniciada através do Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Com sessão iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Iniciar sessão"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar com o Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sessão com o Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Terminar a sessão"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "O acesso não foi concedido à conta do Facebook. Verificar as definições do dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Não é possível ligar ao Facebook. Verifica a tua ligação à rede e tenta novamente."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "A tua palavra-passe do Facebook foi alterada. Para confirmares a tua palavra-passe, abre as Definições > Facebook e toca no teu nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A tua conta não foi confirmada. Inicia sessão em www.facebook.com e segue as instruções indicadas."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Não podes iniciar sessão em aplicações neste momento. Inicia sessão em www.facebook.com e segue as instruções indicadas."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tens o controlo: escolhe a informação que pretendes partilhar com as apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Iniciar sessão"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Partilhar"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Não és tu?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar Início de Sessão"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings deleted file mode 100644 index 450a9cc8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Откройте страницу %@ и введите представленный выше код."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Чтобы подключить аккаунт, откройте приложение Facebook на мобильном устройстве и проверьте уведомления."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ИЛИ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Отменить"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Войдите в это приложение еще раз, чтобы повторно подключить ваш аккаунт Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Сервер временно загружен, повторите попытку."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Отменить"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Выход"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Выполнен вход с помощью Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Вы вошли как %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Вход"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Продолжить с Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Вход через Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Выход"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Аккаунту Facebook доступ не предоставлен. Проверьте настройки устройства."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Не удалось подключиться к Facebook. Проверьте сетевое подключение и повторите попытку."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ваш пароль Facebook изменен. Чтобы подтвердить пароль, откройте «Настройки» > Facebook и коснитесь вашего имени."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "На устройстве не настроен аккаунт Facebook."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ваш аккаунт не подтвержден. Войдите на сайт www.facebook.com и следуйте инструкциям."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Сейчас нельзя войти в приложения. Войдите на сайт www.facebook.com и следуйте инструкциям."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Вы сами выбираете, какой информацией поделиться с приложениями."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Вход в систему"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Отправить"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Поделиться"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Это не вы?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Подтвердить вход"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Продолжить как %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings deleted file mode 100644 index 859b9b3d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Navštívte stránku %@ a zadajte kód zobrazený vyššie."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Na pripojenie svojho účtu otvorte vo svojom mobilnom zariadení aplikáciu Facebook a skontrolujte upozornenia."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ALEBO -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Zrušiť"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Ak sa chcete znova pripojiť k svojmu účtu na Facebooku, prihláste sa znova do tejto aplikácie."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server je dočasne zaneprázdnený – skúste znova."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Zrušiť"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odhlásiť"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Prihlásený cez Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Prihlásený ako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Prihlásiť sa"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Pokračovať s Facebookom"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Prihlásiť sa cez Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odhlásiť sa"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Danému účtu na Facebooku nebol poskytnutý prístup. Skontrolujte nastavenia zariadenia."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nedá sa pripojiť k Facebooku. Skontrolujte svoje sieťové pripojenie a skúste znova."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Vaše heslo pre Facebook sa zmenilo. Na potvrdenie svojho hesla otvorte Nastavenia > Facebook a ťuknite na svoje meno."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Daný účet na Facebooku nebol nastavený v zariadení."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet nie je potvrdený. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Momentálne sa nemôžete prihlásiť do aplikácií. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Máte to pod kontrolou: vyberte, ktoré informácie chcete zdieľať s aplikáciami."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Prihlásenie sa"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Odoslať"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Zdieľať"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nie ste to vy?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrdiť prihlásenie"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Pokračovať ako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings deleted file mode 100644 index 69c80525..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besök %@ och ange koden som visas ovan."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Koppla ditt konto genom att öppna Facebook-appen på din mobila enhet och söka efter aviseringar."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Avbryt"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Logga in på den här appen igen om du vill ansluta ditt Facebook-konto på nytt."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Servern är upptagen för tillfället. Försök igen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Avbryt"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Logga ut"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Inloggad med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Inloggad som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Logga in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsätt med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Logga in med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Logga ut"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Du har inte fått tillgång till Facebook-kontot. Verifiera enhetsinställningar."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Det går inte att ansluta till Facebook. Kontrollera nätverksanslutningen och försök igen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ditt Facebook-lösenord har ändrats. Bekräfta lösenordet genom att öppna Inställningar > Facebook och skriva in ditt namn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-konto har inte konfigurerats på enheten."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ditt konto har inte bekräftats. Logga in på www.facebook.com och följ instruktionerna."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan inte logga in på appar för närvarande. Logga in på www.facebook.com och följ instruktionerna."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du bestämmer – välj vilken info du vill dela med appar."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Logga in"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Skicka"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Dela"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Inte du?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekräfta inloggning"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsätt som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings deleted file mode 100644 index ec117a9a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ என்பதற்குச் சென்று மேலே தெரியும் குறியீட்டை உள்ளிடவும்."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "உங்கள் கணக்குடன் இணைக்க, உங்கள் மொபைல் சாதனத்தில் Facebook பயன்பாட்டைத் திறந்து அறிவிப்புகளைப் பார்க்கவும்."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- அல்லது -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "சரி"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ரத்துசெய்"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "உங்கள் Facebook கணக்கில் மீண்டும் இணைய, இந்தப் பயன்பாட்டில் மீண்டும் உள்நுழையவும்."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "சரி"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "சேவையகம் தற்காலிகமாக பிஸியாக உள்ளது, மீண்டும் முயற்சிக்கவும்."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ரத்துசெய்"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "வெளியேறு"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook மூலம் உள்நுழையப்பட்டுள்ளது"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ இல் உள்நுழைந்துள்ளீர்கள்"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "உள்நுழைவு"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook இல் தொடரவும்"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook மூலம் உள்நுழையவும்"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "வெளியேறு"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook கணக்கிற்கு அணுகல் வழங்கப்படவில்லை. சாதன அமைப்புகளைச் சரிபார்க்கவும்."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook இல் இணைய முடியவில்லை. இணைய இணைப்பைச் சரிபார்த்து, மீண்டும் முயற்சிக்கவும்."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook கடவுச்சொல் மாற்றப்பட்டது. கடவுச்சொல்லை உறுதிசெய்ய, அமைப்புகள் > Facebook க்கு சென்று உங்கள் பெயரைத் தட்டவும்."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "சாதனத்தில் Facebook கணக்கு உள்ளமைக்கப்படவில்லை."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "உங்கள் கணக்கு உறுதிசெய்யப்படவில்லை. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "இப்போது பயன்பாடுகளில் உள்நுழைய முடியாது. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "பயன்பாடுகளில் எந்தத் தகவலைப் பகிர விரும்புகிறீர்கள் என்பதை நீங்கள் கட்டுப்படுத்தலாம்."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "உள்நுழைவு"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "அனுப்பு"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "பகிர்"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "நீங்கள் இல்லையா?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "உள்நுழைவை உறுதிப்படுத்தவும்"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ஆகத் தொடரவும்"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings deleted file mode 100644 index 0d0bbe0e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ లింక్‌ను సందర్శించి, ఎగువ చూపిన కోడ్‌ను నమోదు చేయండి."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "మీ ఖాతాను అనుసంధానించడానికి, మీ మొబైల్ పరికరంలో Facebook అనువర్తనాన్ని తెరిచి, నోటిఫికేషన్‌లను తనిఖీ చేయండి."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- లేదా -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ఒప్పుకుంటున్నాను"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "రద్దు చేయి"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "దయచేసి మీ Facebook ఖాతాను మళ్లీ కనెక్ట్ చేయడానికి ఈ అప్లికేషన్‌కు మళ్లీ లాగిన్ చేయండి."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ఒప్పుకుంటున్నాను"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "సర్వర్ తాత్కాలికంగా బిజీగా ఉంది, దయచేసి మళ్లీ ప్రయత్నించండి."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "రద్దు చేయి"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "లాగ్ అవుట్ చేయి"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ఉపయోగించి లాగిన్ చేసారు"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@గా లాగిన్ చేసారు"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "లాగిన్ చేయి"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebookతో కొనసాగించండి"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebookతో లాగిన్ చేయి"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "లాగ్ అవుట్ చేయి"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ఖాతాకు ప్రాప్యత మంజూరు చేయలేదు. పరికర సెట్టింగ్‌లను సరిచూడండి."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebookకి కనెక్ట్ చేయడం సాధ్యపడలేదు. మీ నెట్‌వర్క్ కనెక్షన్‌ను తనిఖీ చేసి, మళ్లీ ప్రయత్నించండి."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "మీ Facebook పాస్‌వర్డ్ మారింది. మీ పాస్‌వర్డ్‌ను నిర్ధారించడానికి, సెట్టింగ్‌లు > Facebook తెరిచి, మీ పేరు నొక్కండి."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "పరికరంలో Facebook ఖాతా కాన్ఫిగర్ చేయబడలేదు."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "మీ ఖాతా నిర్ధారించబడలేదు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ప్రస్తుతం మీరు అప్లికేషన్‌లకు లాగిన్ చేయలేరు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "మీకు నియంత్రణ ఉంది - మీరు అనువర్తనాలతో భాగస్వామ్యం చేయాలనుకునే సమాచారాన్ని ఎంచుకోండి."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "లాగిన్ చేయండి"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "పంపు"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "భాగస్వామ్యం చేయండి"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "మీరు కాదా?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "లాగిన్‌ను నిర్ధారించండి"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ వలె కొనసాగండి"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings deleted file mode 100644 index 3883ee8f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "ไปที่ %@ และใส่โค้ดที่แสดงด้านบน"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "หากต้องการเชื่อมต่อบัญชีผู้ใช้ของคุณ ให้เปิดแอพ Facebook บนอุปกรณ์มือถือของคุณและตรวจสอบการแจ้งเตือน"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- หรือ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ตกลง"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ยกเลิก"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "โปรดลงชื่อเข้าใช้แอพนี้อีกครั้งเพื่อเชื่อมต่อบัญชีผู้ใช้ Facebook ของคุณใหม่"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ตกลง"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "เซิร์ฟเวอร์ไม่พร้อมให้บริการชั่วคราว โปรดลองใหม่อีกครั้ง"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ยกเลิก"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ออกจากระบบ"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "เข้าสู่ระบบโดยใช้ Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "เข้าสู่ระบบในชื่อ %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "เข้าสู่ระบบ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "ดำเนินการต่อด้วย Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "เข้าสู่ระบบด้วย Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ออกจากระบบ"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "บัญชีผู้ใช้ Facebook ไม่ได้รับอนุญาตให้เข้าถึง ตรวจสอบการตั้งค่าของอุปกรณ์"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "ไม่สามารถเชื่อมต่อกับ Facebook ตรวจสอบการเชื่อมต่อเครือข่ายและลองอีกครั้ง"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "เปลี่ยนรหัสผ่าน Facebook ของคุณแล้ว เพื่อยืนยันรหัสผ่านของคุณ ให้เปิด การตั้งค่า > Facebook แล้วแตะชื่อของคุณ"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "บัญชีผู้ใช้ Facebook ไม่ได้รับการกำหนดค่าบนอุปกรณ์เครื่องนี้"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "บัญชีผู้ใช้ของคุณไม่ได้รับการยืนยัน โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "คุณไม่สามารถเข้าสู่ระบบของแอพได้ในตอนนี้ โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "คุณเป็นฝ่ายควบคุม โปรดเลือกข้อมูลที่คุณต้องการแชร์ด้วยแอพ"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "เข้าสู่ระบบ"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ส่ง"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "แชร์"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "หากไม่ใช่คุณ"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ยืนยันการเข้าสู่ระบบ"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "ดำเนินการต่อในชื่อ %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings deleted file mode 100644 index 51a5328d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ adresini ziyaret edin ve yukarıda görülen kodu girin."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Hesabınızı bağlamak için, mobil cihazınızda Facebook uygulamasını açın ve bildirimlerinizi kontrol edin."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- YA DA -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Tamam"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "İptal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Facebook hesabına yeniden bağlanmak için lütfen bu uygulamaya tekrar giriş yap."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Tamam"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Sunucu geçici olarak meşgul. Lütfen tekrar dene."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "İptal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Çıkış Yap"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ile giriş yapıldı"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ olarak giriş yapıldı"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Giriş yap"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ile Devam Et"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ile giriş yap"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Çıkış yap"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook hesabına erişim izni verilmedi. Cihaz ayarlarını doğrula."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook'a bağlanılamıyor. Ağ bağlantını kontrol edip tekrar dene."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook şifren değiştirildi. Şifreni onaylamak için Ayarlar > Facebook'u aç ve adına dokunun."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook hesabı cihaz üzerinde yapılandırılmadı."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Hesabın onaylanmadı. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Şu an için uygulamalara giriş yapamazsın. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Kontrol sende. Uygulamalarla paylaşmak istediğin bilgileri seç."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Giriş Yap"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Gönder"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Paylaş"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Sen değil misin?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Girişi Onayla"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ olarak devam et"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings deleted file mode 100644 index d0ddbc61..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Truy cập %@ và nhập mã hiển thị ở trên."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Để kết nối tài khoản của bạn, hãy mở ứng dụng Facebook trên thiết bị di động và kiểm tra thông báo."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- HOẶC -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Hủy"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Vui lòng đăng nhập lại vào ứng dụng này để kết nối lại tài khoản Facebook của bạn."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Máy chủ hiện đang bận, vui lòng thử lại sau."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Hủy"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Đăng xuất"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Đã đăng nhập bằng Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Đã đăng nhập với tư cách là"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Đăng nhập"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Tiếp tục với Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Đăng nhập bằng Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Đăng xuất"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Quyền truy cập chưa được cấp cho tài khoản Facebook. Xác minh thiết lập của thiết bị."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Không thể kết nối với Facebook. Vui lòng kiểm tra kết nối mạng của bạn và thử lại."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Mật khẩu Facebook của bạn đã thay đổi. Để xác nhận mật khẩu của bạn, hãy mở Thiết lập > Facebook và nhấn vào tên bạn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Tài khoản Facebook chưa được định cấu hình trên thiết bị."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tài khoản của bạn không được xác nhận. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Bạn không thể đăng nhập vào các ứng dụng lúc này. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Bạn đang có quyền kiểm soát - hãy chọn thông tin bạn muốn chia sẻ với ứng dụng."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Đăng nhập"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Gửi"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Chia sẻ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Không phải bạn?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Xác nhận đăng nhập"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Tiếp tục với tư cách %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings deleted file mode 100644 index 4273dc25..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "请访问 %@ 并输入上方显示的验证码。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "要关联你的帐户,请在移动设备上打开 Facebook 应用,并查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或者 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "确定"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "请再次登录此应用,以便重新连接您的 Facebook 帐户。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "确定"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "服务器暂时繁忙,请重试。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "退出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "已使用 Facebook 登录"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "已以 %@ 身份登录"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登录"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "继续使用 Facebook 登录"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登录"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "退出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "未授予该 Facebook 帐户访问权限。验证设备设置。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "无法连接到 Facebook。检查网络连接并重试。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密码已更改。要确认密码,请打开设置 > Facebook,并轻触您的姓名。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "未在设备上配置 Facebook 帐户。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帐户未确认。请登录 www.facebook.com,并按照提供的说明操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您此时不能登录应用。请登录 www.facebook.com,并按照提供的说明操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "一切任您掌控 — 选择您想通过应用分享的信息。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登录"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "发送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "不是你?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "确认登录"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以%@的身份继续"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings deleted file mode 100644 index 44f853db..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "前往 %@ 並輸入上方的程式碼。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "若要連結您的帳戶,請在您的流動裝置上開啟 Facebook 應用程式並查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "確定"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "請再次登入此應用程式以重新連接您的 Facebook 帳戶。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "確定"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "登出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "使用 Facebook 登入"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "以 %@ 身分登入"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登入"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "繼續使用 Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登入"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "登出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "沒有獲得 Facebook 帳戶的存取授權。確認裝置設定。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "無法與 Facebook 連線。請檢查網絡連線,然後再試一次。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經變更。要確認密碼,請開啟設定 > Facebook,然後點按您的名稱。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook 帳戶尚未在此裝置上設定。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帳戶尚未確認。請登入 www.facebook.com 並依據指示操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您現時無法登入應用程式。請登入 www.facebook.com 並依據指示操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "控制權在您 - 選擇您要與應用程式分享的資訊。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登入"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "傳送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "這不是您?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "確認登入"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以%@的身分繼續"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings deleted file mode 100644 index b97bd4aa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "請前往 %@ 並輸入上方顯示的代碼。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "若要連結帳號,請從行動裝置開啟 Facebook 應用程式,並查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "是"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "請重新登入此應用程式以重新連結您的 Facebook 帳號。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "是"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "登出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "已使用 Facebook 登入"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "以 %@ 身分登入"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登入"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "繼續使用 Facebook 帳號"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登入"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "登出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "尚未取得授權,無法存取 Facebook 帳號。請確認裝置設定。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "無法連線到 Facebook。請檢查網路連線,然後再試一次。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經更改。若要確認您的密碼,請開啟「設定」>「Facebook」,然後點按您的姓名。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "尚未透過裝置設定 Facebook 帳號。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帳號尚未確認。請登入 www.facebook.com,然後按照指示操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您目前無法登入應用程式。請登入 www.facebook.com,然後按照指示操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "您可以全盤掌控!選擇您想和應用程式分享的資訊內容。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登入"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "傳送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "這不是您?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "確認登入"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以 %@ 身分繼續"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers deleted file mode 120000 index a177d2a6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAEMManager.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAEMManager.h new file mode 100644 index 00000000..e40489bd --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAEMManager.h @@ -0,0 +1,49 @@ +/* + * Copyright (c) Meta Platforms, Inc. and affiliates. + * All rights reserved. + * + * This source code is licensed under the license found in the + * LICENSE file in the root directory of this source tree. + */ + +#import + +#import + +@protocol FBSDKSwizzling; +@protocol FBSDKAEMReporter; +@protocol FBSDKAutoSetup; + +NS_ASSUME_NONNULL_BEGIN + +/** + Internal type exposed to facilitate transition to Swift. + API Subject to change or removal without warning. Do not use. + + @warning INTERNAL - DO NOT USE + */ +NS_SWIFT_NAME(_AEMManager) +@interface FBSDKAEMManager : NSObject + ++ (instancetype)new NS_UNAVAILABLE; +- (instancetype)init NS_UNAVAILABLE; + +/// The shared instance of AEMManager. +@property (class, nonatomic, readonly, strong) FBSDKAEMManager *shared; + +- (void)configureWithSwizzler:(nonnull Class)swizzler + aemReporter:(nonnull Class)aemReporter + eventLogger:(nonnull id)eventLogger + crashHandler:(nonnull id)crashHandler + featureChecker:(nonnull id)featureChecker + appEventsUtility:(nonnull id)appEventsUtility +NS_SWIFT_NAME(configure(swizzler:reporter:eventLogger:crashHandler:featureChecker:appEventsUtility:)); + +- (void)enableAutoSetup:(BOOL)proxyEnabled; + +- (void)logAutoSetupStatus:(BOOL)optin + source:(NSString *)source; + +@end + +NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKATEPublisherCreating.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherCreating.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKATEPublisherCreating.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherCreating.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKATEPublisherFactory.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherFactory.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKATEPublisherFactory.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherFactory.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAccessToken.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAccessToken.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAccessTokenProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAccessTokenProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAccessTokenProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAccessTokenProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAdvertiserIDProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAdvertiserIDProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAdvertiserIDProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAdvertiserIDProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAdvertisingTrackingStatus.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAdvertisingTrackingStatus.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAdvertisingTrackingStatus.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAdvertisingTrackingStatus.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppAvailabilityChecker.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppAvailabilityChecker.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppAvailabilityChecker.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppAvailabilityChecker.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventDropDetermining.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventDropDetermining.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventDropDetermining.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventDropDetermining.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventName.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventName.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventName.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventName.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventParameterName.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterName.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventParameterName.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterName.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventParameterProduct.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterProduct.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventParameterProduct.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterProduct.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventParameterValue.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterValue.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventParameterValue.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterValue.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventParametersExtracting.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventParametersExtracting.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventParametersExtracting.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventParametersExtracting.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventUserDataType.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventUserDataType.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventUserDataType.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventUserDataType.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEvents.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEvents.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguration.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsConfiguration.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguration.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsConfigurationManager.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationManager.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsConfigurationManager.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationManager.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsConfigurationProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsConfigurationProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsConfigurationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsConfigurationProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h similarity index 93% rename from ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h index 7ecffa81..9a4c3549 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h @@ -33,7 +33,7 @@ @protocol FBSDKAppEventDropDetermining; @protocol FBSDKCAPIReporter; @protocol FBSDKAppEventParametersExtracting; - +@protocol FBSDKMACARuleMatching; #if !TARGET_OS_TV @protocol FBSDKEventProcessing; @protocol FBSDKMetadataIndexing; @@ -73,7 +73,9 @@ NS_SWIFT_NAME(_AppEventsConfiguring) appEventsUtility:(id)appEventsUtility internalUtility:(id)internalUtility capiReporter:(id)capiReporter -NS_SWIFT_NAME(configure(gateKeeperManager:appEventsConfigurationProvider:serverConfigurationProvider:graphRequestFactory:featureChecker:primaryDataStore:logger:settings:paymentObserver:timeSpentRecorder:appEventsStateStore:eventDeactivationParameterProcessor:restrictiveDataFilterParameterProcessor:atePublisherFactory:appEventsStateProvider:advertiserIDProvider:userDataStore:appEventsUtility:internalUtility:capiReporter:)); + protectedModeManager:(id)protectedModeManager + macaRuleMatchingManager:(id)macaRuleMatchingManager +NS_SWIFT_NAME(configure(gateKeeperManager:appEventsConfigurationProvider:serverConfigurationProvider:graphRequestFactory:featureChecker:primaryDataStore:logger:settings:paymentObserver:timeSpentRecorder:appEventsStateStore:eventDeactivationParameterProcessor:restrictiveDataFilterParameterProcessor:atePublisherFactory:appEventsStateProvider:advertiserIDProvider:userDataStore:appEventsUtility:internalUtility:capiReporter:protectedModeManager:macaRuleMatchingManager:)); #if !TARGET_OS_TV diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h similarity index 51% rename from ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h index 3ba4f7b8..36f32f40 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h @@ -24,6 +24,28 @@ NS_SWIFT_NAME(_AppEventsDeviceInfo) @property (nullable, nonatomic, readonly) id settings; +// Ephemeral data, may change during the lifetime of an app. We collect them in different +// 'group' frequencies - group1 may gets collected once every 30 minutes. + +// group1 +@property (nonatomic) NSString *carrierName; +@property (nonatomic) NSString *timeZoneAbbrev; +@property (nonatomic) unsigned long long remainingDiskSpaceGB; +@property (nonatomic) NSString *timeZoneName; + +// Persistent data, but we maintain it to make rebuilding the device info as fast as possible. +@property (nonatomic) NSString *bundleIdentifier; +@property (nonatomic) NSString *longVersion; +@property (nonatomic) NSString *shortVersion; +@property (nonatomic) NSString *sysVersion; +@property (nonatomic) NSString *machine; +@property (nonatomic) NSString *language; +@property (nonatomic) unsigned long long totalDiskSpaceGB; +@property (nonatomic) unsigned long long coreCount; +@property (nonatomic) CGFloat width; +@property (nonatomic) CGFloat height; +@property (nonatomic) CGFloat density; + #if !DEBUG - (instancetype)init NS_UNAVAILABLE; + (instancetype)new NS_UNAVAILABLE; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsFlushBehavior.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushBehavior.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsFlushBehavior.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushBehavior.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsFlushReason.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushReason.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsFlushReason.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushReason.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsNotificationName.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsNotificationName.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsNotificationName.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsNotificationName.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h similarity index 94% rename from ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h index 8dad6f89..9f2408cb 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h @@ -24,7 +24,7 @@ NS_SWIFT_NAME(_AppEventsParameterProcessing) - (void)enable; - (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters - eventName:(FBSDKAppEventName)eventName; + eventName:(nullable FBSDKAppEventName)eventName; @end diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsReporter.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsReporter.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsReporter.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsReporter.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsState.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsState.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsState.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsState.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsStateManager.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateManager.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsStateManager.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateManager.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsStatePersisting.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStatePersisting.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsStatePersisting.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStatePersisting.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsStateProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsStateProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsUtility.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtility.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsUtility.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtility.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h similarity index 96% rename from ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h index 7997c1d6..777a1b41 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h @@ -30,6 +30,7 @@ NS_SWIFT_NAME(_AppEventsUtilityProtocol) loggingOverrideAppID:(nullable NSString *)loggingOverrideAppID; - (NSString *)flushReasonToString:(FBSDKAppEventsFlushReason)flushReason; - (void)saveCampaignIDs:(NSURL *)url; +- (nullable NSString *)getCampaignIDs; @end diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkCreating.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkCreating.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkCreating.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkCreating.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkEventPosting.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkEventPosting.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkEventPosting.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkEventPosting.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkNavigationBlock.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationBlock.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkNavigationBlock.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationBlock.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkNavigationType.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationType.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkNavigationType.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationType.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkResolverRequestBuilding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolverRequestBuilding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkResolverRequestBuilding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolverRequestBuilding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkResolving.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolving.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkResolving.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolving.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkTargetCreating.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetCreating.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkTargetCreating.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetCreating.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkTargetProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkTargetProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkURL.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURL.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkURL.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURL.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkURLCreating.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLCreating.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkURLCreating.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLCreating.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkURLKeys.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLKeys.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkURLKeys.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLKeys.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkUtility.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkUtility.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkVersion.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkVersion.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinkVersion.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinkVersion.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinksBlock.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinksBlock.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppLinksBlock.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppLinksBlock.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppStoreReceiptProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppStoreReceiptProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppStoreReceiptProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppStoreReceiptProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppURLSchemeProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppURLSchemeProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppURLSchemeProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAppURLSchemeProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKApplicationActivating.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKApplicationActivating.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKApplicationActivating.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKApplicationActivating.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKApplicationLifecycleNotifications.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleNotifications.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKApplicationLifecycleNotifications.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleNotifications.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKApplicationLifecycleObserving.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleObserving.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKApplicationLifecycleObserving.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleObserving.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKApplicationObserving.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKApplicationObserving.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKApplicationObserving.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKApplicationObserving.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKApplicationStateSetting.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKApplicationStateSetting.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKApplicationStateSetting.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKApplicationStateSetting.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAuthenticationStatusUtility.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationStatusUtility.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAuthenticationStatusUtility.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationStatusUtility.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAuthenticationToken.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationToken.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAuthenticationToken.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationToken.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAuthenticationTokenProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationTokenProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAuthenticationTokenProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationTokenProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAutoSetup.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAutoSetup.h new file mode 100644 index 00000000..3b0d60b7 --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKAutoSetup.h @@ -0,0 +1,44 @@ +/* + * Copyright (c) Meta Platforms, Inc. and affiliates. + * All rights reserved. + * + * This source code is licensed under the license found in the + * LICENSE file in the root directory of this source tree. + */ + +#import + +@protocol FBSDKAEMReporter; +@protocol FBSDKAppEventsUtility; +@protocol FBSDKCrashHandler; +@protocol FBSDKEventLogging; +@protocol FBSDKFeatureDisabling; +@protocol FBSDKSwizzling; + +NS_ASSUME_NONNULL_BEGIN + +/** + Internal Type exposed to facilitate transition to Swift. + API Subject to change or removal without warning. Do not use. + + @warning INTERNAL - DO NOT USE + */ +NS_SWIFT_NAME(_AutoSetup) +@protocol FBSDKAutoSetup + +- (void)configureWithSwizzler:(nonnull Class)swizzler + aemReporter:(nonnull Class)aemReporter + eventLogger:(nonnull id)eventLogger + crashHandler:(nonnull id)crashHandler + featureChecker:(nonnull id)featureChecker + appEventsUtility:(nonnull id)appEventsUtility +NS_SWIFT_NAME(configure(swizzler:reporter:eventLogger:crashHandler:featureChecker:appEventsUtility:)); + +- (void)enableAutoSetup:(BOOL)proxyEnabled; + +- (void)logAutoSetupStatus:(BOOL)optin + source:(NSString *)source; + +@end + +NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIProtocolType.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocolType.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIProtocolType.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocolType.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIRequest.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIRequest.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIRequestCreating.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestCreating.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIRequestCreating.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestCreating.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIRequestOpening.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestOpening.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIRequestOpening.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestOpening.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIRequestProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIRequestProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIResponse.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIResponse.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKBridgeAPIResponse.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIResponse.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKButton.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKButton.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKButton.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKButton.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKButtonImpressionLogging.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKButtonImpressionLogging.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKButtonImpressionLogging.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKButtonImpressionLogging.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKClientTokenProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKClientTokenProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKClientTokenProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKClientTokenProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCodelessIndexer.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexer.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCodelessIndexer.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexer.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCodelessIndexing.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexing.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCodelessIndexing.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexing.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKConstants.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKConstants.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKConstants.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKConstants.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKContainerViewController.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKContainerViewController.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKContainerViewController.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKContainerViewController.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKConversionValueUpdating.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKConversionValueUpdating.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKConversionValueUpdating.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKConversionValueUpdating.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCoreKit-Swift.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h similarity index 98% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCoreKit-Swift.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h index c6d80fdf..2e763b48 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCoreKit-Swift.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBSDKCOREKIT_SWIFT_H #define FBSDKCOREKIT_SWIFT_H #pragma clang diagnostic push @@ -23,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -183,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -193,11 +204,34 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import AuthenticationServices; +@import CoreFoundation; @import CoreGraphics; @import FBAEMKit; @import Foundation; @@ -209,6 +243,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -216,6 +251,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -224,8 +260,10 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; @class NSNumber; +@class NSURL; /// Internal Type exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. @@ -237,6 +275,7 @@ SWIFT_PROTOCOL_NAMED("_AEMReporterProtocol") + (void)setConversionFilteringEnabled:(BOOL)isEnabled; + (void)setCatalogMatchingEnabled:(BOOL)isEnabled; + (void)setAdvertiserRuleMatchInServerEnabled:(BOOL)isEnabled; ++ (void)handle:(NSURL * _Nullable)url; @end @@ -245,7 +284,6 @@ SWIFT_PROTOCOL_NAMED("_AEMReporterProtocol") -@class NSURL; @protocol FBSDKAppLinkTarget; /// Contains App Link metadata relevant for navigation on this device @@ -496,7 +534,7 @@ SWIFT_PROTOCOL_NAMED("CAPIReporter") /// Internal type exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. /// @warning INTERNAL - DO NOT USE -SWIFT_CLASS("_TtC12FBSDKCoreKit17CoreUIApplication") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_CLASS("_TtC12FBSDKCoreKit17CoreUIApplication") @interface CoreUIApplication : NSObject SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull shared;) + (id _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; @@ -523,7 +561,7 @@ enum FBSDKProfilePictureMode : NSUInteger; @class NSCoder; /// A view to display a profile picture. -SWIFT_CLASS_NAMED("FBProfilePictureView") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_CLASS_NAMED("FBProfilePictureView") @interface FBSDKProfilePictureView : UIView /// The mode for the receiver to determine the aspect ratio of the source image. @property (nonatomic) enum FBSDKProfilePictureMode pictureMode; @@ -572,7 +610,14 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKTransfo + (FBSDKTransformerGraphRequestFactory * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (void)configureWithDatasetID:(NSString * _Nonnull)datasetID url:(NSString * _Nonnull)url accessKey:(NSString * _Nonnull)accessKey; -- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters; +- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters userAgent:(NSString * _Nonnull)userAgent; +@end + + +SWIFT_PROTOCOL_NAMED("MACARuleMatching") +@protocol FBSDKMACARuleMatching +- (void)enable; +- (NSDictionary * _Nullable)processParameters:(NSDictionary * _Nullable)params event:(NSString * _Nullable)event SWIFT_WARN_UNUSED_RESULT; @end @class NSDate; @@ -954,10 +999,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKSetting /// @warning INTERNAL - DO NOT USE @property (nonatomic, copy) NSString * _Nullable userAgentSuffix; /// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. @property (nonatomic) BOOL advertiserTrackingEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.\n "); /// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. @property (nonatomic) BOOL isAdvertiserTrackingEnabled; /// Internal property exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. @@ -1339,6 +1382,9 @@ SWIFT_CLASS_NAMED("_WebViewFactory") - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif @@ -1346,7 +1392,7 @@ SWIFT_CLASS_NAMED("_WebViewFactory") #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBSDKCOREKIT_SWIFT_H #define FBSDKCOREKIT_SWIFT_H #pragma clang diagnostic push @@ -1369,11 +1415,20 @@ SWIFT_CLASS_NAMED("_WebViewFactory") # 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 @@ -1529,9 +1584,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -1539,11 +1596,34 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import AuthenticationServices; +@import CoreFoundation; @import CoreGraphics; @import FBAEMKit; @import Foundation; @@ -1555,6 +1635,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -1562,6 +1643,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -1570,8 +1652,10 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; @class NSNumber; +@class NSURL; /// Internal Type exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. @@ -1583,6 +1667,7 @@ SWIFT_PROTOCOL_NAMED("_AEMReporterProtocol") + (void)setConversionFilteringEnabled:(BOOL)isEnabled; + (void)setCatalogMatchingEnabled:(BOOL)isEnabled; + (void)setAdvertiserRuleMatchInServerEnabled:(BOOL)isEnabled; ++ (void)handle:(NSURL * _Nullable)url; @end @@ -1591,7 +1676,6 @@ SWIFT_PROTOCOL_NAMED("_AEMReporterProtocol") -@class NSURL; @protocol FBSDKAppLinkTarget; /// Contains App Link metadata relevant for navigation on this device @@ -1842,7 +1926,7 @@ SWIFT_PROTOCOL_NAMED("CAPIReporter") /// Internal type exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. /// @warning INTERNAL - DO NOT USE -SWIFT_CLASS("_TtC12FBSDKCoreKit17CoreUIApplication") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_CLASS("_TtC12FBSDKCoreKit17CoreUIApplication") @interface CoreUIApplication : NSObject SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull shared;) + (id _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; @@ -1869,7 +1953,7 @@ enum FBSDKProfilePictureMode : NSUInteger; @class NSCoder; /// A view to display a profile picture. -SWIFT_CLASS_NAMED("FBProfilePictureView") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_CLASS_NAMED("FBProfilePictureView") @interface FBSDKProfilePictureView : UIView /// The mode for the receiver to determine the aspect ratio of the source image. @property (nonatomic) enum FBSDKProfilePictureMode pictureMode; @@ -1918,7 +2002,14 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKTransfo + (FBSDKTransformerGraphRequestFactory * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (void)configureWithDatasetID:(NSString * _Nonnull)datasetID url:(NSString * _Nonnull)url accessKey:(NSString * _Nonnull)accessKey; -- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters; +- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters userAgent:(NSString * _Nonnull)userAgent; +@end + + +SWIFT_PROTOCOL_NAMED("MACARuleMatching") +@protocol FBSDKMACARuleMatching +- (void)enable; +- (NSDictionary * _Nullable)processParameters:(NSDictionary * _Nullable)params event:(NSString * _Nullable)event SWIFT_WARN_UNUSED_RESULT; @end @class NSDate; @@ -2300,10 +2391,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKSetting /// @warning INTERNAL - DO NOT USE @property (nonatomic, copy) NSString * _Nullable userAgentSuffix; /// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. @property (nonatomic) BOOL advertiserTrackingEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.\n "); /// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. @property (nonatomic) BOOL isAdvertiserTrackingEnabled; /// Internal property exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. @@ -2685,10 +2774,15 @@ SWIFT_CLASS_NAMED("_WebViewFactory") - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif #pragma clang diagnostic pop #endif +#else +#error unsupported Swift architecture #endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h similarity index 99% rename from ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h index 23c96145..ae840ce9 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h @@ -13,6 +13,7 @@ #import #import #import +#import #import #import #import @@ -65,6 +66,7 @@ #import #import #import +#import #import #import #import @@ -84,9 +86,7 @@ #import #import #import -#import #import -#import #import #import #import diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCoreKitVersions.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h similarity index 70% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCoreKitVersions.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h index 56befda2..f8b78981 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCoreKitVersions.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h @@ -6,5 +6,5 @@ * LICENSE file in the root directory of this source tree. */ -#define FBSDK_VERSION_STRING @"15.1.0" -#define FBSDK_DEFAULT_GRAPH_API_VERSION @"v15.0" +#define FBSDK_VERSION_STRING @"16.1.3" +#define FBSDK_DEFAULT_GRAPH_API_VERSION @"v16.0" diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCrashObserver.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCrashObserver.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCrashObserver.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCrashObserver.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCrashShield.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCrashShield.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCrashShield.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKCrashShield.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDataProcessingOptionKey.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKDataProcessingOptionKey.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDataProcessingOptionKey.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKDataProcessingOptionKey.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h new file mode 100644 index 00000000..a2ce0e4d --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h @@ -0,0 +1,43 @@ +/* + * Copyright (c) Meta Platforms, Inc. and affiliates. + * All rights reserved. + * + * This source code is licensed under the license found in the + * LICENSE file in the root directory of this source tree. + */ + +NS_ASSUME_NONNULL_BEGIN + +/** + Internal type exposed to facilitate transition to Swift. + API Subject to change or removal without warning. Do not use. + + @warning INTERNAL - DO NOT USE + */ +NS_SWIFT_NAME(_DeviceInformationProviding) +@protocol FBSDKDeviceInformationProviding + +@property (nonatomic, readonly) NSString *storageKey; +@property (nullable, nonatomic, readonly) NSString *encodedDeviceInfo; +// group1 +@property (nullable, nonatomic) NSString *carrierName; +@property (nullable, nonatomic) NSString *timeZoneAbbrev; +@property (nonatomic) unsigned long long remainingDiskSpaceGB; +@property (nullable, nonatomic) NSString *timeZoneName; + +// Persistent data, but we maintain it to make rebuilding the device info as fast as possible. +@property (nullable, nonatomic) NSString *bundleIdentifier; +@property (nullable, nonatomic) NSString *longVersion; +@property (nullable, nonatomic) NSString *shortVersion; +@property (nullable, nonatomic) NSString *sysVersion; +@property (nullable, nonatomic) NSString *machine; +@property (nullable, nonatomic) NSString *language; +@property (nonatomic) unsigned long long totalDiskSpaceGB; +@property (nonatomic) unsigned long long coreCount; +@property (nonatomic) CGFloat width; +@property (nonatomic) CGFloat height; +@property (nonatomic) CGFloat density; + +@end + +NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDialogConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKDialogConfiguration.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDialogConfiguration.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKDialogConfiguration.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDialogConfigurationMapBuilding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKDialogConfigurationMapBuilding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDialogConfigurationMapBuilding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKDialogConfigurationMapBuilding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDynamicFrameworkLoaderProxy.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKDynamicFrameworkLoaderProxy.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDynamicFrameworkLoaderProxy.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKDynamicFrameworkLoaderProxy.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorConfiguration.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorConfiguration.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorConfiguration.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorConfigurationProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorConfigurationProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorConfigurationProvider.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProvider.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorConfigurationProvider.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProvider.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorConfigurationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorConfigurationProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorCreating.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorCreating.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorCreating.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorCreating.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorRecoveryAttempting.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryAttempting.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorRecoveryAttempting.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryAttempting.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorRecoveryConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryConfiguration.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorRecoveryConfiguration.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryConfiguration.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorReporter.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorReporter.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorReporter.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorReporter.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorReporting.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorReporting.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKErrorReporting.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKErrorReporting.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKEventLogging.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKEventLogging.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKEventLogging.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKEventLogging.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKEventProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKEventProcessing.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKEventProcessing.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKEventProcessing.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKEventsProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKEventsProcessing.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKEventsProcessing.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKEventsProcessing.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeature.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKFeature.h similarity index 93% rename from ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeature.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKFeature.h index 3eabc556..4be2fe0a 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeature.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKFeature.h @@ -46,6 +46,8 @@ typedef NS_ENUM(NSUInteger, FBSDKFeature) { FBSDKFeatureSuggestedEvents = 0x01010401, FBSDKFeatureIntelligentIntegrity = 0x01010402, FBSDKFeatureModelRequest = 0x01010403, + FBSDKFeatureProtectedMode = 0x01010404, + FBSDKFeatureMACARuleMatching = 0x01010405, FBSDKFeatureEventDeactivation = 0x01010500, FBSDKFeatureSKAdNetwork = 0x01010600, FBSDKFeatureSKAdNetworkConversionValue = 0x01010601, @@ -54,6 +56,8 @@ typedef NS_ENUM(NSUInteger, FBSDKFeature) { FBSDKFeatureAEMConversionFiltering = 0x01010801, FBSDKFeatureAEMCatalogMatching = 0x01010802, FBSDKFeatureAEMAdvertiserRuleMatchInServer = 0x01010803, + FBSDKFeatureAEMAutoSetup = 0x01010804, + FBSDKFeatureAEMAutoSetupProxy = 0x01010805, FBSDKFeatureAppEventsCloudbridge = 0x01010900, /// Instrument FBSDKFeatureInstrument = 0x01020000, diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKFeatureChecking.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKFeatureChecking.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKFeatureChecking.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKFeatureChecking.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKFeatureDisabling.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKFeatureDisabling.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKFeatureDisabling.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKFeatureDisabling.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKFeatureExtracting.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtracting.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKFeatureExtracting.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtracting.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKFeatureExtractor.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtractor.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKFeatureExtractor.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtractor.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGateKeeperManager.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManager.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGateKeeperManager.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManager.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGateKeeperManaging.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManaging.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGateKeeperManaging.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManaging.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphErrorRecoveryProcessor.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphErrorRecoveryProcessor.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphErrorRecoveryProcessor.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphErrorRecoveryProcessor.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequest.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequest.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequest.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequest.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestConnecting.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnecting.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestConnecting.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnecting.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestConnection.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestConnection.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestConnectionDelegate.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionDelegate.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestConnectionDelegate.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionDelegate.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestConnectionFactory.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactory.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestConnectionFactory.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactory.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestConnectionFactoryProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactoryProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestConnectionFactoryProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactoryProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestDataAttachment.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestDataAttachment.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestFactory.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactory.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestFactory.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactory.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestFactoryProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactoryProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestFactoryProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactoryProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestFlags.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFlags.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestFlags.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFlags.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestHTTPMethod.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestHTTPMethod.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestHTTPMethod.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestHTTPMethod.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestMetadata.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestMetadata.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestMetadata.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestMetadata.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestPiggybackManaging.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestPiggybackManaging.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestPiggybackManaging.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestPiggybackManaging.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKGraphRequestProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKImpressionLoggerFactory.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactory.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKImpressionLoggerFactory.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactory.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKImpressionLoggerFactoryProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactoryProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKImpressionLoggerFactoryProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactoryProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKImpressionLogging.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKImpressionLogging.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKImpressionLogging.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKImpressionLogging.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKImpressionLoggingButton.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggingButton.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKImpressionLoggingButton.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggingButton.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKInstrumentManager.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKInstrumentManager.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKInstrumentManager.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKInstrumentManager.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKIntegrityParametersProcessorProvider.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKIntegrityParametersProcessorProvider.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKIntegrityParametersProcessorProvider.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKIntegrityParametersProcessorProvider.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKIntegrityProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKIntegrityProcessing.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKIntegrityProcessing.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKIntegrityProcessing.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKInternalURLOpener.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKInternalURLOpener.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKInternalURLOpener.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKInternalURLOpener.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKInternalUtility.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKInternalUtility.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKInternalUtility.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKInternalUtility.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKInternalUtilityProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKInternalUtilityProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKInternalUtilityProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKInternalUtilityProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKKeychainStore.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKKeychainStore.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKKeychainStore.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKKeychainStore.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKKeychainStoreProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKKeychainStoreProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKKeychainStoreProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKKeychainStoreProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLocation.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLocation.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLocation.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLocation.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLogger.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLogger.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLogger.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLogger.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLoggerFactory.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLoggerFactory.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLoggerFactory.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLoggerFactory.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLogging.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLogging.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLogging.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLogging.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLoggingBehavior.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLoggingBehavior.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLoggingBehavior.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLoggingBehavior.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLoggingNotifying.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLoggingNotifying.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLoggingNotifying.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLoggingNotifying.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLoginTooltip.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLoginTooltip.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKLoginTooltip.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKLoginTooltip.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMacCatalystDetermining.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMacCatalystDetermining.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMacCatalystDetermining.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMacCatalystDetermining.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMath.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMath.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMath.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMath.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMeasurementEventListener.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventListener.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMeasurementEventListener.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventListener.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMeasurementEventNames.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventNames.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMeasurementEventNames.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventNames.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMetadataIndexer.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexer.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMetadataIndexer.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexer.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMetadataIndexing.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexing.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMetadataIndexing.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexing.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKModelManager.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKModelManager.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKModelManager.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKModelManager.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMutableCopying.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKMutableCopying.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKNetworkErrorChecker.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecker.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKNetworkErrorChecker.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecker.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKNetworkErrorChecking.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecking.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKNetworkErrorChecking.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecking.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKObjectDecoding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKObjectDecoding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKObjectDecoding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKObjectDecoding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKOperatingSystemVersionComparing.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKOperatingSystemVersionComparing.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKOperatingSystemVersionComparing.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKOperatingSystemVersionComparing.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKPasteboard.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKPasteboard.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKPasteboard.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKPasteboard.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKPaymentObserving.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKPaymentObserving.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKPaymentObserving.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKPaymentObserving.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKPaymentProductRequestor.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestor.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKPaymentProductRequestor.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestor.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKPaymentProductRequestorCreating.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestorCreating.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKPaymentProductRequestorCreating.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestorCreating.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKProductAvailability.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKProductAvailability.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKProductAvailability.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKProductAvailability.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKProductCondition.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKProductCondition.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKProductCondition.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKProductCondition.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKProductRequestFactory.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKProductRequestFactory.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKProductRequestFactory.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKProductRequestFactory.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKProductsRequestProtocols.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKProductsRequestProtocols.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKProductsRequestProtocols.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKProductsRequestProtocols.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKProfileBlock.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKProfileBlock.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKProfileBlock.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKProfileBlock.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKProfileNotifications.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKProfileNotifications.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKProfileNotifications.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKProfileNotifications.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKRandom.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKRandom.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKRandom.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKRandom.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKRestrictiveDataFilterManager.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h similarity index 95% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKRestrictiveDataFilterManager.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h index e352b82e..1fc9c008 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKRestrictiveDataFilterManager.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h @@ -30,7 +30,7 @@ NS_SWIFT_NAME(_RestrictiveDataFilterManager) - (void)enable; - (void)processEvents:(NSArray *> *)events; - (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters - eventName:(FBSDKAppEventName)eventName; + eventName:(nullable FBSDKAppEventName)eventName; @end NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKRulesFromKeyProvider.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKRulesFromKeyProvider.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKRulesFromKeyProvider.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKRulesFromKeyProvider.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSKAdNetworkReporter.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSKAdNetworkReporter.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSKAdNetworkReporter.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSKAdNetworkReporter.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h similarity index 97% rename from ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h index 41d52df5..54c40506 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h @@ -107,6 +107,7 @@ NS_SWIFT_NAME(_ServerConfiguration) restrictiveParams:(nullable NSDictionary *)restrictiveParams AAMRules:(nullable NSDictionary *)AAMRules suggestedEventsSetting:(nullable NSDictionary *)suggestedEventsSetting + protectedModeRules:(nullable NSDictionary *)protectedModeRules NS_DESIGNATED_INITIALIZER; @property (nonatomic, readonly, getter = isAdvertisingIDEnabled, assign) BOOL advertisingIDEnabled; @@ -132,6 +133,7 @@ NS_SWIFT_NAME(_ServerConfiguration) @property (nullable, nonatomic, readonly, copy) NSDictionary *restrictiveParams; @property (nullable, nonatomic, readonly, copy) NSDictionary *AAMRules; @property (nullable, nonatomic, readonly, copy) NSDictionary *suggestedEventsSetting; +@property (nullable, nonatomic, readonly, copy) NSDictionary *protectedModeRules; @property (nonatomic, readonly) NSInteger version; - (nullable FBSDKDialogConfiguration *)dialogConfigurationForDialogName:(NSString *)dialogName; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKServerConfigurationManager.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationManager.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKServerConfigurationManager.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationManager.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKServerConfigurationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKServerConfigurationProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSettingsLogging.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSettingsLogging.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSettingsLogging.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSettingsLogging.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSourceApplicationTracking.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSourceApplicationTracking.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSourceApplicationTracking.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSourceApplicationTracking.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSuggestedEventsIndexer.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexer.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSuggestedEventsIndexer.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexer.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSuggestedEventsIndexerProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexerProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSuggestedEventsIndexerProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexerProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSwizzler.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSwizzler.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSwizzler.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSwizzler.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSwizzling.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSwizzling.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKSwizzling.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKSwizzling.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKTimeSpentData.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentData.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKTimeSpentData.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentData.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKTimeSpentRecording.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentRecording.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKTimeSpentRecording.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentRecording.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKTokenCaching.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKTokenCaching.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKTokenCaching.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKTokenCaching.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKTokenStringProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKTokenStringProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKTokenStringProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKTokenStringProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKTransformer.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKTransformer.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKTransformer.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKTransformer.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURL.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURL.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURL.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURL.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLHosting.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLHosting.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLHosting.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLHosting.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLOpener.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLOpener.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLOpener.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLOpener.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLOpening.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLOpening.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLOpening.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLOpening.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLScheme.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLScheme.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLScheme.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLScheme.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLSessionProxyFactory.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyFactory.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLSessionProxyFactory.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyFactory.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLSessionProxyProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLSessionProxyProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLSessionProxying.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxying.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKURLSessionProxying.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxying.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUnarchiverProvider.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProvider.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUnarchiverProvider.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProvider.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUnarchiverProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUnarchiverProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUserAgeRange.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUserAgeRange.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUserAgeRange.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUserAgeRange.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUserDataPersisting.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUserDataPersisting.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUserDataPersisting.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUserDataPersisting.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUserDataStore.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUserDataStore.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUserDataStore.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUserDataStore.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUserIDProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUserIDProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUserIDProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUserIDProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUserIdentifier.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUserIdentifier.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUserIdentifier.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUserIdentifier.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUtility.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUtility.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKUtility.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKUtility.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKWebDialogDelegate.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKWebDialogDelegate.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKWebDialogDelegate.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKWebDialogDelegate.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKWebDialogView.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKWebDialogView.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKWebDialogView.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKWebDialogView.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKWebView.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKWebView.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKWebView.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKWebView.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKWebViewAppLinkResolver.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKWebViewAppLinkResolver.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKWebViewAppLinkResolver.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKWebViewAppLinkResolver.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKWebViewProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKWebViewProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKWebViewProviding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKWebViewProviding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/NSNotificationCenter+NotificationPosting.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/NSNotificationCenter+NotificationPosting.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/NSNotificationCenter+NotificationPosting.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/NSNotificationCenter+NotificationPosting.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/NSProcessInfo+MacCatalystDetermining.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/NSProcessInfo+MacCatalystDetermining.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/NSProcessInfo+MacCatalystDetermining.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/NSProcessInfo+MacCatalystDetermining.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/NSProcessInfo+OperatingSystemVersionComparing.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/NSProcessInfo+OperatingSystemVersionComparing.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/NSProcessInfo+OperatingSystemVersionComparing.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/NSProcessInfo+OperatingSystemVersionComparing.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/UIApplication+URLOpener.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/UIApplication+URLOpener.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/UIApplication+URLOpener.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/UIApplication+URLOpener.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/UIPasteboard+Pasteboard.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/UIPasteboard+Pasteboard.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/UIPasteboard+Pasteboard.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/UIPasteboard+Pasteboard.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/WKWebView+WebViewProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/WKWebView+WebViewProtocol.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/WKWebView+WebViewProtocol.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/WKWebView+WebViewProtocol.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/_FBSDKNotificationPosting.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/_FBSDKNotificationPosting.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/_FBSDKNotificationPosting.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/_FBSDKNotificationPosting.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/_FBSDKWindowFinding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/_FBSDKWindowFinding.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/_FBSDKWindowFinding.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/_FBSDKWindowFinding.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/__FBSDKLoggerCreating.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/__FBSDKLoggerCreating.h similarity index 100% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/__FBSDKLoggerCreating.h rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/__FBSDKLoggerCreating.h diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules deleted file mode 120000 index 5736f318..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.abi.json b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.abi.json new file mode 100644 index 00000000..e6b287c0 --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.abi.json @@ -0,0 +1,68792 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMNetworker", + "printedName": "AEMNetworker", + "children": [ + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerC17startGraphRequest04withE4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworker", + "printedName": "FBSDKCoreKit.AEMNetworker", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker(im)init", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventsStateFactory", + "printedName": "AppEventsStateFactory", + "children": [ + { + "kind": "Function", + "name": "createState", + "printedName": "createState(tokenString:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsState", + "printedName": "FBSDKCoreKit._AppEventsState", + "usr": "c:objc(cs)FBSDKAppEventsState" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC06createE011tokenString5appIDSo08FBSDKAppdE0CSS_SStF", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryC06createE011tokenString5appIDSo08FBSDKAppdE0CSS_SStF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createStateWithToken:appID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventsStateFactory", + "printedName": "FBSDKCoreKit.AppEventsStateFactory", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLink", + "printedName": "AppLink", + "children": [ + { + "kind": "Var", + "name": "sourceURL", + "printedName": "sourceURL", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)sourceURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL10Foundation0F0VSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "sourceURL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)sourceURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL10Foundation0F0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "sourceURL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targets", + "printedName": "targets", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)targets", + "mangledName": "$s12FBSDKCoreKit7AppLinkC7targetsSaySo08FBSDKAppD6Target_pGvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "targets", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)targets", + "mangledName": "$s12FBSDKCoreKit7AppLinkC7targetsSaySo08FBSDKAppD6Target_pGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "targets", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webURL", + "printedName": "webURL", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)webURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC6webURL10Foundation0F0VSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "webURL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)webURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC6webURL10Foundation0F0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "webURL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isBackToReferrer", + "printedName": "isBackToReferrer", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)backToReferrer", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "backToReferrer", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)isBackToReferrer", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "isBackToReferrer", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)setBackToReferrer:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvM", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sourceURL:targets:webURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)initWithSourceURL:targets:webURL:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL7targets03webF0AC10Foundation0F0VSg_SaySo08FBSDKAppD6Target_pGAJtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithSourceURL:targets:webURL:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "appLink", + "printedName": "appLink(sourceURL:targets:webURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkProtocol", + "printedName": "FBSDKCoreKit._AppLinkProtocol", + "usr": "c:objc(pl)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(cm)appLinkWithSourceURL:targets:webURL:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC03appD09sourceURL7targets03webG0So08FBSDKAppD0_p10Foundation0G0VSg_SaySo0jD6Target_pGALtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "appLinkWithSourceURL:targets:webURL:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sourceURL:targets:webURL:isBackToReferrer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)initWithSourceURL:targets:webURL:isBackToReferrer:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL7targets03webF016isBackToReferrerAC10Foundation0F0VSg_SaySo08FBSDKAppD6Target_pGAKSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithSourceURL:targets:webURL:isBackToReferrer:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)init", + "mangledName": "$s12FBSDKCoreKit7AppLinkCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink", + "mangledName": "$s12FBSDKCoreKit7AppLinkC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLink", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "AppLinkFactory", + "printedName": "AppLinkFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLink", + "printedName": "createAppLink(sourceURL:targets:webURL:isBackToReferrer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkProtocol", + "printedName": "FBSDKCoreKit._AppLinkProtocol", + "usr": "c:objc(pl)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC06createcD09sourceURL7targets03webH016isBackToReferrerSo08FBSDKAppD0_p10Foundation0H0VSg_SaySo0oD6Target_pGAMSbtF", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryC06createcD09sourceURL7targets03webH016isBackToReferrerSo08FBSDKAppD0_p10Foundation0H0VSg_SaySo0oD6Target_pGAMSbtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkWithSourceURL:targets:webURL:isBackToReferrer:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkFactory", + "printedName": "FBSDKCoreKit.AppLinkFactory", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkNavigation", + "printedName": "AppLinkNavigation", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "NonObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultResolver", + "printedName": "defaultResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cpy)defaultResolver", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "defaultResolver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)defaultResolver", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)setDefaultResolver:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extras", + "printedName": "extras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)extras", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC6extrasSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)extras", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC6extrasSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkData", + "printedName": "appLinkData", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)appLinkData", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD4DataSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)appLinkData", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD4DataSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLink", + "printedName": "appLink", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)appLink", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD0AA0cD0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)appLink", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD0AA0cD0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "navigationType", + "printedName": "navigationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)navigationType", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationTypeSo08FBSDKAppdeG0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)navigationType", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationTypeSo08FBSDKAppdeG0Vvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLink:extras:appLinkData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)initWithAppLink:extras:appLinkData:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD06extras0fD4DataAcA0cD0C_SDySSypGAItcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppLink:extras:appLinkData:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLink:extras:appLinkData:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)initWithAppLink:extras:appLinkData:settings:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD06extras0fD4Data8settingsAcA0cD0C_SDySSypGAjA16SettingsProtocol_ptcfc", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "initWithAppLink:extras:appLinkData:settings:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "navigation", + "printedName": "navigation(with:extras:appLinkData:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigationWithAppLink:extras:appLinkData:settings:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC10navigation4with6extras03appD4Data8settingsAcA0cD0C_SDySSypGAkA16SettingsProtocol_ptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "navigationWithAppLink:extras:appLinkData:settings:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "callbackAppLinkData", + "printedName": "callbackAppLinkData(forApp:url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Swift.String]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + }, + { + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)callbackAppLinkDataForAppWithName:url:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC08callbackcD4Data03forC03urlSDySSSDyS2SGGSS_SStFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "callbackAppLinkDataForAppWithName:url:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC8navigateSo08FBSDKAppdE4TypeVyKF", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigateSo08FBSDKAppdE4TypeVyKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resolveAppLink", + "printedName": "resolveAppLink(_:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)resolveAppLink:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC07resolvecD0_7handlery10Foundation3URLV_yAA0cD0CSg_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "resolveAppLink:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resolveAppLink", + "printedName": "resolveAppLink(_:resolver:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)resolveAppLink:resolver:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC07resolvecD0_8resolver7handlery10Foundation3URLV_So08FBSDKAppD9Resolving_pyAA0cD0CSg_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "resolveAppLink:resolver:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC8navigate2toSo08FBSDKAppdE4TypeVAA0cD0C_tKFZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2toSo08FBSDKAppdE4TypeVAA0cD0C_tKFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigationType", + "printedName": "navigationType(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigationTypeForLink:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationType3forSo08FBSDKAppdeG0VAA0cD0C_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigationTypeForLink:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigateToURL:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2to7handlery10Foundation3URLV_ySo08FBSDKAppdE4TypeV_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigateToURL:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:resolver:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigateToURL:resolver:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2to8resolver7handlery10Foundation3URLV_So08FBSDKAppD9Resolving_pySo0ldE4TypeV_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigateToURL:resolver:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appLinkURL", + "printedName": "appLinkURL(targetURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC03appD3URL06targetG010Foundation0G0VSgAH_tKF", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD3URL06targetG010Foundation0G0VSgAH_tKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postNavigateEventNotification", + "printedName": "postNavigateEventNotification(targetURL:error:navigationType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)postNavigateEventNotificationWithTargetURL:error:navigationType:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC29postNavigateEventNotification9targetURL5error14navigationTypey10Foundation0K0VSg_s5Error_pSgSo08FBSDKAppdeN0VtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigationType", + "printedName": "navigationType(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)navigationTypeFor:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationType3forSo08FBSDKAppdeG0VSaySo0iD6Target_pG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)init", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkEventPoster", + "printedName": "appLinkEventPoster", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkResolver", + "printedName": "appLinkResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:urlOpener:appLinkEventPoster:appLinkResolver:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settings9urlOpener03appD11EventPoster0kD8ResolverAeA16SettingsProtocol_p_So22FBSDKInternalURLOpener_pSo08FBSDKAppdL7Posting_pSo0sD9Resolving_ptcfc", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settings9urlOpener03appD11EventPoster0kD8ResolverAeA16SettingsProtocol_p_So22FBSDKInternalURLOpener_pSo08FBSDKAppdL7Posting_pSo0sD9Resolving_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkNavigation", + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkResolver", + "printedName": "AppLinkResolver", + "children": [ + { + "kind": "Var", + "name": "cachedAppLinks", + "printedName": "cachedAppLinks", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(py)cachedAppLinks", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)cachedAppLinks", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)setCachedAppLinks:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "appLink", + "printedName": "appLink(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)appLinkFromURL:handler:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC03appD04from7handlery10Foundation3URLV_yAA0cD0CSg_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "appLinkFromURL:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appLinks", + "printedName": "appLinks(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Foundation.URL : FBSDKCoreKit.AppLink], Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([Foundation.URL : FBSDKCoreKit.AppLink], Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Foundation.URL : FBSDKCoreKit.AppLink]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)appLinksFrom:handler:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC8appLinks4from7handlerySay10Foundation3URLVG_ySDyAiA0cD0CG_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAppLink", + "printedName": "buildAppLink(for:result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)buildAppLinkFor:result:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC05buildcD03for6resultAA0cD0C10Foundation3URLV_SDySSSDySSypGGtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolver", + "printedName": "FBSDKCoreKit.AppLinkResolver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)init", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "requestBuilder", + "printedName": "requestBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "clientTokenProvider", + "printedName": "clientTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(requestBuilder:clientTokenProvider:accessTokenProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + }, + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilder19clientTokenProvider06accesskL0AESo08FBSDKAppdE15RequestBuilding_p_So011FBSDKClientK9Providing_pSo011FBSDKAccesskR0_pXptcfc", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilder19clientTokenProvider06accesskL0AESo08FBSDKAppdE15RequestBuilding_p_So011FBSDKClientK9Providing_pSo011FBSDKAccesskR0_pXptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkResolver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkResolverRequestBuilder", + "printedName": "AppLinkResolverRequestBuilder", + "children": [ + { + "kind": "Var", + "name": "userInterfaceIdiom", + "printedName": "userInterfaceIdiom", + "children": [ + { + "kind": "TypeNominal", + "name": "UIUserInterfaceIdiom", + "printedName": "UIKit.UIUserInterfaceIdiom", + "usr": "c:@E@UIUserInterfaceIdiom" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiom33_D2EA324685EEF2BCFBEFEB3B7F7BA944LLSo06UIUseriJ0Vvp", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiom33_D2EA324685EEF2BCFBEFEB3B7F7BA944LLSo06UIUseriJ0Vvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userInterfaceIdiom:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolverRequestBuilder", + "printedName": "FBSDKCoreKit.AppLinkResolverRequestBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder" + }, + { + "kind": "TypeNominal", + "name": "UIUserInterfaceIdiom", + "printedName": "UIKit.UIUserInterfaceIdiom", + "hasDefaultArg": true, + "usr": "c:@E@UIUserInterfaceIdiom" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiomACSo06UIUseriJ0V_tcfc", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiomACSo06UIUseriJ0V_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "request", + "printedName": "request(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestProtocol", + "printedName": "FBSDKCoreKit.GraphRequestProtocol", + "usr": "c:objc(pl)FBSDKGraphRequest" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)requestForURLs:", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC7request3forSo010FBSDKGraphF0_pSay10Foundation3URLVG_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requestForURLs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getIdiomSpecificField", + "printedName": "getIdiomSpecificField()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)getIdiomSpecificField", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC21getIdiomSpecificFieldSSSgyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "getIdiomSpecificField", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolverRequestBuilder", + "printedName": "FBSDKCoreKit.AppLinkResolverRequestBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)init", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkTarget", + "printedName": "AppLinkTarget", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)URL", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10Foundation3URLVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "URL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)URL", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10Foundation3URLVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "URL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appStoreId", + "printedName": "appStoreId", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)appStoreId", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC10appStoreIdSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appStoreId", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)appStoreId", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC10appStoreIdSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "appStoreId", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appName", + "printedName": "appName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)appName", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC7appNameSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appName", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)appName", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC7appNameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "appName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)initWithURL:appStoreId:appName:", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10appStoreId0G4NameAC10Foundation3URLVSg_SSSgSStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithURL:appStoreId:appName:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "appLinkTargetWithURL", + "printedName": "appLinkTargetWithURL(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(cm)appLinkTargetWithURL:appStoreId:appName:", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC03appdE7WithURL3url0F7StoreId0F4NameAC10Foundation0H0VSg_SSSgSStFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "appLinkTargetWithURL:appStoreId:appName:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)init", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkTarget", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkTargetFactory", + "printedName": "AppLinkTargetFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLinkTarget", + "printedName": "createAppLinkTarget(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC06createcdE03url10appStoreId0I4NameSo08FBSDKAppdE0_p10Foundation3URLVSg_SSSgSStF", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryC06createcdE03url10appStoreId0I4NameSo08FBSDKAppdE0_p10Foundation3URLVSg_SSSgSStF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkTargetWithURL:appStoreId:appName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetFactory", + "printedName": "FBSDKCoreKit.AppLinkTargetFactory", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkURLFactory", + "printedName": "AppLinkURLFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLinkURL", + "printedName": "createAppLinkURL(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLProtocol", + "printedName": "FBSDKCoreKit._AppLinkURLProtocol", + "usr": "c:objc(pl)FBSDKAppLinkURL" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory(im)createAppLinkURLWithURL:", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryC06createcD3URL4withSo08FBSDKAppdG0_p10Foundation0G0V_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkURLWithURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkURLFactory", + "printedName": "FBSDKCoreKit.AppLinkURLFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory(im)init", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ApplicationDelegate", + "printedName": "ApplicationDelegate", + "children": [ + { + "kind": "Var", + "name": "applicationObservers", + "printedName": "applicationObservers", + "children": [ + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)applicationObservers", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationObservers", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setApplicationObservers:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "components", + "printedName": "components", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvp", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvg", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurator", + "printedName": "configurator", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvp", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvg", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAppLaunched", + "printedName": "isAppLaunched", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)isAppLaunched", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)isAppLaunched", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setIsAppLaunched:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "applicationState", + "printedName": "applicationState", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)applicationState", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationState", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setApplicationState:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0VvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(cpy)sharedInstance", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "sharedInstance", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(cm)sharedInstance", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)init", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(components:configurator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + }, + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + }, + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10components12configuratorAcA04CoreB10ComponentsC_AA0gB11Configuring_ptcfc", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10components12configuratorAcA04CoreB10ComponentsC_AA0gB11Configuring_ptcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "initializeSDK", + "printedName": "initializeSDK()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)initializeSDK", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13initializeSDKyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initializeSDK", + "printedName": "initializeSDK(launchOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)initializeSDKWithLaunchOptions:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13initializeSDK13launchOptionsySDySo019UIApplicationLaunchH3KeyaypGSg_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:continue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "NSUserActivity", + "printedName": "Foundation.NSUserActivity", + "usr": "c:objc(cs)NSUserActivity" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:continueUserActivity:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_8continueSbSo13UIApplicationC_So14NSUserActivityCtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:continueUserActivity:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.OpenURLOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenURLOptionsKey", + "printedName": "UIKit.UIApplication.OpenURLOptionsKey", + "usr": "c:@T@UIApplicationOpenURLOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:openURL:options:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:options:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_4open06sourceC010annotationSbSo13UIApplicationC_10Foundation3URLVSSSgypSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:didFinishLaunchingWithOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:didFinishLaunchingWithOptions:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_29didFinishLaunchingWithOptionsSbSo13UIApplicationC_SDySo0k6LaunchJ3KeyaypGSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC29applicationDidEnterBackgroundyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Notification?", + "children": [ + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationDidBecomeActive:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC26applicationDidBecomeActiveyy10Foundation12NotificationVSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationWillResignActive", + "printedName": "applicationWillResignActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationWillResignActive:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC27applicationWillResignActiveyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addObserver", + "printedName": "addObserver(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)addObserver:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11addObserveryySo25FBSDKApplicationObserving_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeObserver", + "printedName": "removeObserver(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)removeObserver:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC14removeObserveryySo25FBSDKApplicationObserving_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logSDKInitialize", + "printedName": "logSDKInitialize()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)logSDKInitialize", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16logSDKInitializeyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKApplicationDelegate", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "AuthenticationServices", + "printedName": "AuthenticationServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationSessionProtocol", + "printedName": "AuthenticationSessionProtocol", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:callbackURLScheme:completionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP3url17callbackURLScheme17completionHandlerx10Foundation3URLV_SSSgyAISg_s5Error_pSgtctcfc", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP3url17callbackURLScheme17completionHandlerx10Foundation3URLV_SSSgyAISg_s5Error_pSgtctcfc", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP5startSbyF", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP5startSbyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP6cancelyyF", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP6cancelyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "presentationContextProvider", + "printedName": "presentationContextProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvp", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "intro_iOS": "13.0", + "declAttributes": [ + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvg", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvs", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvM", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "intro_iOS": "13.0", + "declAttributes": [ + "Available" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationSessionState", + "printedName": "AuthenticationSessionState", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO4noneyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO4noneyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "started", + "printedName": "started", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO7startedyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO7startedyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "showAlert", + "printedName": "showAlert", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO9showAlertyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9showAlertyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "showWebBrowser", + "printedName": "showWebBrowser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO14showWebBrowseryA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO14showWebBrowseryA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "canceledBySystem", + "printedName": "canceledBySystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO16canceledBySystemyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO16canceledBySystemyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26AuthenticationSessionStateO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenClaims", + "printedName": "AuthenticationTokenClaims", + "children": [ + { + "kind": "Var", + "name": "jti", + "printedName": "jti", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iss", + "printedName": "iss", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aud", + "printedName": "aud", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exp", + "printedName": "exp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iat", + "printedName": "iat", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sub", + "printedName": "sub", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "givenName", + "printedName": "givenName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "familyName", + "printedName": "familyName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "picture", + "printedName": "picture", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userFriends", + "printedName": "userFriends", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvp", + "moduleName": "FBSDKCoreKit", + "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userBirthday", + "printedName": "userBirthday", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userAgeRange", + "printedName": "userAgeRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userHometown", + "printedName": "userHometown", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userLocation", + "printedName": "userLocation", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userGender", + "printedName": "userGender", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userLink", + "printedName": "userLink", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(encodedClaims:nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "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@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims(im)initWithEncodedClaims:nonce:", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC07encodedE05nonceACSgSS_SStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEncodedClaims:nonce:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jti:iss:aud:nonce:exp:iat:sub:name:givenName:middleName:familyName:email:picture:userFriends:userBirthday:userAgeRange:userHometown:userLocation:userGender:userLink:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "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 : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "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" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3jti3iss3aud5nonce3exp3iat3sub4name9givenName06middleO006familyO05email7picture11userFriends0T8Birthday0T8AgeRange0T8Hometown0T8Location0T6Gender0T4LinkACSS_S3SS2dS2SSgA5XSaySSGSgAXSDySSSo8NSNumberCGSgSDyS2SGSgA4_A2Xtcfc", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jti3iss3aud5nonce3exp3iat3sub4name9givenName06middleO006familyO05email7picture11userFriends0T8Birthday0T8AgeRange0T8Hometown0T8Location0T6Gender0T4LinkACSS_S3SS2dS2SSgA5XSaySSGSgAXSDySSSo8NSNumberCGSgSDyS2SGSgA4_A2Xtcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims(im)init", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAeA16SettingsProtocol_p_tcfc", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAeA16SettingsProtocol_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAuthenticationTokenClaims", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "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": "BackgroundEventLogger", + "printedName": "BackgroundEventLogger", + "children": [ + { + "kind": "Var", + "name": "isNewBackgroundRefresh", + "printedName": "isNewBackgroundRefresh", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvp", + "moduleName": "FBSDKCoreKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logBackgroundRefreshStatus", + "printedName": "logBackgroundRefreshStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBackgroundRefreshStatus", + "printedName": "UIKit.UIBackgroundRefreshStatus", + "usr": "c:@E@UIBackgroundRefreshStatus" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "moduleName": "FBSDKCoreKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogger", + "printedName": "FBSDKCoreKit.BackgroundEventLogger", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerVACycfc", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerVACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(infoDictionaryProvider:eventLogger:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProvider05eventE0AESo09FBSDKInfoI9Providing_p_So17FBSDKEventLogging_ptcfc", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProvider05eventE0AESo09FBSDKInfoI9Providing_p_So17FBSDKEventLogging_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BackgroundEventLogging", + "printedName": "BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "BackgroundEventLogging", + "printedName": "BackgroundEventLogging", + "children": [ + { + "kind": "Function", + "name": "logBackgroundRefreshStatus", + "printedName": "logBackgroundRefreshStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBackgroundRefreshStatus", + "printedName": "UIKit.UIBackgroundRefreshStatus", + "usr": "c:@E@UIBackgroundRefreshStatus" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BackgroundEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BridgeAPIResponseCreating", + "printedName": "BridgeAPIResponseCreating", + "children": [ + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:responseURL:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponseCancelled", + "printedName": "createResponseCancelled(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "CAPIReporter", + "printedName": "CAPIReporter", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)enable", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP6enableyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(factory:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)configureWithFactory:settings:", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP9configure7factory8settingsySo24FBSDKGraphRequestFactory_p_AA16SettingsProtocol_ptF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordEvent", + "printedName": "recordEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)recordEvent:", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP11recordEventyySDySSypGF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKCAPIReporter", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitComponents", + "printedName": "CoreKitComponents", + "children": [ + { + "kind": "Var", + "name": "accessTokenExpirer", + "printedName": "accessTokenExpirer", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDProvider", + "printedName": "advertiserIDProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemNetworker", + "printedName": "aemNetworker", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemReporter", + "printedName": "aemReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventParametersExtractor", + "printedName": "appEventParametersExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 5, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEvents", + "printedName": "appEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 6, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsConfigurationProvider", + "printedName": "appEventsConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 7, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsDropDeterminer", + "printedName": "appEventsDropDeterminer", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 8, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsStateProvider", + "printedName": "appEventsStateProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 9, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsStateStore", + "printedName": "appEventsStateStore", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 10, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsUtility", + "printedName": "appEventsUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 11, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkEventPoster", + "printedName": "appLinkEventPoster", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 12, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkFactory", + "printedName": "appLinkFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 13, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkResolver", + "printedName": "appLinkResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 14, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkTargetFactory", + "printedName": "appLinkTargetFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 15, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkURLFactory", + "printedName": "appLinkURLFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 16, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "atePublisherFactory", + "printedName": "atePublisherFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 17, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenWallet", + "printedName": "authenticationTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 18, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backgroundEventLogger", + "printedName": "backgroundEventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 19, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "capiReporter", + "printedName": "capiReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 20, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codelessIndexer", + "printedName": "codelessIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 21, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crashHandler", + "printedName": "crashHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 22, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crashObserver", + "printedName": "crashObserver", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 23, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataExtractor", + "printedName": "dataExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 24, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultDataStore", + "printedName": "defaultDataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 25, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deviceInformationProvider", + "printedName": "deviceInformationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 26, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dialogConfigurationMapBuilder", + "printedName": "dialogConfigurationMapBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 27, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorConfigurationProvider", + "printedName": "errorConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 28, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 29, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorReporter", + "printedName": "errorReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 30, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventDeactivationManager", + "printedName": "eventDeactivationManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 31, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 32, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "featureChecker", + "printedName": "featureChecker", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 33, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "featureExtractor", + "printedName": "featureExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 34, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileManager", + "printedName": "fileManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 35, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 36, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "getApplicationActivationNotifier", + "printedName": "getApplicationActivationNotifier", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 37, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestConnectionFactory", + "printedName": "graphRequestConnectionFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 38, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 39, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionLoggerFactory", + "printedName": "impressionLoggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 40, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 41, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "internalURLOpener", + "printedName": "internalURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 42, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 43, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 44, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggerFactory", + "printedName": "loggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 45, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macCatalystDeterminator", + "printedName": "macCatalystDeterminator", + "children": [ + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 46, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataIndexer", + "printedName": "metadataIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 47, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelManager", + "printedName": "modelManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 48, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 49, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "operatingSystemVersionComparer", + "printedName": "operatingSystemVersionComparer", + "children": [ + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 50, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paymentObserver", + "printedName": "paymentObserver", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 51, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "piggybackManager", + "printedName": "piggybackManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 52, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "profileSetter", + "printedName": "profileSetter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 53, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "restrictiveDataFilterManager", + "printedName": "restrictiveDataFilterManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 54, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rulesFromKeyProvider", + "printedName": "rulesFromKeyProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 55, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 56, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionDataTaskProvider", + "printedName": "sessionDataTaskProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 57, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 58, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "skAdNetworkReporter", + "printedName": "skAdNetworkReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 59, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "suggestedEventsIndexer", + "printedName": "suggestedEventsIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 60, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swizzler", + "printedName": "swizzler", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 61, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeSpentRecorder", + "printedName": "timeSpentRecorder", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 62, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokenCache", + "printedName": "tokenCache", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 63, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlHoster", + "printedName": "urlHoster", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 64, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlSessionProxyFactory", + "printedName": "urlSessionProxyFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 65, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userDataStore", + "printedName": "userDataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 66, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userIDProvider", + "printedName": "userIDProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 67, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webViewProvider", + "printedName": "webViewProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 68, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemManager", + "printedName": "aemManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 69, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "protectedModeManager", + "printedName": "protectedModeManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 70, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macaRuleMatchingManager", + "printedName": "macaRuleMatchingManager", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 71, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenExpirer:accessTokenWallet:advertiserIDProvider:aemNetworker:aemReporter:appEventParametersExtractor:appEvents:appEventsConfigurationProvider:appEventsDropDeterminer:appEventsStateProvider:appEventsStateStore:appEventsUtility:appLinkEventPoster:appLinkFactory:appLinkResolver:appLinkTargetFactory:appLinkURLFactory:atePublisherFactory:authenticationTokenWallet:backgroundEventLogger:capiReporter:codelessIndexer:crashHandler:crashObserver:dataExtractor:defaultDataStore:deviceInformationProvider:dialogConfigurationMapBuilder:errorConfigurationProvider:errorFactory:errorReporter:eventDeactivationManager:eventLogger:featureChecker:featureExtractor:fileManager:gateKeeperManager:getApplicationActivationNotifier:graphRequestConnectionFactory:graphRequestFactory:impressionLoggerFactory:infoDictionaryProvider:internalURLOpener:internalUtility:logger:loggerFactory:macCatalystDeterminator:metadataIndexer:modelManager:notificationCenter:operatingSystemVersionComparer:paymentObserver:piggybackManager:profileSetter:restrictiveDataFilterManager:rulesFromKeyProvider:serverConfigurationProvider:sessionDataTaskProvider:settings:skAdNetworkReporter:suggestedEventsIndexer:swizzler:timeSpentRecorder:tokenCache:urlHoster:urlSessionProxyFactory:userDataStore:userIDProvider:webViewProvider:aemManager:protectedModeManager:macaRuleMatchingManager:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + }, + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + }, + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + }, + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + }, + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + }, + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + }, + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + }, + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + }, + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + }, + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + }, + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + }, + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + }, + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + }, + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + }, + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + }, + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + }, + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + }, + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirer0eF6Wallet20advertiserIDProvider12aemNetworker0K8Reporter27appEventParametersExtractor0N6Events0nR21ConfigurationProvider0nR14DropDeterminer0nr5StateT00nrW5Store0nR7Utility0n4LinkO6Poster0nZ7Factory0nZ8Resolver0nZ13TargetFactory0nZ10URLFactory19atePublisherFactory014authenticationfH0010backgroundO6Logger04capiM015codelessIndexer12crashHandler13crashObserver04dataQ0011defaultDataX0017deviceInformationT006dialogS10MapBuilder05errorsT012errorFactory05errorM024eventDeactivationManager11eventLogger14featureChecker07featureQ011fileManager17gateKeeperManager32getApplicationActivationNotifier29graphRequestConnectionFactory19graphRequestFactory23impressionLoggerFactory014infoDictionaryT017internalURLOpener08internalY06logger13loggerFactory23macCatalystDeterminator15metadataIndexer12modelManager18notificationCenter30operatingSystemVersionComparer15paymentObserver16piggybackManager13profileSetter28restrictiveDataFilterManager012rulesFromKeyT006serversT0015sessionDataTaskT08settings011skAdNetworkM009suggestedR7Indexer8swizzler17timeSpentRecorder10tokenCache9urlHoster22urlSessionProxyFactory08userDataX004userJ007webViewT00K7Manager20protectedModeManager23macaRuleMatchingManagerAcA07_AccessF8Expiring_p_So011FBSDKAccessF9Providing_So25FBSDKTokenStringProvidingpXpSo26FBSDKAdvertiserIDProviding_p8FBAEMKit13AEMNetworking_pSgAA20_AEMReporterProtocol_pXpSo08FBSDKAppoP10Extracting_pSo17FBSDKEventLogging_So08FBSDKAppR11ConfiguringSo26FBSDKApplicationActivatingSo34FBSDKApplicationLifecycleObservingSo016FBSDKApplicationW7SettingSo30FBSDKSourceApplicationTrackingpSo08FBSDKApprS9Providing_pSo08FBSDKAppoU11Determining_pSo08FBSDKApprW9Providing_pSo08FBSDKApprW10Persisting_pSoA64__SoA56_So08FBSDKApprY0So21FBSDKLoggingNotifyingpSo08FBSDKAppzO7Posting_pSo08FBSDKAppZ8Creating_pSo08FBSDKAppZ9Resolving_pSo08FBSDKAppZ14TargetCreating_pSo08FBSDKAppZ11URLCreating_pSo25FBSDKATEPublisherCreating_pSo019FBSDKAuthenticationF9Providing_pXpAA010BackgroundO7Logging_pAA12CAPIReporter_pSo21FBSDKCodelessIndexing_pXpSo17FBSDKCrashHandler_pSo19FBSDKCrashObserving_pSo23FBSDKFileDataExtracting_pXpSo19FBSDKDataPersisting_pSo31FBSDKDeviceInformationProviding_pSo011FBSDKDialogS11MapBuilding_pSo010FBSDKErrorS9Providing_pSo18FBSDKErrorCreating_pSo19FBSDKErrorReporting_pSo08FBSDKAppR19ParameterProcessing_So21FBSDKEventsProcessingpSoA57__pSo20FBSDKFeatureChecking_So21FBSDKFeatureDisablingpSo22FBSDKFeatureExtracting_pXpSo17FBSDKFileManaging_pSo23FBSDKGateKeeperManaging_pXpypycSo34FBSDKGraphRequestConnectionFactory_pSo24FBSDKGraphRequestFactory_pSo28FBSDKImpressionLoggerFactory_pSo28FBSDKInfoDictionaryProviding_pSo22FBSDKInternalURLOpener_pSo013FBSDKInternalY0_pSo12FBSDKLogging_pXpSo21__FBSDKLoggerCreating_pSo27FBSDKMacCatalystDetermining_pSo21FBSDKMetadataIndexing_pSo20FBSDKEventProcessing_So014FBSDKIntegrityp9ProcessorT0pSo25_FBSDKNotificationPosting_So27FBSDKNotificationDeliveringpSo36FBSDKOperatingSystemVersionComparing_pSo21FBSDKPaymentObserving_pSo34FBSDKGraphRequestPiggybackManaging_pAA16ProfileProviding_pXpSoA88__SoA89_pSo017FBSDKRulesFromKeyT0_pSo011FBSDKServerS9Providing_pSo24FBSDKURLSessionProviding_pSo20FBSDKSettingsLogging_AA16SettingsProtocolpA52_20SKAdNetworkReporting_So08FBSDKApprM0pSgSo014FBSDKSuggestedR7Indexer_pSo14FBSDKSwizzling_pXpSoA62__So23FBSDKTimeSpentRecordingpSo17FBSDKTokenCaching_pSo15FBSDKURLHosting_pSo29FBSDKURLSessionProxyProviding_pSo23FBSDKUserDataPersisting_pSo20FBSDKUserIDProviding_pSo21FBSDKWebViewProviding_pSo14FBSDKAutoSetup_pSoA88__pAA16MACARuleMatching_ptcfc", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirer0eF6Wallet20advertiserIDProvider12aemNetworker0K8Reporter27appEventParametersExtractor0N6Events0nR21ConfigurationProvider0nR14DropDeterminer0nr5StateT00nrW5Store0nR7Utility0n4LinkO6Poster0nZ7Factory0nZ8Resolver0nZ13TargetFactory0nZ10URLFactory19atePublisherFactory014authenticationfH0010backgroundO6Logger04capiM015codelessIndexer12crashHandler13crashObserver04dataQ0011defaultDataX0017deviceInformationT006dialogS10MapBuilder05errorsT012errorFactory05errorM024eventDeactivationManager11eventLogger14featureChecker07featureQ011fileManager17gateKeeperManager32getApplicationActivationNotifier29graphRequestConnectionFactory19graphRequestFactory23impressionLoggerFactory014infoDictionaryT017internalURLOpener08internalY06logger13loggerFactory23macCatalystDeterminator15metadataIndexer12modelManager18notificationCenter30operatingSystemVersionComparer15paymentObserver16piggybackManager13profileSetter28restrictiveDataFilterManager012rulesFromKeyT006serversT0015sessionDataTaskT08settings011skAdNetworkM009suggestedR7Indexer8swizzler17timeSpentRecorder10tokenCache9urlHoster22urlSessionProxyFactory08userDataX004userJ007webViewT00K7Manager20protectedModeManager23macaRuleMatchingManagerAcA07_AccessF8Expiring_p_So011FBSDKAccessF9Providing_So25FBSDKTokenStringProvidingpXpSo26FBSDKAdvertiserIDProviding_p8FBAEMKit13AEMNetworking_pSgAA20_AEMReporterProtocol_pXpSo08FBSDKAppoP10Extracting_pSo17FBSDKEventLogging_So08FBSDKAppR11ConfiguringSo26FBSDKApplicationActivatingSo34FBSDKApplicationLifecycleObservingSo016FBSDKApplicationW7SettingSo30FBSDKSourceApplicationTrackingpSo08FBSDKApprS9Providing_pSo08FBSDKAppoU11Determining_pSo08FBSDKApprW9Providing_pSo08FBSDKApprW10Persisting_pSoA64__SoA56_So08FBSDKApprY0So21FBSDKLoggingNotifyingpSo08FBSDKAppzO7Posting_pSo08FBSDKAppZ8Creating_pSo08FBSDKAppZ9Resolving_pSo08FBSDKAppZ14TargetCreating_pSo08FBSDKAppZ11URLCreating_pSo25FBSDKATEPublisherCreating_pSo019FBSDKAuthenticationF9Providing_pXpAA010BackgroundO7Logging_pAA12CAPIReporter_pSo21FBSDKCodelessIndexing_pXpSo17FBSDKCrashHandler_pSo19FBSDKCrashObserving_pSo23FBSDKFileDataExtracting_pXpSo19FBSDKDataPersisting_pSo31FBSDKDeviceInformationProviding_pSo011FBSDKDialogS11MapBuilding_pSo010FBSDKErrorS9Providing_pSo18FBSDKErrorCreating_pSo19FBSDKErrorReporting_pSo08FBSDKAppR19ParameterProcessing_So21FBSDKEventsProcessingpSoA57__pSo20FBSDKFeatureChecking_So21FBSDKFeatureDisablingpSo22FBSDKFeatureExtracting_pXpSo17FBSDKFileManaging_pSo23FBSDKGateKeeperManaging_pXpypycSo34FBSDKGraphRequestConnectionFactory_pSo24FBSDKGraphRequestFactory_pSo28FBSDKImpressionLoggerFactory_pSo28FBSDKInfoDictionaryProviding_pSo22FBSDKInternalURLOpener_pSo013FBSDKInternalY0_pSo12FBSDKLogging_pXpSo21__FBSDKLoggerCreating_pSo27FBSDKMacCatalystDetermining_pSo21FBSDKMetadataIndexing_pSo20FBSDKEventProcessing_So014FBSDKIntegrityp9ProcessorT0pSo25_FBSDKNotificationPosting_So27FBSDKNotificationDeliveringpSo36FBSDKOperatingSystemVersionComparing_pSo21FBSDKPaymentObserving_pSo34FBSDKGraphRequestPiggybackManaging_pAA16ProfileProviding_pXpSoA88__SoA89_pSo017FBSDKRulesFromKeyT0_pSo011FBSDKServerS9Providing_pSo24FBSDKURLSessionProviding_pSo20FBSDKSettingsLogging_AA16SettingsProtocolpA52_20SKAdNetworkReporting_So08FBSDKApprM0pSgSo014FBSDKSuggestedR7Indexer_pSo14FBSDKSwizzling_pXpSoA62__So23FBSDKTimeSpentRecordingpSo17FBSDKTokenCaching_pSo15FBSDKURLHosting_pSo29FBSDKURLSessionProxyProviding_pSo23FBSDKUserDataPersisting_pSo20FBSDKUserIDProviding_pSo21FBSDKWebViewProviding_pSo14FBSDKAutoSetup_pSoA88__pAA16MACARuleMatching_ptcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC7defaultACvpZ", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC7defaultACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC7defaultACvgZ", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC7defaultACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Testable", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitConfigurator", + "printedName": "CoreKitConfigurator", + "children": [ + { + "kind": "Var", + "name": "components", + "printedName": "components", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvp", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvg", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(components:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfigurator", + "printedName": "FBSDKCoreKit.CoreKitConfigurator", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC" + }, + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAcA0cB10ComponentsC_tcfc", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAcA0cB10ComponentsC_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "performConfiguration", + "printedName": "performConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC20performConfigurationyyF", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC20performConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CoreKitConfiguring", + "printedName": "CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitConfiguring", + "printedName": "CoreKitConfiguring", + "children": [ + { + "kind": "Function", + "name": "performConfiguration", + "printedName": "performConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP20performConfigurationyyF", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP20performConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CoreKitConfiguring>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreUIApplication", + "printedName": "CoreUIApplication", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(cpy)shared", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC6sharedSo22FBSDKInternalURLOpener_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(cm)shared", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC6sharedSo22FBSDKInternalURLOpener_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreUIApplication", + "printedName": "FBSDKCoreKit.CoreUIApplication", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(im)init", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "AssociatedType", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "AssociatedType", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit16DependentAsValueP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValueP15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE15getDependencies0eG0QzyKF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ValueDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ValueDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EventDeactivationManager", + "printedName": "EventDeactivationManager", + "children": [ + { + "kind": "Var", + "name": "isEventDeactivationEnabled", + "printedName": "isEventDeactivationEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC02iscD7Enabled33_14ACE7546C2C147776F91B107E749DCALLSbvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC02iscD7Enabled33_14ACE7546C2C147776F91B107E749DCALLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "deactivatedEvents", + "printedName": "deactivatedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC17deactivatedEvents33_14ACE7546C2C147776F91B107E749DCALLShySSGvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC17deactivatedEvents33_14ACE7546C2C147776F91B107E749DCALLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "eventsWithDeactivatedParameters", + "printedName": "eventsWithDeactivatedParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.EventDeactivationManager.DeactivatedEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "DeactivatedEvent", + "printedName": "FBSDKCoreKit.EventDeactivationManager.DeactivatedEvent", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC011DeactivatedC033_14ACE7546C2C147776F91B107E749DCALLV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC31eventsWithDeactivatedParameters33_14ACE7546C2C147776F91B107E749DCALLSayAC0hC0AELLVGvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC31eventsWithDeactivatedParameters33_14ACE7546C2C147776F91B107E749DCALLSayAC0hC0AELLVGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC6enableyyF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "$__lazy_storage_$_enableOnce", + "printedName": "$__lazy_storage_$_enableOnce", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC28$__lazy_storage_$_enableOnce33_14ACE7546C2C147776F91B107E749DCALLyycSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC28$__lazy_storage_$_enableOnce33_14ACE7546C2C147776F91B107E749DCALLyycSgvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final" + ], + "fixedbinaryorder": 5, + "hasStorage": true + }, + { + "kind": "Function", + "name": "processEvents", + "printedName": "processEvents(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSMutableArray", + "printedName": "Foundation.NSMutableArray", + "usr": "c:objc(cs)NSMutableArray" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC13processEventsyySo14NSMutableArrayCF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC13processEventsyySo14NSMutableArrayCF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processEvents:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEvents.Name?", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC17processParameters_9eventNameSDySo08FBSDKAppc9ParameterI0aypGSgAI_So0jcI0aSgtF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC17processParameters_9eventNameSDySo08FBSDKAppc9ParameterI0aypGSgAI_So0jcI0aSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:eventName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDeactivationManager", + "printedName": "FBSDKCoreKit.EventDeactivationManager", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerCACycfc", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBIcon", + "printedName": "FBIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit6FBIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4sizeSo7UIImageCSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:scale:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5scaleSo7UIImageCSgSo6CGSizeV_12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:color:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:color:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5colorSo7UIImageCSgSo6CGSizeV_So7UIColorCtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:scale:color:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:scale:color:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5scale5colorSo7UIImageCSgSo6CGSizeV_12CoreGraphics7CGFloatVSo7UIColorCtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBIcon", + "printedName": "FBSDKCoreKit.FBIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)init", + "mangledName": "$s12FBSDKCoreKit6FBIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "mangledName": "$s12FBSDKCoreKit6FBIconC", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKIcon", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBProfilePictureView", + "printedName": "FBProfilePictureView", + "children": [ + { + "kind": "Var", + "name": "pictureMode", + "printedName": "pictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)pictureMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)pictureMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPictureMode:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0OvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0OvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profileID", + "printedName": "profileID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)profileID", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)profileID", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setProfileID:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentState", + "printedName": "currentState", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvp", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvg", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasProfileImage", + "printedName": "hasProfileImage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)hasProfileImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)hasProfileImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setHasProfileImage:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastState", + "printedName": "lastState", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "needsImageUpdate", + "printedName": "needsImageUpdate", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)needsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)needsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setNeedsImageUpdate:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeholderImageIsValid", + "printedName": "placeholderImageIsValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)placeholderImageIsValid", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)placeholderImageIsValid", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPlaceholderImageIsValid:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageView", + "printedName": "imageView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)imageView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)imageView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setImageView:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0CvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0CvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bounds", + "printedName": "bounds", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)bounds", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvp", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "bounds", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)bounds", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvg", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "bounds", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setBounds:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvs", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "setBounds:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentMode", + "printedName": "contentMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)contentMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvp", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "contentMode", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)contentMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvg", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "contentMode", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setContentMode:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvs", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "setContentMode:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0VvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:profile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWith:profile:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5frame7profileACSo6CGRectV_AA7ProfileCSgtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWith:profile:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithProfile:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC7profileAcA7ProfileCSg_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithProfile:", + "declAttributes": [ + "Custom", + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithFrame:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "Custom", + "Override", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBProfilePictureView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithCoder:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "Custom", + "Required", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setNeedsImageUpdate", + "printedName": "setNeedsImageUpdate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setNeedsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC19setNeedsImageUpdateyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "performInitialConfiguration", + "printedName": "performInitialConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)performInitialConfiguration", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC27performInitialConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accessTokenDidChange", + "printedName": "accessTokenDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)accessTokenDidChange:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC20accessTokenDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profileDidChange", + "printedName": "profileDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)profileDidChange:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16profileDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImageWithAccessToken", + "printedName": "updateImageWithAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImageWithAccessToken", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC26updateImageWithAccessTokenyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImageWithProfile", + "printedName": "updateImageWithProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImageWithProfile", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC22updateImageWithProfileyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetImage", + "printedName": "fetchAndSetImage(with:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC16fetchAndSetImage4with5statey10Foundation3URLV_AA07ProfiledE5StateVtF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16fetchAndSetImage4with5statey10Foundation3URLV_AA07ProfiledE5StateVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldImageFit", + "printedName": "shouldImageFit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)shouldImageFit", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC14shouldImageFitSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageSize", + "printedName": "getImageSize(imageShouldFit:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)getImageSizeWithImageShouldFit:scale:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12getImageSize14imageShouldFit5scaleSo6CGSizeVSb_12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProfileImageURL", + "printedName": "getProfileImageURL(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC18getProfileImageURL5state10Foundation0I0VSgAA0gdE5StateV_tF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC18getProfileImageURL5state10Foundation0I0VSgAA0gdE5StateV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPlaceholderImage", + "printedName": "setPlaceholderImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPlaceholderImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC19setPlaceholderImageyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImage", + "printedName": "updateImage(data:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11updateImage4data5statey10Foundation4DataV_AA07ProfiledE5StateVtF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11updateImage4data5statey10Foundation4DataV_AA07ProfiledE5StateVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImage", + "printedName": "updateImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11updateImageyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfilePictureView", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)UIView", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventName", + "printedName": "AppEventName", + "children": [ + { + "kind": "Var", + "name": "unlockedAchievement", + "printedName": "unlockedAchievement", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO19unlockedAchievementyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO19unlockedAchievementyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "activatedApp", + "printedName": "activatedApp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO09activatedC0yA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO09activatedC0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "addedPaymentInfo", + "printedName": "addedPaymentInfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO16addedPaymentInfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO16addedPaymentInfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "addedToCart", + "printedName": "addedToCart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO11addedToCartyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO11addedToCartyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "addedToWishlist", + "printedName": "addedToWishlist", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO15addedToWishlistyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO15addedToWishlistyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "completedRegistration", + "printedName": "completedRegistration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO21completedRegistrationyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO21completedRegistrationyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "viewedContent", + "printedName": "viewedContent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO13viewedContentyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO13viewedContentyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "initiatedCheckout", + "printedName": "initiatedCheckout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO17initiatedCheckoutyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO17initiatedCheckoutyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "achievedLevel", + "printedName": "achievedLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO13achievedLevelyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO13achievedLevelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "purchased", + "printedName": "purchased", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO9purchasedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO9purchasedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "rated", + "printedName": "rated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO5ratedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO5ratedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "searched", + "printedName": "searched", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO8searchedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8searchedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "spentCredits", + "printedName": "spentCredits", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO12spentCreditsyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO12spentCreditsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "completedTutorial", + "printedName": "completedTutorial", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO17completedTutorialyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO17completedTutorialyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventName?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit12AppEventNameO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit12AppEventNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit12AppEventNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit12AppEventNameO", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CustomEventField", + "printedName": "CustomEventField", + "children": [ + { + "kind": "Var", + "name": "eventTime", + "printedName": "eventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO9eventTimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO9eventTimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO9eventNameyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO9eventNameyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "valueToSum", + "printedName": "valueToSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO10valueToSumyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO10valueToSumyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "contentIds", + "printedName": "contentIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO10contentIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO10contentIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contents", + "printedName": "contents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8contentsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8contentsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO11contentTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO11contentTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO11descriptionyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO11descriptionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "level", + "printedName": "level", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO5levelyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO5levelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "maxRatingValue", + "printedName": "maxRatingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO14maxRatingValueyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO14maxRatingValueyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "numItems", + "printedName": "numItems", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8numItemsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8numItemsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "paymentInfoAvailable", + "printedName": "paymentInfoAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO20paymentInfoAvailableyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO20paymentInfoAvailableyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "registrationMethod", + "printedName": "registrationMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO18registrationMethodyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO18registrationMethodyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "searchString", + "printedName": "searchString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO12searchStringyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO12searchStringyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO7successyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO7successyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "orderId", + "printedName": "orderId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO7orderIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO7orderIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "adType", + "printedName": "adType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO6adTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO6adTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8currencyyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8currencyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.CustomEventField?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit16CustomEventFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventType", + "printedName": "AppEventType", + "children": [ + { + "kind": "Var", + "name": "mobileAppInstall", + "printedName": "mobileAppInstall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO06mobileC7InstallyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO06mobileC7InstallyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO6customyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO6customyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO5otheryA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO5otheryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueACSS_tcfc", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit12AppEventTypeO", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventUserAndAppDataField", + "printedName": "AppEventUserAndAppDataField", + "children": [ + { + "kind": "Var", + "name": "anonId", + "printedName": "anonId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO6anonIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO6anonIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appUserId", + "printedName": "appUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO03appE2IdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO03appE2IdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "advertiserId", + "printedName": "advertiserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO12advertiserIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO12advertiserIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "pageId", + "printedName": "pageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO6pageIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO6pageIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "pageScopedUserId", + "printedName": "pageScopedUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO010pageScopedE2IdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO010pageScopedE2IdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO04userG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO04userG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "advTE", + "printedName": "advTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO5advTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO5advTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "appTE", + "printedName": "appTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO5appTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO5appTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "considerViews", + "printedName": "considerViews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO13considerViewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO13considerViewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "deviceToken", + "printedName": "deviceToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO11deviceTokenyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO11deviceTokenyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "extinfo", + "printedName": "extinfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO7extinfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO7extinfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "includeDwellData", + "printedName": "includeDwellData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeDwellG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeDwellG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "includeVideoData", + "printedName": "includeVideoData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeVideoG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeVideoG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "installReferrer", + "printedName": "installReferrer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO15installReferreryA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO15installReferreryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "installerPackage", + "printedName": "installerPackage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO16installerPackageyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO16installerPackageyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "receiptData", + "printedName": "receiptData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO07receiptG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO07receiptG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "urlSchemes", + "printedName": "urlSchemes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO10urlSchemesyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO10urlSchemesyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "campaignIds", + "printedName": "campaignIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO11campaignIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO11campaignIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPISection", + "printedName": "ConversionsAPISection", + "children": [ + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8userDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8userDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO7appDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO7appDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "customData", + "printedName": "customData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO10customDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO10customDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "customEvents", + "printedName": "customEvents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO12customEventsyA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO12customEventsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPICustomEventField", + "printedName": "ConversionsAPICustomEventField", + "children": [ + { + "kind": "Var", + "name": "valueToSum", + "printedName": "valueToSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO10valueToSumyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO10valueToSumyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "eventTime", + "printedName": "eventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventTimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventTimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventNameyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventNameyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "contentIds", + "printedName": "contentIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO10contentIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO10contentIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contents", + "printedName": "contents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8contentsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8contentsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO11contentTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO11contentTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO11descriptionyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO11descriptionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "level", + "printedName": "level", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO5levelyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO5levelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "maxRatingValue", + "printedName": "maxRatingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO14maxRatingValueyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO14maxRatingValueyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "numItems", + "printedName": "numItems", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8numItemsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8numItemsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "paymentInfoAvailable", + "printedName": "paymentInfoAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO20paymentInfoAvailableyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO20paymentInfoAvailableyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "registrationMethod", + "printedName": "registrationMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO18registrationMethodyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO18registrationMethodyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "searchString", + "printedName": "searchString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO12searchStringyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO12searchStringyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO7successyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO7successyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "orderId", + "printedName": "orderId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO7orderIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO7orderIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "adType", + "printedName": "adType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO6adTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO6adTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8currencyyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8currencyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "Var", + "name": "anonId", + "printedName": "anonId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6anonIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6anonIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "fbLoginId", + "printedName": "fbLoginId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO9fbLoginIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO9fbLoginIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "madid", + "printedName": "madid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5madidyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5madidyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "pageId", + "printedName": "pageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6pageIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6pageIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "pageScopedUserId", + "printedName": "pageScopedUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16pageScopedUserIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16pageScopedUserIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO04userG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO04userG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "advTE", + "printedName": "advTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5advTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5advTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "appTE", + "printedName": "appTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5appTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5appTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "considerViews", + "printedName": "considerViews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO13considerViewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO13considerViewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "deviceToken", + "printedName": "deviceToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11deviceTokenyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11deviceTokenyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "extinfo", + "printedName": "extinfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO7extinfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO7extinfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "includeDwellData", + "printedName": "includeDwellData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeDwellG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeDwellG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "includeVideoData", + "printedName": "includeVideoData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeVideoG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeVideoG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "installReferrer", + "printedName": "installReferrer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO15installReferreryA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO15installReferreryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "installerPackage", + "printedName": "installerPackage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16installerPackageyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16installerPackageyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "receiptData", + "printedName": "receiptData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO07receiptG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO07receiptG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "urlSchemes", + "printedName": "urlSchemes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO10urlSchemesyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO10urlSchemesyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "campaignIds", + "printedName": "campaignIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11campaignIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11campaignIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPIEventName", + "printedName": "ConversionsAPIEventName", + "children": [ + { + "kind": "Var", + "name": "achievementUnlocked", + "printedName": "achievementUnlocked", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO19achievementUnlockedyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO19achievementUnlockedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "activateApp", + "printedName": "activateApp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO11activateAppyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO11activateAppyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "addPaymentInfo", + "printedName": "addPaymentInfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO14addPaymentInfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO14addPaymentInfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "addToCart", + "printedName": "addToCart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO9addToCartyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO9addToCartyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "addToWishlist", + "printedName": "addToWishlist", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO13addToWishlistyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO13addToWishlistyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "completeRegistration", + "printedName": "completeRegistration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO20completeRegistrationyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO20completeRegistrationyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "viewContent", + "printedName": "viewContent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO11viewContentyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO11viewContentyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "initiateCheckout", + "printedName": "initiateCheckout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO16initiateCheckoutyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO16initiateCheckoutyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "levelAchieved", + "printedName": "levelAchieved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO13levelAchievedyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO13levelAchievedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "purchase", + "printedName": "purchase", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8purchaseyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8purchaseyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "rate", + "printedName": "rate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO4rateyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO4rateyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "search", + "printedName": "search", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO6searchyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO6searchyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "spentCredits", + "printedName": "spentCredits", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO12spentCreditsyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO12spentCreditsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "tutorialCompletion", + "printedName": "tutorialCompletion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO18tutorialCompletionyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO18tutorialCompletionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OtherEventConstants", + "printedName": "OtherEventConstants", + "children": [ + { + "kind": "Var", + "name": "event", + "printedName": "event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO5eventyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO5eventyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "actionSource", + "printedName": "actionSource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO12actionSourceyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO12actionSourceyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "app", + "printedName": "app", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO3appyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO3appyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "mobileAppInstall", + "printedName": "mobileAppInstall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO16mobileAppInstallyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO16mobileAppInstallyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "installEventTime", + "printedName": "installEventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO07installD4TimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO07installD4TimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.OtherEventConstants?", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventsConversionsAPITransformer", + "printedName": "AppEventsConversionsAPITransformer", + "children": [ + { + "kind": "TypeDecl", + "name": "SectionFieldMapping", + "printedName": "SectionFieldMapping", + "children": [ + { + "kind": "Var", + "name": "section", + "printedName": "section", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(section:field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7section5fieldAeA0E10APISectionO_AA0e10APIUserAndc4DataH0OSgtcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7section5fieldAeA0E10APISectionO_AA0e10APIUserAndc4DataH0OSgtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "topLevelTransformations", + "printedName": "topLevelTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventUserAndAppDataField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventUserAndAppDataField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SectionCustomEventFieldMapping", + "printedName": "SectionCustomEventFieldMapping", + "children": [ + { + "kind": "Var", + "name": "section", + "printedName": "section", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(section:field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7section5fieldAeA0E10APISectionOSg_AA0e9APICustomiJ0Otcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7section5fieldAeA0E10APISectionOSg_AA0e9APICustomiJ0Otcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "customEventTransformations", + "printedName": "customEventTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.CustomEventField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.CustomEventField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "standardEventTransformations", + "printedName": "standardEventTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventName : FBSDKCoreKit.ConversionsAPIEventName]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventName : FBSDKCoreKit.ConversionsAPIEventName]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DataProcessingParameterName", + "printedName": "DataProcessingParameterName", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7optionsyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7optionsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "country", + "printedName": "country", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7countryyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7countryyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO5stateyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO5stateyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ValueTransformationType", + "printedName": "ValueTransformationType", + "children": [ + { + "kind": "Var", + "name": "array", + "printedName": "array", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5arrayyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5arrayyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "bool", + "printedName": "bool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO4boolyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO4boolyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "int", + "printedName": "int", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO3intyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO3intyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5fieldAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5fieldAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0AESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0AESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "transformValue", + "printedName": "transformValue(field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO14transformValue5field5valueypSgSS_yptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO14transformValue5field5valueypSgSS_yptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "splitAppEventParameters", + "printedName": "splitAppEventParameters(from:userData:appData:restOfData:customEvents:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO05splitC15EventParameters4from8userData03appL006restOfL006customD0AA0cH4TypeOSgSDySSypG_AMzAMzAMzSayAMGztFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO05splitC15EventParameters4from8userData03appL006restOfL006customD0AA0cH4TypeOSgSDySSypG_AMzAMzAMzSayAMGztFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateAppData", + "printedName": "transformAndUpdateAppData(_:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdateC4Data_5field5valueySDySSypGz_AA0c9EventUserhcJ5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdateC4Data_5field5valueySDySSypGz_AA0c9EventUserhcJ5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateUserData", + "printedName": "transformAndUpdateUserData(_:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26transformAndUpdateUserData_5field5valueySDySSypGz_AA0c5EventjhcK5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26transformAndUpdateUserData_5field5valueySDySSypGz_AA0c5EventjhcK5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateAppAndUserData", + "printedName": "transformAndUpdateAppAndUserData(userData:appData:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdatecH8UserData04userK003appK05field5valueySDySSypGz_AIzAA0c5EventjhcK5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdatecH8UserData04userK003appK05field5valueySDySSypGz_AIzAA0c5EventjhcK5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformEventName", + "printedName": "transformEventName(from:)", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO18transformEventName4fromS2S_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO18transformEventName4fromS2S_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformEvents", + "printedName": "transformEvents(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO09transformD04fromSaySDySSypGGSgSS_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO09transformD04fromSaySDySSypGGSgSS_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineCommonFields", + "printedName": "combineCommonFields(userData:appData:restOfData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19combineCommonFields8userData03appK006restOfK0SDySSypGAH_A2HtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19combineCommonFields8userData03appK006restOfK0SDySSypGAH_A2HtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedDataForMobileAppInstall", + "printedName": "combineAllTransformedDataForMobileAppInstall(commonFields:eventTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO034combineAllTransformedDataForMobileC7Install12commonFields9eventTimeSaySDySSypGGSgAG_SiSgtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO034combineAllTransformedDataForMobileC7Install12commonFields9eventTimeSaySDySSypGGSgAG_SiSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedDataForCustom", + "printedName": "combineAllTransformedDataForCustom(commonFields:customEvents:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO34combineAllTransformedDataForCustom12commonFields06customD0SaySDySSypGGSgAG_AHtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO34combineAllTransformedDataForCustom12commonFields06customD0SaySDySSypGGSgAG_AHtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedData", + "printedName": "combineAllTransformedData(eventType:userData:appData:restOfData:customEvents:eventTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO25combineAllTransformedData9eventType04userJ003appJ006restOfJ006customD00K4TimeSaySDySSypGGSgAA0c5EventL0O_A3kLSiSgtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO25combineAllTransformedData9eventType04userJ003appJ006restOfJ006customD00K4TimeSaySDySSypGGSgAA0c5EventL0O_A3kLSiSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "conversionsAPICompatibleEvent", + "printedName": "conversionsAPICompatibleEvent(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO29conversionsAPICompatibleEvent4fromSaySDySSypGGSgAF_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO29conversionsAPICompatibleEvent4fromSaySDySSypGGSgAF_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "SettingsAPIFields", + "printedName": "SettingsAPIFields", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO3urlyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO3urlyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "enabled", + "printedName": "enabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO7enabledyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO7enabledyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "datasetID", + "printedName": "datasetID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO9datasetIDyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO9datasetIDyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "accessKey", + "printedName": "accessKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO9accessKeyyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO9accessKeyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsAPIFields?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKAppEventsCAPIManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(cpy)shared", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(cm)shared", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSDKGKEnabled", + "printedName": "isSDKGKEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)isSDKGKEnabled", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isSDKGKEnabled", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setIsSDKGKEnabled:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "factory", + "printedName": "factory", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)factory", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)factory", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setFactory:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)settings", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)settings", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setSettings:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configRefreshTimestamp", + "printedName": "configRefreshTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)configRefreshTimestamp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)configRefreshTimestamp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setConfigRefreshTimestamp:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isLoadingConfig", + "printedName": "isLoadingConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)isLoadingConfig", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isLoadingConfig", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setIsLoadingConfig:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "completionBlocks", + "printedName": "completionBlocks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvg", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvs", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)init", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(factory:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)configureWithFactory:settings:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC9configure7factory8settingsySo24FBSDKGraphRequestFactory_p_AA16SettingsProtocol_ptF", + "moduleName": "FBSDKCoreKit", + "objc_name": "configureWithFactory:settings:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)enable", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordEvent", + "printedName": "recordEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)recordEvent:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC11recordEventyySDySSypGF", + "moduleName": "FBSDKCoreKit", + "objc_name": "recordEvent:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(withBlock:)", + "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:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)loadWithBlock:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC4load9withBlockyySbc_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldRefresh", + "printedName": "shouldRefresh()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)shouldRefresh", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC13shouldRefreshSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRefreshTimestampValid", + "printedName": "isRefreshTimestampValid()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isRefreshTimestampValid", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC23isRefreshTimestampValidSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "executeBlocks", + "printedName": "executeBlocks(isEnabled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)executeBlocksWithIsEnabled:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC13executeBlocks9isEnabledySb_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CAPIReporter", + "printedName": "CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKTransformerGraphRequestFactory", + "children": [ + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)contentType", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11contentTypeSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)contentType", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11contentTypeSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeoutInterval", + "printedName": "timeoutInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)timeoutInterval", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15timeoutIntervalSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)timeoutInterval", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15timeoutIntervalSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxCachedEvents", + "printedName": "maxCachedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)maxCachedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15maxCachedEventsSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)maxCachedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15maxCachedEventsSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxProcessedEvents", + "printedName": "maxProcessedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)maxProcessedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18maxProcessedEventsSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)maxProcessedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18maxProcessedEventsSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "retryEventsHttpResponse", + "printedName": "retryEventsHttpResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)retryEventsHttpResponse", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC23retryEventsHttpResponseSaySiGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)retryEventsHttpResponse", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC23retryEventsHttpResponseSaySiGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(cpy)shared", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(cm)shared", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "credentials", + "printedName": "credentials", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials?", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials?", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transformedEvents", + "printedName": "transformedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)transformedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)transformedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)setTransformedEvents:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvM", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CapiGCredentials", + "printedName": "CapiGCredentials", + "children": [ + { + "kind": "Var", + "name": "accessKey", + "printedName": "accessKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "capiGatewayURL", + "printedName": "capiGatewayURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "datasetID", + "printedName": "datasetID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessKey:capiGatewayURL:datasetID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKey14capiGatewayURL9datasetIDAESS_S2Stcfc", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKey14capiGatewayURL9datasetIDAESS_S2Stcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)init", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(datasetID:url:accessKey:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)configureWithDatasetID:url:accessKey:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC9configure9datasetID3url9accessKeyySS_S2StF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "callCapiGatewayAPI", + "printedName": "callCapiGatewayAPI(with:userAgent:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)callCapiGatewayAPIWith:userAgent:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18callCapiGatewayAPI4with9userAgentySDySSypG_SStF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "capiGatewayRequestDictionary", + "printedName": "capiGatewayRequestDictionary(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)capiGatewayRequestDictionaryWith:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC011capiGatewayE10Dictionary4withSDySSypGSayAFG_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleError", + "printedName": "handleError(response:events:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLResponse", + "printedName": "Foundation.URLResponse", + "usr": "c:objc(cs)NSURLResponse" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)handleErrorWithResponse:events:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11handleError8response6eventsySo13NSURLResponseCSg_SaySDySSypGGSgtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appendEvents", + "printedName": "appendEvents(events:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)appendEventsWithEvents:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC12appendEvents6eventsySaySDySSypGGSg_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphRequestPiggybackManager", + "printedName": "GraphRequestPiggybackManager", + "children": [ + { + "kind": "TypeDecl", + "name": "Values", + "printedName": "Values", + "children": [ + { + "kind": "Var", + "name": "tokenRefreshThresholdInSeconds", + "printedName": "tokenRefreshThresholdInSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokenRefreshRetryInSeconds", + "printedName": "tokenRefreshRetryInSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extendSSOToken", + "printedName": "extendSSOToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenRefreshFields", + "printedName": "accessTokenRefreshFields", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "permissionsPath", + "printedName": "permissionsPath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "permissionsRefreshFields", + "printedName": "permissionsRefreshFields", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO", + "moduleName": "FBSDKCoreKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "lastRefreshTry", + "printedName": "lastRefreshTry", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addPiggybackRequests", + "printedName": "addPiggybackRequests(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC03addE8RequestsyySo010FBSDKGraphD10Connecting_pF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC03addE8RequestsyySo010FBSDKGraphD10Connecting_pF", + "moduleName": "FBSDKCoreKit", + "objc_name": "addPiggybackRequests:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addRefreshPiggyback", + "printedName": "addRefreshPiggyback(_:permissionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestConnecting?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE0_17permissionHandlerySo010FBSDKGraphD10Connecting_p_ySoAF_pSg_ypSgs5Error_pSgtcSgtF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE0_17permissionHandlerySo010FBSDKGraphD10Connecting_p_ySoAF_pSg_ypSgs5Error_pSgtcSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "addRefreshPiggyback:permissionHandler:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRequestSafeForPiggyback", + "printedName": "isRequestSafeForPiggyback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestProtocol", + "printedName": "FBSDKCoreKit.GraphRequestProtocol", + "usr": "c:objc(pl)FBSDKGraphRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC02isd7SafeForE0ySbSo010FBSDKGraphD0_pF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC02isd7SafeForE0ySbSo010FBSDKGraphD0_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addRefreshPiggybackIfStale", + "printedName": "addRefreshPiggybackIfStale(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE7IfStale2toySo010FBSDKGraphD10Connecting_p_tF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE7IfStale2toySo010FBSDKGraphD10Connecting_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addServerConfigurationPiggyback", + "printedName": "addServerConfigurationPiggyback(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC022addServerConfigurationE02toySo010FBSDKGraphD10Connecting_p_tF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC022addServerConfigurationE02toySo010FBSDKGraphD10Connecting_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestPiggybackManager", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerCACycfc", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "tokenWallet", + "printedName": "tokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tokenWallet:settings:serverConfigurationProvider:graphRequestFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWallet8settings27serverConfigurationProvider05graphD7FactoryAESo25FBSDKAccessTokenProviding_pXp_AA16SettingsProtocol_pSo011FBSDKServermS0_pSo010FBSDKGraphdP0_ptcfc", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWallet8settings27serverConfigurationProvider05graphD7FactoryAESo25FBSDKAccessTokenProviding_pXp_AA16SettingsProtocol_pSo011FBSDKServermS0_pSo010FBSDKGraphdP0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "KeychainStoreFactory", + "printedName": "KeychainStoreFactory", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreFactory", + "printedName": "FBSDKCoreKit.KeychainStoreFactory", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "createKeychainStore", + "printedName": "createKeychainStore(service:accessGroup:)", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC06createcD07service11accessGroupSo013FBSDKKeychainD0_pSS_SSSgtF", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryC06createcD07service11accessGroupSo013FBSDKKeychainD0_pSS_SSSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createKeychainStoreWithService:accessGroup:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MACARuleMatching", + "printedName": "MACARuleMatching", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching(im)enable", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP6enableyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.MACARuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching(im)processParameters:event:", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP17processParameters_5eventSo12NSDictionaryCSgAH_SSSgtF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.MACARuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKMACARuleMatching", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MACARuleMatchingManager", + "printedName": "MACARuleMatchingManager", + "children": [ + { + "kind": "Var", + "name": "isEnable", + "printedName": "isEnable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC8isEnable33_0BB5878F933DE26C4692A35EA0FEF78ALLSbvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC8isEnable33_0BB5878F933DE26C4692A35EA0FEF78ALLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "macaRules", + "printedName": "macaRules", + "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:12FBSDKCoreKit23MACARuleMatchingManagerC9macaRules33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC9macaRules33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "keys", + "printedName": "keys", + "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:12FBSDKCoreKit23MACARuleMatchingManagerC4keys33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC4keys33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)enable", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getKey", + "printedName": "getKey(logic:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC6getKey5logicSSSgSDySSypG_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC6getKey5logicSSSgSDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stringComparison", + "printedName": "stringComparison(variable:values:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC16stringComparison8variable6values4dataSbSS_SDySSypGAHtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC16stringComparison8variable6values4dataSbSS_SDySSypGAHtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stringValueOf", + "printedName": "stringValueOf(_:)", + "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": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13stringValueOfySSSgypSgF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13stringValueOfySSSgypSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doubleValueOf", + "printedName": "doubleValueOf(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13doubleValueOfySdypSgF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13doubleValueOfySdypSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatchCCRule", + "printedName": "isMatchCCRule(_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13isMatchCCRule_4dataSbSSSg_SDySSypGtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13isMatchCCRule_4dataSbSSSg_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMatchPropertyIDs", + "printedName": "getMatchPropertyIDs(params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19getMatchPropertyIDs6paramsSSSDySSypG_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19getMatchPropertyIDs6paramsSSSDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)processParameters:event:", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC17processParameters_5eventSo12NSDictionaryCSgAH_SSSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:event:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateInfo", + "printedName": "generateInfo(params:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "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:12FBSDKCoreKit23MACARuleMatchingManagerC12generateInfo6params5eventySDySSypGz_SSSgtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC12generateInfo6params5eventySDySSypGz_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeGeneratedInfo", + "printedName": "removeGeneratedInfo(params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19removeGeneratedInfo6paramsySDySSypGz_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19removeGeneratedInfo6paramsySDySSypGz_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatchingManager", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)init", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "deviceInformationProvider", + "printedName": "deviceInformationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:deviceInformationProvider:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProvider017deviceInformationJ08settingsAESo011FBSDKServerI9Providing_p_So011FBSDKDevicelO0_pAA16SettingsProtocol_ptcfc", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProvider017deviceInformationJ08settingsAESo011FBSDKServerI9Providing_p_So011FBSDKDevicelO0_pAA16SettingsProtocol_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKMACARuleMatchingManager", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MACARuleMatching", + "printedName": "MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP" + }, + { + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV13dependentType33_958FB1E740EB546F978E744982C869ADLLxmvp", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV13dependentType33_958FB1E740EB546F978E744982C869ADLLxmvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKCoreKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKCoreKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Permission", + "printedName": "Permission", + "children": [ + { + "kind": "Var", + "name": "publicProfile", + "printedName": "publicProfile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO13publicProfileyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO13publicProfileyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userFriends", + "printedName": "userFriends", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userFriendsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userFriendsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO5emailyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO5emailyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAboutMe", + "printedName": "userAboutMe", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userAboutMeyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userAboutMeyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsBooks", + "printedName": "userActionsBooks", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsBooksyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsBooksyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsFitness", + "printedName": "userActionsFitness", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO18userActionsFitnessyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO18userActionsFitnessyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsMusic", + "printedName": "userActionsMusic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsMusicyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsMusicyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsNews", + "printedName": "userActionsNews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO15userActionsNewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO15userActionsNewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsVideo", + "printedName": "userActionsVideo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsVideoyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsVideoyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userBirthday", + "printedName": "userBirthday", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userBirthdayyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userBirthdayyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userEducationHistory", + "printedName": "userEducationHistory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO20userEducationHistoryyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO20userEducationHistoryyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userEvents", + "printedName": "userEvents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userEventsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userEventsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userGamesActivity", + "printedName": "userGamesActivity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userGamesActivityyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userGamesActivityyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userGender", + "printedName": "userGender", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userGenderyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userGenderyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userHometown", + "printedName": "userHometown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userHometownyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userHometownyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLikes", + "printedName": "userLikes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO9userLikesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO9userLikesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLocation", + "printedName": "userLocation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userLocationyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userLocationyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userManagedGroups", + "printedName": "userManagedGroups", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userManagedGroupsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userManagedGroupsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userPhotos", + "printedName": "userPhotos", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userPhotosyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userPhotosyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userPosts", + "printedName": "userPosts", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO9userPostsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO9userPostsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userRelationships", + "printedName": "userRelationships", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userRelationshipsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userRelationshipsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userRelationshipDetails", + "printedName": "userRelationshipDetails", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO23userRelationshipDetailsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO23userRelationshipDetailsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userReligionPolitics", + "printedName": "userReligionPolitics", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO20userReligionPoliticsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO20userReligionPoliticsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userTaggedPlaces", + "printedName": "userTaggedPlaces", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userTaggedPlacesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userTaggedPlacesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userVideos", + "printedName": "userVideos", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userVideosyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userVideosyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userWebsite", + "printedName": "userWebsite", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userWebsiteyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userWebsiteyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userWorkHistory", + "printedName": "userWorkHistory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO15userWorkHistoryyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO15userWorkHistoryyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readCustomFriendlists", + "printedName": "readCustomFriendlists", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO21readCustomFriendlistsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO21readCustomFriendlistsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readInsights", + "printedName": "readInsights", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12readInsightsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12readInsightsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readAudienceNetworkInsights", + "printedName": "readAudienceNetworkInsights", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO27readAudienceNetworkInsightsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO27readAudienceNetworkInsightsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readPageMailboxes", + "printedName": "readPageMailboxes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17readPageMailboxesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17readPageMailboxesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesShowList", + "printedName": "pagesShowList", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO13pagesShowListyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO13pagesShowListyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesManageCta", + "printedName": "pagesManageCta", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO14pagesManageCtayA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO14pagesManageCtayA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesManageInstantArticles", + "printedName": "pagesManageInstantArticles", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO26pagesManageInstantArticlesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO26pagesManageInstantArticlesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "adsRead", + "printedName": "adsRead", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO7adsReadyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO7adsReadyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLink", + "printedName": "userLink", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO8userLinkyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO8userLinkyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAgeRange", + "printedName": "userAgeRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userAgeRangeyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userAgeRangeyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> (Swift.String) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO6customyACSScACmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO6customyACSScACmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10PermissionO13stringLiteralACSS_tcfc", + "mangledName": "$s12FBSDKCoreKit10PermissionO13stringLiteralACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10PermissionO4nameSSvp", + "mangledName": "$s12FBSDKCoreKit10PermissionO4nameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10PermissionO4nameSSvg", + "mangledName": "$s12FBSDKCoreKit10PermissionO4nameSSvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10PermissionO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit10PermissionO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10PermissionO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit10PermissionO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10PermissionO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit10PermissionO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10PermissionO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit10PermissionO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit10PermissionO", + "mangledName": "$s12FBSDKCoreKit10PermissionO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "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": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Profile", + "printedName": "Profile", + "children": [ + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)userID", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(im)userID", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstName", + "printedName": "firstName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)firstName", + "mangledName": "$s12FBSDKCoreKit7ProfileC9firstNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)firstName", + "mangledName": "$s12FBSDKCoreKit7ProfileC9firstNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)middleName", + "mangledName": "$s12FBSDKCoreKit7ProfileC10middleNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)middleName", + "mangledName": "$s12FBSDKCoreKit7ProfileC10middleNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastName", + "printedName": "lastName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)lastName", + "mangledName": "$s12FBSDKCoreKit7ProfileC8lastNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)lastName", + "mangledName": "$s12FBSDKCoreKit7ProfileC8lastNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)name", + "mangledName": "$s12FBSDKCoreKit7ProfileC4nameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)name", + "mangledName": "$s12FBSDKCoreKit7ProfileC4nameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)linkURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC7linkURL10Foundation0E0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)linkURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC7linkURL10Foundation0E0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "refreshDate", + "printedName": "refreshDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)refreshDate", + "mangledName": "$s12FBSDKCoreKit7ProfileC11refreshDate10Foundation0E0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)refreshDate", + "mangledName": "$s12FBSDKCoreKit7ProfileC11refreshDate10Foundation0E0Vvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)imageURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL10Foundation0E0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)imageURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL10Foundation0E0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)email", + "mangledName": "$s12FBSDKCoreKit7ProfileC5emailSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)email", + "mangledName": "$s12FBSDKCoreKit7ProfileC5emailSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "friendIDs", + "printedName": "friendIDs", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)friendIDs", + "mangledName": "$s12FBSDKCoreKit7ProfileC9friendIDsSaySSGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)friendIDs", + "mangledName": "$s12FBSDKCoreKit7ProfileC9friendIDsSaySSGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "birthday", + "printedName": "birthday", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)birthday", + "mangledName": "$s12FBSDKCoreKit7ProfileC8birthday10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)birthday", + "mangledName": "$s12FBSDKCoreKit7ProfileC8birthday10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ageRange", + "printedName": "ageRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)ageRange", + "mangledName": "$s12FBSDKCoreKit7ProfileC8ageRangeSo012FBSDKUserAgeE0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)ageRange", + "mangledName": "$s12FBSDKCoreKit7ProfileC8ageRangeSo012FBSDKUserAgeE0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hometown", + "printedName": "hometown", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)hometown", + "mangledName": "$s12FBSDKCoreKit7ProfileC8hometownSo13FBSDKLocationCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)hometown", + "mangledName": "$s12FBSDKCoreKit7ProfileC8hometownSo13FBSDKLocationCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)location", + "mangledName": "$s12FBSDKCoreKit7ProfileC8locationSo13FBSDKLocationCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)location", + "mangledName": "$s12FBSDKCoreKit7ProfileC8locationSo13FBSDKLocationCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)gender", + "mangledName": "$s12FBSDKCoreKit7ProfileC6genderSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)gender", + "mangledName": "$s12FBSDKCoreKit7ProfileC6genderSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isLimited", + "printedName": "isLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)isLimited", + "mangledName": "$s12FBSDKCoreKit7ProfileC9isLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)isLimited", + "mangledName": "$s12FBSDKCoreKit7ProfileC9isLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_current", + "printedName": "_current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)_current", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)_current", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)set_current:", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC8_currentACSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isUpdatedWithAccessTokenChange", + "printedName": "isUpdatedWithAccessTokenChange", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)isUpdatedWithAccessTokenChange", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)isUpdatedWithAccessTokenChange", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvgZ", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)setIsUpdatedWithAccessTokenChange:", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDateACSS_SSSgA3K10Foundation0L0VSgAL0N0VSgtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDate05imageL05email9friendIDs8birthday8ageRange8hometown8location6genderACSS_SSSgA3S10Foundation0L0VSgAT0N0VSgAwSSaySSGSgAZSo012FBSDKUserAgeU0CSgSo13FBSDKLocationCSgA6_AStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDate05imageL05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimitedACSS_SSSgA3T10Foundation0L0VSgAU0N0VSgAxTSaySSGSgA_So012FBSDKUserAgeU0CSgSo13FBSDKLocationCSgA7_ATSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "enableUpdatesOnAccessTokenChange", + "printedName": "enableUpdatesOnAccessTokenChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)enableUpdatesOnAccessTokenChange:", + "mangledName": "$s12FBSDKCoreKit7ProfileC32enableUpdatesOnAccessTokenChangeyySbFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "enableUpdatesOnAccessTokenChange:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)init", + "mangledName": "$s12FBSDKCoreKit7ProfileCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "PictureMode", + "printedName": "PictureMode", + "children": [ + { + "kind": "Var", + "name": "square", + "printedName": "square", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO6squareyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO6squareyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "normal", + "printedName": "normal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO6normalyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO6normalyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "album", + "printedName": "album", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5albumyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5albumyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "small", + "printedName": "small", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5smallyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5smallyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "large", + "printedName": "large", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5largeyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5largeyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.PictureMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueAESgSu_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfilePictureMode", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "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": "Function", + "name": "imageURL", + "printedName": "imageURL(forMode:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)imageURLForPictureMode:size:", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL7forMode4size10Foundation0E0VSgAC07PictureG0O_So6CGSizeVtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "imageURLForPictureMode:size:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageURL", + "printedName": "getImageURL(profileID:pictureMode:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)getImageURLWithProfileID:pictureMode:size:", + "mangledName": "$s12FBSDKCoreKit7ProfileC11getImageURL9profileID11pictureMode4size10Foundation0F0VSgSS_AC07PictureJ0OSo6CGSizeVtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadCurrentProfile", + "printedName": "loadCurrentProfile(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.Profile?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)loadCurrentProfileWithCompletion:", + "mangledName": "$s12FBSDKCoreKit7ProfileC011loadCurrentC010completionyyACSg_s5Error_pSgtcSg_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "loadCurrentProfileWithCompletion:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadProfile", + "printedName": "loadProfile(accessToken:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.Profile?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)loadProfileWithAccessToken:completion:", + "mangledName": "$s12FBSDKCoreKit7ProfileC04loadC011accessToken10completionySo011FBSDKAccessF0CSg_yACSg_s5Error_pSgtcSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeGraphRequestParameters", + "printedName": "makeGraphRequestParameters(token:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)makeGraphRequestParametersWithToken:", + "mangledName": "$s12FBSDKCoreKit7ProfileC26makeGraphRequestParameters5tokenSDyS2SGSo16FBSDKAccessTokenCSg_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "current", + "printedName": "current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)currentProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "currentProfile", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)currentProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "currentProfile", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)setCurrentProfile:", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "setCurrentProfile:", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC7currentACSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "fetchCachedProfile", + "printedName": "fetchCachedProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Self?", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)fetchCachedProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC011fetchCachedC0ACXDSgyFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "fetchCachedProfile", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "profileUserDefaultsKey", + "printedName": "profileUserDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)profileUserDefaultsKey", + "mangledName": "$s12FBSDKCoreKit7ProfileC22profileUserDefaultsKeySSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isFromExtension": true, + "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:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)profileUserDefaultsKey", + "mangledName": "$s12FBSDKCoreKit7ProfileC22profileUserDefaultsKeySSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)supportsSecureCoding", + "mangledName": "$s12FBSDKCoreKit7ProfileC20supportsSecureCodingSbvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)supportsSecureCoding", + "mangledName": "$s12FBSDKCoreKit7ProfileC20supportsSecureCodingSbvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithCoder:", + "mangledName": "$s12FBSDKCoreKit7ProfileC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)encodeWithCoder:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6encode4withySo7NSCoderC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO6userIDyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO6userIDyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "firstName", + "printedName": "firstName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9firstNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9firstNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO10middleNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO10middleNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "lastName", + "printedName": "lastName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8lastNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8lastNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO4nameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO4nameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "linkURL", + "printedName": "linkURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO7linkURLyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO7linkURLyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "refreshDate", + "printedName": "refreshDate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11refreshDateyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11refreshDateyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8imageURLyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8imageURLyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO5emailyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO5emailyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "friendIDs", + "printedName": "friendIDs", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9friendIDsyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9friendIDsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "isLimited", + "printedName": "isLimited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9isLimitedyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9isLimitedyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "birthday", + "printedName": "birthday", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8birthdayyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8birthdayyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "ageRange", + "printedName": "ageRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8ageRangeyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8ageRangeyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "hometown", + "printedName": "hometown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8hometownyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8hometownyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8locationyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8locationyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO6genderyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO6genderyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBSDKCoreKit", + "implicit": 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:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10DeliveringpvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10DeliveringpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlHoster", + "printedName": "urlHoster", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenProvider:dataStore:graphRequestFactory:notificationCenter:settings:urlHoster:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProvider9dataStore19graphRequestFactory18notificationCenter8settings9urlHosterAESo011FBSDKAccessG9Providing_pXp_So19FBSDKDataPersisting_pSo010FBSDKGraphlM0_pSo25_FBSDKNotificationPosting_So0X10DeliveringpAA16SettingsProtocol_pSo15FBSDKURLHosting_ptcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProvider9dataStore19graphRequestFactory18notificationCenter8settings9urlHosterAESo011FBSDKAccessG9Providing_pXp_So19FBSDKDataPersisting_pSo010FBSDKGraphlM0_pSo25_FBSDKNotificationPosting_So0X10DeliveringpAA16SettingsProtocol_pSo15FBSDKURLHosting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfile", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ProfileProviding", + "printedName": "ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfilePictureViewState", + "printedName": "ProfilePictureViewState", + "children": [ + { + "kind": "Var", + "name": "profileID", + "printedName": "profileID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "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:12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "scale", + "printedName": "scale", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV5scale14CoreFoundation7CGFloatVvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV5scale12CoreGraphics7CGFloatVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "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": "s:12FBSDKCoreKit23ProfilePictureViewStateV5scale14CoreFoundation7CGFloatVvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV5scale12CoreGraphics7CGFloatVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pictureMode", + "printedName": "pictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "imageShouldFit", + "printedName": "imageShouldFit", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profileID:size:scale:pictureMode:imageShouldFit:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV9profileID4size5scale11pictureMode14imageShouldFitACSS_So6CGSizeV14CoreFoundation7CGFloatVAA0C0C0dL0OSbtcfc", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileID4size5scale11pictureMode14imageShouldFitACSS_So6CGSizeV12CoreGraphics7CGFloatVAA0C0C0dL0OSbtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileProviding", + "printedName": "ProfileProviding", + "children": [ + { + "kind": "Var", + "name": "current", + "printedName": "current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cpy)currentProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "objc_name": "currentProfile", + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)currentProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)setCurrentProfile:", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvsZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "fetchCachedProfile", + "printedName": "fetchCachedProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)fetchCachedProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP011fetchCachedC0AA0C0CSgyFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKProfileProviding", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProtectedModeManager", + "printedName": "ProtectedModeManager", + "children": [ + { + "kind": "Var", + "name": "isEnabled", + "printedName": "isEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC9isEnabled013_23E3C687B8F4H18C50A3A25F390F8C518LLSbvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC9isEnabled013_23E3C687B8F4H18C50A3A25F390F8C518LLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "standardParametersDefault", + "printedName": "standardParametersDefault", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC25standardParametersDefault013_23E3C687B8F4I18C50A3A25F390F8C518LLShySSGvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC25standardParametersDefault013_23E3C687B8F4I18C50A3A25F390F8C518LLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "standardParameters", + "printedName": "standardParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18standardParameters013_23E3C687B8F4H18C50A3A25F390F8C518LLShySSGvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18standardParameters013_23E3C687B8F4H18C50A3A25F390F8C518LLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)enable", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEvents.Name?", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)processParameters:eventName:", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC17processParameters_9eventNameSDySo022FBSDKAppEventParameterI0aypGSgAI_So0jkI0aSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:eventName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtectedModeManager", + "printedName": "FBSDKCoreKit.ProtectedModeManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)init", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProtectedModeManager", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginTooltipError", + "printedName": "LoginTooltipError", + "children": [ + { + "kind": "Var", + "name": "missingTooltipText", + "printedName": "missingTooltipText", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.LoginTooltipError.Type) -> FBSDKCoreKit.LoginTooltipError", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.LoginTooltipError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO07missingD4TextyA2CmF", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO07missingD4TextyA2CmF", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + }, + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17LoginTooltipErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO", + "moduleName": "FBSDKCoreKit", + "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": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConfigurationProvider", + "printedName": "ServerConfigurationProvider", + "children": [ + { + "kind": "Var", + "name": "loggingToken", + "printedName": "loggingToken", + "children": [ + { + "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:12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvp", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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:12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvg", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit27ServerConfigurationProviderC29shouldUseSafariViewController13forDialogNameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC29shouldUseSafariViewController13forDialogNameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadServerConfiguration", + "printedName": "loadServerConfiguration(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKLoginTooltip", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip", + "usr": "c:objc(cs)FBSDKLoginTooltip" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit27ServerConfigurationProviderC04loadcD010completionyySo17FBSDKLoginTooltipCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC04loadcD010completionyySo17FBSDKLoginTooltipCSg_s5Error_pSgtcSg_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProvider", + "printedName": "FBSDKCoreKit.ServerConfigurationProvider", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider(im)init", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AdSupport", + "printedName": "AdSupport", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "Settings", + "printedName": "Settings", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(cpy)sharedSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "sharedSettings", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(cm)sharedSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sdkVersion", + "printedName": "sdkVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)sdkVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC10sdkVersionSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "sdkVersion", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)sdkVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC10sdkVersionSSvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "sdkVersion", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultGraphAPIVersion", + "printedName": "defaultGraphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)defaultGraphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC22defaultGraphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)defaultGraphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC22defaultGraphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jpegCompressionQuality", + "printedName": "jpegCompressionQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)JPEGCompressionQuality", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "JPEGCompressionQuality", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)JPEGCompressionQuality", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setJPEGCompressionQuality:", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22jpegCompressionQuality14CoreFoundation7CGFloatVvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "autoLogAppEventsEnabled", + "printedName": "autoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)autoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)autoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAutoLogAppEventsEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAutoLogAppEventsEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAutoLogAppEventsEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAutoLogAppEventsEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isAutoLogAppEventsEnabled", + "printedName": "_isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codelessDebugLogEnabled", + "printedName": "codelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "codelessDebugLogEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "codelessDebugLogEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setCodelessDebugLogEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isCodelessDebugLogEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isCodelessDebugLogEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsCodelessDebugLogEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isCodelessDebugLogEnabled", + "printedName": "_isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDCollectionEnabled", + "printedName": "advertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "advertiserIDCollectionEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserIDCollectionEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAdvertiserIDCollectionEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserIDCollectionEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserIDCollectionEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsAdvertiserIDCollectionEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isAdvertiserIDCollectionEnabled", + "printedName": "_isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skAdNetworkReportEnabled", + "printedName": "skAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)skAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)skAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setSkAdNetworkReportEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSKAdNetworkReportEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSKAdNetworkReportEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsSKAdNetworkReportEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isEventDataUsageLimited", + "printedName": "isEventDataUsageLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEventDataUsageLimited", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEventDataUsageLimited", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsEventDataUsageLimited:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsEventDataUsageLimited:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseCachedValuesForExpensiveMetadata", + "printedName": "shouldUseCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseCachedValuesForExpensiveMetadata", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseCachedValuesForExpensiveMetadata", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setShouldUseCachedValuesForExpensiveMetadata:", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setShouldUseCachedValuesForExpensiveMetadata:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isGraphErrorRecoveryEnabled", + "printedName": "isGraphErrorRecoveryEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isGraphErrorRecoveryEnabled", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "isGraphErrorRecoveryEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsGraphErrorRecoveryEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setIsGraphErrorRecoveryEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)appID", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appID", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)appID", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "appID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAppID:", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAppID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC5appIDSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appURLSchemeSuffix", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "appURLSchemeSuffix", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAppURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAppURLSchemeSuffix:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_appURLSchemeSuffix", + "printedName": "_appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_appURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "clientToken", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "clientToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setClientToken:", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setClientToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC11clientTokenSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_clientToken", + "printedName": "_clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_clientToken:", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC12_clientTokenSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "displayName", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "displayName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDisplayName:", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDisplayName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC11displayNameSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_displayName", + "printedName": "_displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_displayName:", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC12_displayNameSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "facebookDomainPart", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "facebookDomainPart", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setFacebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setFacebookDomainPart:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_facebookDomainPart", + "printedName": "_facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_facebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIVersion", + "printedName": "graphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIVersion", + "declAttributes": [ + "Final", + "ObjC", + "Lazy", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "graphAPIVersion", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setGraphAPIVersion:", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setGraphAPIVersion:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC15graphAPIVersionSSvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "userAgentSuffix", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "userAgentSuffix", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setUserAgentSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setUserAgentSuffix:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabled", + "printedName": "advertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "advertiserTrackingEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAdvertiserTrackingEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserTrackingEnabled", + "printedName": "isAdvertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserTrackingEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserTrackingEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsAdvertiserTrackingEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertisingTrackingStatus", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertisingTrackingStatus", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertisingTrackingStatus:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0VvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isDataProcessingRestricted", + "printedName": "isDataProcessingRestricted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isDataProcessingRestrictedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isDataProcessingRestricted", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isDataProcessingRestrictedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isDataProcessingRestricted", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "persistableDataProcessingOptions", + "printedName": "persistableDataProcessingOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit8SettingsC32persistableDataProcessingOptionsSDySSypGSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "persistableDataProcessingOptions", + "declAttributes": [ + "Final", + "ObjC", + "Lazy", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit8SettingsC32persistableDataProcessingOptionsSDySSypGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "persistableDataProcessingOptions", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDataProcessingOptions:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24setDataProcessingOptionsyySaySSGSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDataProcessingOptions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:country:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDataProcessingOptions:country:state:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24setDataProcessingOptions_7country5stateySaySSGSg_s5Int32VAJtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDataProcessingOptions:country:state:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "loggingBehaviors", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "loggingBehaviors", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setLoggingBehaviors:", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setLoggingBehaviors:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enableLoggingBehavior", + "printedName": "enableLoggingBehavior(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)enableLoggingBehavior:", + "mangledName": "$s12FBSDKCoreKit8SettingsC21enableLoggingBehavioryySo012FBSDKLoggingF0aF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableLoggingBehavior", + "printedName": "disableLoggingBehavior(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)disableLoggingBehavior:", + "mangledName": "$s12FBSDKCoreKit8SettingsC22disableLoggingBehavioryySo012FBSDKLoggingF0aF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "shouldUseTokenOptimizations", + "printedName": "shouldUseTokenOptimizations", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseTokenOptimizations", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseTokenOptimizations", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setShouldUseTokenOptimizations:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setShouldUseTokenOptimizations:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isSetATETimeExceedsInstallTime", + "printedName": "isSetATETimeExceedsInstallTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit8SettingsC30isSetATETimeExceedsInstallTimeSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "isSetATETimeExceedsInstallTime", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit8SettingsC30isSetATETimeExceedsInstallTimeSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSetATETimeExceedsInstallTime", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isATETimeSufficientlyDelayed", + "printedName": "isATETimeSufficientlyDelayed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit8SettingsC28isATETimeSufficientlyDelayedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isATETimeSufficientlyDelayed", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit8SettingsC28isATETimeSufficientlyDelayedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isATETimeSufficientlyDelayed", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)installTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC16installTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "installTimestamp", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)installTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC16installTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "installTimestamp", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabledTimestamp", + "printedName": "advertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabledTimestamp", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabledTimestamp", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParamValue", + "printedName": "graphAPIDebugParamValue", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC23graphAPIDebugParamValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "graphAPIDebugParamValue", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC23graphAPIDebugParamValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParamValue", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParameterValue", + "printedName": "graphAPIDebugParameterValue", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC27graphAPIDebugParameterValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParameterValue", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC27graphAPIDebugParameterValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParameterValue", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)init", + "mangledName": "$s12FBSDKCoreKit8SettingsCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "recordInstall", + "printedName": "recordInstall()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)recordInstall", + "mangledName": "$s12FBSDKCoreKit8SettingsC13recordInstallyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "recordInstall", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordSetAdvertiserTrackingEnabled", + "printedName": "recordSetAdvertiserTrackingEnabled()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)recordSetAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC34recordSetAdvertiserTrackingEnabledyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logWarnings", + "printedName": "logWarnings()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)logWarnings", + "mangledName": "$s12FBSDKCoreKit8SettingsC11logWarningsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logWarnings", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIfSDKSettingsChanged", + "printedName": "logIfSDKSettingsChanged()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)logIfSDKSettingsChanged", + "mangledName": "$s12FBSDKCoreKit8SettingsC23logIfSDKSettingsChangedyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logIfSDKSettingsChanged", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistedStringProperty", + "printedName": "PersistedStringProperty", + "children": [ + { + "kind": "Var", + "name": "persistenceKey", + "printedName": "persistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovp", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovg", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backingKeyPath", + "printedName": "backingKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(persistenceKey:backingKeyPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + }, + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKey07backingH4PathAeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSSSgGtcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKey07backingH4PathAeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSSSgGtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "getPersistedStringProperty", + "printedName": "getPersistedStringProperty(_:)", + "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": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC26getPersistedStringPropertyySSSgAC0efG0VF", + "mangledName": "$s12FBSDKCoreKit8SettingsC26getPersistedStringPropertyySSSgAC0efG0VF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPersistedStringProperty", + "printedName": "setPersistedStringProperty(_:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + }, + { + "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:12FBSDKCoreKit8SettingsC26setPersistedStringProperty_2toyAC0efG0V_SSSgtF", + "mangledName": "$s12FBSDKCoreKit8SettingsC26setPersistedStringProperty_2toyAC0efG0V_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistedBooleanValue", + "printedName": "PersistedBooleanValue", + "children": [ + { + "kind": "Var", + "name": "persistenceKey", + "printedName": "persistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backingKeyPath", + "printedName": "backingKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultValue", + "printedName": "defaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 2, + "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:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(persistenceKey:backingKeyPath:defaultValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + }, + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKey07backingH4Path07defaultF0AeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSbSgGSbtcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKey07backingH4Path07defaultF0AeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSbSgGSbtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "getPersistedBooleanProperty", + "printedName": "getPersistedBooleanProperty(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC27getPersistedBooleanPropertyySbAC0eF5ValueVF", + "mangledName": "$s12FBSDKCoreKit8SettingsC27getPersistedBooleanPropertyySbAC0eF5ValueVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPersistedBooleanProperty", + "printedName": "setPersistedBooleanProperty(_:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC27setPersistedBooleanProperty_2toyAC0eF5ValueV_SbtF", + "mangledName": "$s12FBSDKCoreKit8SettingsC27setPersistedBooleanProperty_2toyAC0eF5ValueV_SbtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistenceKey", + "printedName": "PersistenceKey", + "children": [ + { + "kind": "Var", + "name": "urlSchemeSuffix", + "printedName": "urlSchemeSuffix", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO15urlSchemeSuffixyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO15urlSchemeSuffixyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO11clientTokenyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO11clientTokenyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO11displayNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO11displayNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "domainPart", + "printedName": "domainPart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO10domainPartyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO10domainPartyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25isAutoLogAppEventsEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25isAutoLogAppEventsEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO31isAdvertiserIDCollectionEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO31isAdvertiserIDCollectionEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25isCodelessDebugLogEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25isCodelessDebugLogEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO16loggingBehaviorsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO16loggingBehaviorsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "appID", + "printedName": "appID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO5appIDyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO5appIDyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "jpegCompressionQuality", + "printedName": "jpegCompressionQuality", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO22jpegCompressionQualityyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO22jpegCompressionQualityyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO26isSKAdNetworkReportEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO26isSKAdNetworkReportEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25advertisingTrackingStatusyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25advertisingTrackingStatusyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "limitEventAndDataUsage", + "printedName": "limitEventAndDataUsage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO22limitEventAndDataUsageyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO22limitEventAndDataUsageyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "useCachedValuesForExpensiveMetadata", + "printedName": "useCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO35useCachedValuesForExpensiveMetadatayA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO35useCachedValuesForExpensiveMetadatayA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "useTokenOptimizations", + "printedName": "useTokenOptimizations", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO21useTokenOptimizationsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO21useTokenOptimizationsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "dataProcessingOptions", + "printedName": "dataProcessingOptions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO21dataProcessingOptionsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO21dataProcessingOptionsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "bitmask", + "printedName": "bitmask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO7bitmaskyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO7bitmaskyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO16installTimestampyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO16installTimestampyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "setAdvertiserTrackingEnabledTimestamp", + "printedName": "setAdvertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO37setAdvertiserTrackingEnabledTimestampyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO37setAdvertiserTrackingEnabledTimestampyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 18 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "appEventsConfigurationProvider", + "printedName": "appEventsConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appEventsConfigurationProvider:dataStore:eventLogger:infoDictionaryProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProvider9dataStore11eventLogger014infoDictionaryI0AESo08FBSDKAppgH9Providing_p_So19FBSDKDataPersisting_pSo17FBSDKEventLogging_pSo09FBSDKInfooQ0_ptcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProvider9dataStore11eventLogger014infoDictionaryI0AESo08FBSDKAppgH9Providing_p_So19FBSDKDataPersisting_pSo17FBSDKEventLogging_pSo09FBSDKInfooQ0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "validateConfiguration", + "printedName": "validateConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)validateConfiguration", + "mangledName": "$s12FBSDKCoreKit8SettingsC21validateConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "unconfiguredDebugMessage", + "printedName": "unconfiguredDebugMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(cpy)unconfiguredDebugMessage", + "mangledName": "$s12FBSDKCoreKit8SettingsC24unconfiguredDebugMessageSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isFromExtension": true, + "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:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(cm)unconfiguredDebugMessage", + "mangledName": "$s12FBSDKCoreKit8SettingsC24unconfiguredDebugMessageSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKSettings", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SettingsProtocol", + "printedName": "SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP" + }, + { + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SettingsProtocol", + "printedName": "SettingsProtocol", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)appID", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)appID", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAppID:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)clientToken", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)clientToken", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setClientToken:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setUserAgentSuffix:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "sdkVersion", + "printedName": "sdkVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)sdkVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP10sdkVersionSSvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)sdkVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP10sdkVersionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)displayName", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)displayName", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDisplayName:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setFacebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setLoggingBehaviors:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAppURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isDataProcessingRestricted", + "printedName": "isDataProcessingRestricted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isDataProcessingRestrictedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isDataProcessingRestrictedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isAutoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isAutoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codelessDebugLogEnabled", + "printedName": "codelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDCollectionEnabled", + "printedName": "advertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isSetATETimeExceedsInstallTime", + "printedName": "isSetATETimeExceedsInstallTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP30isSetATETimeExceedsInstallTimeSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP30isSetATETimeExceedsInstallTimeSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isATETimeSufficientlyDelayed", + "printedName": "isATETimeSufficientlyDelayed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP28isATETimeSufficientlyDelayedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP28isATETimeSufficientlyDelayedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isSKAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isSKAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertisingTrackingStatusSo016FBSDKAdvertisingfG0Vvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertisingTrackingStatusSo016FBSDKAdvertisingfG0Vvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)installTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16installTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)installTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16installTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabledTimestamp", + "printedName": "advertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEventDataUsageLimited", + "printedName": "isEventDataUsageLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsEventDataUsageLimited:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseTokenOptimizations", + "printedName": "shouldUseTokenOptimizations", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setShouldUseTokenOptimizations:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIVersion", + "printedName": "graphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setGraphAPIVersion:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isGraphErrorRecoveryEnabled", + "printedName": "isGraphErrorRecoveryEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsGraphErrorRecoveryEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParamValue", + "printedName": "graphAPIDebugParamValue", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23graphAPIDebugParamValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23graphAPIDebugParamValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParameterValue", + "printedName": "graphAPIDebugParameterValue", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27graphAPIDebugParameterValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27graphAPIDebugParameterValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabled", + "printedName": "advertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserTrackingEnabled", + "printedName": "isAdvertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseCachedValuesForExpensiveMetadata", + "printedName": "shouldUseCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setShouldUseCachedValuesForExpensiveMetadata:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "persistableDataProcessingOptions", + "printedName": "persistableDataProcessingOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP32persistableDataProcessingOptionsSDySSypGSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP32persistableDataProcessingOptionsSDySSypGSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDataProcessingOptions:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP24setDataProcessingOptionsyySaySSGSgF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:country:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDataProcessingOptions:country:state:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP24setDataProcessingOptions_7country5stateySaySSGSg_s5Int32VAJtF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSettings", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DialogConfigurationName", + "printedName": "DialogConfigurationName", + "children": [ + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO7messageSSvpZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO7messageSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit23DialogConfigurationNameO7messageSSvgZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO7messageSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO5shareSSvpZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO5shareSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit23DialogConfigurationNameO5shareSSvgZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO5shareSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareDialogConfiguration", + "printedName": "ShareDialogConfiguration", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialogConfiguration", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationVACycfc", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationVACycfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "defaultShareMode", + "printedName": "defaultShareMode", + "children": [ + { + "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:12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "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:12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "shouldUseNativeDialog", + "printedName": "shouldUseNativeDialog(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV015shouldUseNativeD003forD4NameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV015shouldUseNativeD003forD4NameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV29shouldUseSafariViewController03forD4NameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV29shouldUseSafariViewController03forD4NameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderAESo011FBSDKServerE9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderAESo011FBSDKServerE9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "synchronized", + "printedName": "synchronized(_:closure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() throws -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit12synchronized_7closureyyXl_yyKXEtKF", + "mangledName": "$s12FBSDKCoreKit12synchronized_7closureyyXl_yyKXEtKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Rethrows", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TokenCache", + "printedName": "TokenCache", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessToken", + "printedName": "accessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "accessToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "accessToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAccessToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "authenticationToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "authenticationToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAuthenticationToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCache", + "printedName": "FBSDKCoreKit.TokenCache", + "usr": "s:12FBSDKCoreKit10TokenCacheC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10TokenCacheCACycfc", + "mangledName": "$s12FBSDKCoreKit10TokenCacheCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keychainStore", + "printedName": "keychainStore", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:keychainStore:dataStore:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settings13keychainStore04dataI0AeA16SettingsProtocol_p_So013FBSDKKeychainI0_pSo19FBSDKDataPersisting_ptcfc", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settings13keychainStore04dataI0AeA16SettingsProtocol_p_So013FBSDKKeychainI0_pSo19FBSDKDataPersisting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit10TokenCacheC", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_AEMReporterProtocol", + "printedName": "_AEMReporterProtocol", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)enable", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP6enableyyFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordAndUpdate", + "printedName": "recordAndUpdate(event:currency:value:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)recordAndUpdateEvent:currency:value:parameters:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP15recordAndUpdate5event8currency5value10parametersySS_SSSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "objc_name": "recordAndUpdateEvent:currency:value:parameters:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConversionFilteringEnabled", + "printedName": "setConversionFilteringEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setConversionFilteringEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP29setConversionFilteringEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCatalogMatchingEnabled", + "printedName": "setCatalogMatchingEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setCatalogMatchingEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP25setCatalogMatchingEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAdvertiserRuleMatchInServerEnabled", + "printedName": "setAdvertiserRuleMatchInServerEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP37setAdvertiserRuleMatchInServerEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handle", + "printedName": "handle(_:)", + "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": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)handle:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP6handleyy10Foundation3URLVSgFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKAEMReporter", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_AccessTokenExpirer", + "printedName": "_AccessTokenExpirer", + "children": [ + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(py)notificationCenter", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)notificationCenter", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(notificationCenter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpirer", + "printedName": "FBSDKCoreKit._AccessTokenExpirer", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)initWithNotificationCenter:", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterACSo25_FBSDKNotificationPosting_So0H10Deliveringp_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "checkAccessTokenExpirationDate", + "printedName": "checkAccessTokenExpirationDate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)checkAccessTokenExpirationDate", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC05checkcD14ExpirationDateyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "timerDidFire", + "printedName": "timerDidFire()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)timerDidFire", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC12timerDidFireyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpirer", + "printedName": "FBSDKCoreKit._AccessTokenExpirer", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)init", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "_FBSDKAccessTokenExpirer", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_AccessTokenExpiring", + "printedName": "_AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring", + "mangledName": "$s12FBSDKCoreKit20_AccessTokenExpiringP" + }, + { + "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": "_AccessTokenExpiring", + "printedName": "_AccessTokenExpiring", + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring", + "mangledName": "$s12FBSDKCoreKit20_AccessTokenExpiringP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "_FBSDKAccessTokenExpiring", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AuthenticationServices", + "printedName": "AuthenticationServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SafariServices", + "printedName": "SafariServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPI", + "printedName": "_BridgeAPI", + "children": [ + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIResponseFactory", + "printedName": "bridgeAPIResponseFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeProvider", + "printedName": "appURLSchemeProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pendingRequest", + "printedName": "pendingRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pendingRequestCompletionBlock", + "printedName": "pendingRequestCompletionBlock", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pendingURLOpener", + "printedName": "pendingURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSession", + "printedName": "authenticationSession", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSessionCompletionHandler", + "printedName": "authenticationSessionCompletionHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSessionState", + "printedName": "authenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0OvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0OvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isExpectingBackground", + "printedName": "isExpectingBackground", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "safariViewController", + "printedName": "safariViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isDismissingSafariViewController", + "printedName": "isDismissingSafariViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isActive", + "printedName": "isActive", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6sharedACvpZ", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6sharedACvgZ", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logger:urlOpener:bridgeAPIResponseFactory:appURLSchemeProvider:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + }, + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + }, + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6logger9urlOpener24bridgeAPIResponseFactory20appURLSchemeProvider05errorJ0ACSo11FBSDKLoggerC_So22FBSDKInternalURLOpener_pAA0cI8Creating_pSo08FBSDKAppL9Providing_pSo010FBSDKErrorR0_ptcfc", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6logger9urlOpener24bridgeAPIResponseFactory20appURLSchemeProvider05errorJ0ACSo11FBSDKLoggerC_So22FBSDKInternalURLOpener_pAA0cI8Creating_pSo08FBSDKAppL9Providing_pSo010FBSDKErrorR0_ptcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bridgeAPIRequestCompletionBlock", + "printedName": "bridgeAPIRequestCompletionBlock(request:completion:)", + "children": [ + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC31bridgeAPIRequestCompletionBlock7request10completionySb_s5Error_pSgtcSo011FBSDKBridgeF0_p_ySo0L11APIResponseCctF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC31bridgeAPIRequestCompletionBlock7request10completionySb_s5Error_pSgtcSo011FBSDKBridgeF0_p_ySo0L11APIResponseCctF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURLWithAuthenticationSession", + "printedName": "openURLWithAuthenticationSession(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32openURLWithAuthenticationSession3urly10Foundation3URLV_tF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32openURLWithAuthenticationSession3urly10Foundation3URLV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSessionCompletionHandler", + "printedName": "setSessionCompletionHandler(calling:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC27setSessionCompletionHandler7callingyySb_s5Error_pSgtc_tF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC27setSessionCompletionHandler7callingyySb_s5Error_pSgtc_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearSession", + "printedName": "clearSession()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12clearSessionyyF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12clearSessionyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewControllerDidDisappear", + "printedName": "viewControllerDidDisappear(_:animated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ContainerViewController", + "printedName": "FBSDKCoreKit._ContainerViewController", + "usr": "c:objc(cs)FBSDKContainerViewController" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI(im)viewControllerDidDisappear:animated:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26viewControllerDidDisappear_8animatedySo018FBSDKContainerViewF0C_SbtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "viewControllerDidDisappear:animated:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleBridgeAPIResponse", + "printedName": "handleBridgeAPIResponse(url:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit10_BridgeAPIC06handleC11APIResponse3url17sourceApplicationSb10Foundation3URLV_SSSgtF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC06handleC11APIResponse3url17sourceApplicationSb10Foundation3URLV_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelBridgeRequest", + "printedName": "cancelBridgeRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC06cancelC7RequestyyF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC06cancelC7RequestyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI(im)init", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPICACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "applicationWillResignActive", + "printedName": "applicationWillResignActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationWillResignActive:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC27applicationWillResignActiveyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationWillResignActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationDidBecomeActive:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26applicationDidBecomeActiveyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationDidBecomeActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29applicationDidEnterBackgroundyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationDidEnterBackground:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC11application_4open17sourceApplication10annotationSbSo13UIApplicationC_10Foundation3URLVSSSgypSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:didFinishLaunchingWithOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)application:didFinishLaunchingWithOptions:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC11application_29didFinishLaunchingWithOptionsSbSo13UIApplicationC_SDySo0k6LaunchJ3KeyaypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:didFinishLaunchingWithOptions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "open", + "printedName": "open(_:sender:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + }, + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openURL:sender:handler:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC4open_6sender7handlery10Foundation3URLV_So15FBSDKURLOpening_pSgySb_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openURL:sender:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "open", + "printedName": "open(_:useSafariViewController:from:completionBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openBridgeAPIRequest:useSafariViewController:fromViewController:completionBlock:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC4open_23useSafariViewController4from15completionBlockySo21FBSDKBridgeAPIRequest_p_SbSo06UIViewI0CSgySo0M11APIResponseCctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openBridgeAPIRequest:useSafariViewController:fromViewController:completionBlock:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURLWithSafariViewController", + "printedName": "openURLWithSafariViewController(url:sender:from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "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": "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openURLWithSafariViewController:sender:fromViewController:handler:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC31openURLWithSafariViewController3url6sender4from7handlery10Foundation3URLV_So15FBSDKURLOpening_pSgSo06UIViewI0CSgySb_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openURLWithSafariViewController:sender:fromViewController:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "safariViewControllerDidFinish", + "printedName": "safariViewControllerDidFinish(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)safariViewControllerDidFinish:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29safariViewControllerDidFinishyySo08SFSafarifG0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "safariViewControllerDidFinish:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentationAnchor", + "printedName": "presentationAnchor(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIWindow", + "printedName": "UIKit.UIWindow", + "usr": "c:objc(cs)UIWindow" + }, + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationSession", + "printedName": "AuthenticationServices.ASWebAuthenticationSession", + "usr": "c:objc(cs)ASWebAuthenticationSession" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)presentationAnchorForWebAuthenticationSession:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "presentationAnchorForWebAuthenticationSession:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "_BridgeAPIProtocolNativeV1", + "children": [ + { + "kind": "Var", + "name": "appScheme", + "printedName": "appScheme", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)appScheme", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)appScheme", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataLengthThreshold", + "printedName": "dataLengthThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)dataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19dataLengthThresholdSuvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)dataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19dataLengthThresholdSuvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shouldIncludeAppIcon", + "printedName": "shouldIncludeAppIcon", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)shouldIncludeAppIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C20shouldIncludeAppIconSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)shouldIncludeAppIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C20shouldIncludeAppIconSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pasteboard", + "printedName": "pasteboard", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)pasteboard", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10pasteboardSo15FBSDKPasteboard_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)pasteboard", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10pasteboardSo15FBSDKPasteboard_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultMaxBase64DataLengthThreshold", + "printedName": "defaultMaxBase64DataLengthThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(cpy)defaultMaxBase64DataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C35defaultMaxBase64DataLengthThresholdSuvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(cm)defaultMaxBase64DataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C35defaultMaxBase64DataLengthThresholdSuvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appIcon", + "printedName": "appIcon", + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)appIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C7appIconSo7UIImageCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)appIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C7appIconSo7UIImageCSgvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appScheme:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)initWithAppScheme:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeACSSSg_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppScheme:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appScheme:pasteboard:dataLengthThreshold:shouldIncludeAppIcon:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + }, + { + "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": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appScheme10pasteboard19dataLengthThreshold20shouldIncludeAppIconACSSSg_So15FBSDKPasteboard_pSgSuSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "requestURL", + "printedName": "requestURL(actionID:scheme:methodName:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)requestURLWithActionID:scheme:methodName:parameters:error:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10requestURL8actionID6scheme10methodName10parameters10Foundation0H0VSS_S2SSDySSypGtKF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requestURLWithActionID:scheme:methodName:parameters:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "responseParameters", + "printedName": "responseParameters(actionID:queryParameters:cancelled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutablePointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutablePointer", + "printedName": "Swift.UnsafeMutablePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjCBool", + "printedName": "ObjectiveC.ObjCBool", + "usr": "s:10ObjectiveC8ObjCBoolV" + } + ], + "usr": "s:Sp" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)responseParametersForActionID:queryParameters:cancelled:error:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C18responseParameters8actionID05queryH09cancelledSDySSypGSS_AHSpy10ObjectiveC8ObjCBoolVGSgtKF", + "moduleName": "FBSDKCoreKit", + "objc_name": "responseParametersForActionID:queryParameters:cancelled:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)init", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1CACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bundle", + "printedName": "bundle", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationDeliverer", + "printedName": "notificationDeliverer", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:bundle:notificationDeliverer:internalUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactory6bundle21notificationDeliverer15internalUtilityAESo18FBSDKErrorCreating_p_So28FBSDKInfoDictionaryProviding_pSo27FBSDKNotificationDelivering_pSo013FBSDKInternalO0_ptcfc", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactory6bundle21notificationDeliverer15internalUtilityAESo18FBSDKErrorCreating_p_So28FBSDKInfoDictionaryProviding_pSo27FBSDKNotificationDelivering_pSo013FBSDKInternalO0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKBridgeAPIProtocolNativeV1", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIRequestFactory", + "printedName": "_BridgeAPIRequestFactory", + "children": [ + { + "kind": "Function", + "name": "bridgeAPIRequest", + "printedName": "bridgeAPIRequest(with:scheme:methodName:parameters:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "FBSDKBridgeAPIProtocolType", + "printedName": "FBSDKCoreKit.FBSDKBridgeAPIProtocolType", + "usr": "c:@E@FBSDKBridgeAPIProtocolType" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory(im)bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryC06bridgeD04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeD0_pSgSo0N15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIRequestFactory", + "printedName": "FBSDKCoreKit._BridgeAPIRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory(im)init", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKBridgeAPIRequestFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIResponseFactory", + "printedName": "_BridgeAPIResponseFactory", + "children": [ + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:responseURL:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponseCancelled", + "printedName": "createResponseCancelled(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25_BridgeAPIResponseFactoryC23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIResponseFactory", + "printedName": "FBSDKCoreKit._BridgeAPIResponseFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory(im)init", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BridgeAPIResponseCreating", + "printedName": "BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_DialogConfigurationMapBuilder", + "printedName": "_DialogConfigurationMapBuilder", + "children": [ + { + "kind": "Function", + "name": "buildDialogConfigurationMap", + "printedName": "buildDialogConfigurationMap(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : FBSDKCoreKit._DialogConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "_DialogConfiguration", + "printedName": "FBSDKCoreKit._DialogConfiguration", + "usr": "c:objc(cs)FBSDKDialogConfiguration" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder(im)buildDialogConfigurationMapWithRawConfigurations:", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderC05buildcdE04fromSDySSSo011FBSDKDialogD0CGSaySDySSypGG_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "buildDialogConfigurationMapWithRawConfigurations:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilder", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder(im)init", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKDialogConfigurationMapBuilder", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ErrorFactory", + "printedName": "_ErrorFactory", + "children": [ + { + "kind": "Function", + "name": "error", + "printedName": "error(code:userInfo:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)errorWithCode:userInfo:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC5error4code8userInfo7message010underlyingC0s0C0_pSi_SDySSypGSgSSSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "errorWithCode:userInfo:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(domain:code:userInfo:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)errorWithDomain:code:userInfo:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC5error6domain4code8userInfo7message010underlyingC0s0C0_pSS_SiSDySSypGSgSSSgsAJ_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "errorWithDomain:code:userInfo:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidArgumentError", + "printedName": "invalidArgumentError(name:value:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)invalidArgumentErrorWithName:value:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC015invalidArgumentC04name5value7message010underlyingC0s0C0_pSS_ypSgSSSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "invalidArgumentErrorWithName:value:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidArgumentError", + "printedName": "invalidArgumentError(domain:name:value:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)invalidArgumentErrorWithDomain:name:value:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC015invalidArgumentC06domain4name5value7message010underlyingC0s0C0_pSS_SSypSgSSSgsAJ_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "invalidArgumentErrorWithDomain:name:value:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requiredArgumentError", + "printedName": "requiredArgumentError(name:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)requiredArgumentErrorWithName:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC016requiredArgumentC04name7message010underlyingC0s0C0_pSS_SSSgsAH_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requiredArgumentErrorWithName:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requiredArgumentError", + "printedName": "requiredArgumentError(domain:name:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)requiredArgumentErrorWithDomain:name:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC016requiredArgumentC06domain4name7message010underlyingC0s0C0_pSS_S2SSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requiredArgumentErrorWithDomain:name:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unknownError", + "printedName": "unknownError(message:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)unknownErrorWithMessage:userInfo:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC07unknownC07message8userInfos0C0_pSSSg_SDySSypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "unknownErrorWithMessage:userInfo:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reportError", + "printedName": "reportError(code:domain:message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC06reportC04code6domain7messageySi_S2SSgtF", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC06reportC04code6domain7messageySi_S2SSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorFactory", + "printedName": "FBSDKCoreKit._ErrorFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)init", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "reporter", + "printedName": "reporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvp", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvg", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvs", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvM", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterAESo19FBSDKErrorReporting_p_tcfc", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterAESo19FBSDKErrorReporting_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKErrorFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_FBCloseIcon", + "printedName": "_FBCloseIcon", + "children": [ + { + "kind": "Function", + "name": "image", + "printedName": "image(size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)imageWithSize:", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC5image4sizeSo7UIImageCSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:primaryColor:secondaryColor:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)imageWithSize:primaryColor:secondaryColor:scale:", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC5image4size12primaryColor09secondaryH05scaleSo7UIImageCSgSo6CGSizeV_So7UIColorCAO12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FBCloseIcon", + "printedName": "FBSDKCoreKit._FBCloseIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)init", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKCloseIcon", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_FBLogo", + "printedName": "_FBLogo", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit7_FBLogoC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FBLogo", + "printedName": "FBSDKCoreKit._FBLogo", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo(im)init", + "mangledName": "$s12FBSDKCoreKit7_FBLogoCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo", + "mangledName": "$s12FBSDKCoreKit7_FBLogoC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKLogo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_FeatureManager", + "printedName": "_FeatureManager", + "children": [ + { + "kind": "Var", + "name": "featureManagerPrefix", + "printedName": "featureManagerPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(py)featureManagerPrefix", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07featureD6PrefixSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)featureManagerPrefix", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07featureD6PrefixSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(cpy)shared", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(cm)shared", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEnabled", + "printedName": "isEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)isEnabled:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC9isEnabledySbSo12FBSDKFeatureVF", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEnabled:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "check", + "printedName": "check(_:completionBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + }, + { + "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:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)checkFeature:completionBlock:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC5check_15completionBlockySo12FBSDKFeatureV_ySbctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "checkFeature:completionBlock:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableFeature", + "printedName": "disableFeature(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)disableFeature:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07disableC0yySo12FBSDKFeatureVF", + "moduleName": "FBSDKCoreKit", + "objc_name": "disableFeature:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "storageKey", + "printedName": "storageKey(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)storageKeyFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC10storageKey3forSSSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkGateKeeper", + "printedName": "checkGateKeeper(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)checkGateKeeperFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC15checkGateKeeper3forSbSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "defaultStatus", + "printedName": "defaultStatus(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)defaultStatusFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC13defaultStatus3forSbSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParentFeature", + "printedName": "getParentFeature(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SDKFeature?", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC09getParentC03forSo12FBSDKFeatureVSgAG_tF", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC09getParentC03forSo12FBSDKFeatureVSgAG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "featureName", + "printedName": "featureName(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)featureNameFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC11featureName3forSSSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)init", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "store", + "printedName": "store", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(gateKeeperManager:settings:store:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD08settings5storeAESo09FBSDKGateH8Managing_pXp_AA16SettingsProtocol_pSo19FBSDKDataPersisting_ptcfc", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD08settings5storeAESo09FBSDKGateH8Managing_pXp_AA16SettingsProtocol_pSo19FBSDKDataPersisting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKFeatureManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_HumanSilhouetteIcon", + "printedName": "_HumanSilhouetteIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_HumanSilhouetteIcon", + "printedName": "FBSDKCoreKit._HumanSilhouetteIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon(im)init", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKHumanSilhouetteIcon", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_MeasurementEvent", + "printedName": "_MeasurementEvent", + "children": [ + { + "kind": "Function", + "name": "postNotification", + "printedName": "postNotification(eventName:arguments:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent(im)postNotificationForEventName:args:", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventC16postNotification9eventName9argumentsySS_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "postNotificationForEventName:args:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MeasurementEvent", + "printedName": "FBSDKCoreKit._MeasurementEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent(im)init", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKMeasurementEvent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_PaymentObserver", + "printedName": "_PaymentObserver", + "children": [ + { + "kind": "Var", + "name": "isObservingTransactions", + "printedName": "isObservingTransactions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvs", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvM", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "paymentQueue", + "printedName": "paymentQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestorFactory", + "printedName": "requestorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(paymentQueue:paymentProductRequestorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserver", + "printedName": "FBSDKCoreKit._PaymentObserver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + }, + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)initWithPaymentQueue:paymentProductRequestorFactory:", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueue0E23ProductRequestorFactoryACSo09SKPaymentF0C_So012FBSDKPaymentgH8Creating_ptcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithPaymentQueue:paymentProductRequestorFactory:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startObservingTransactions", + "printedName": "startObservingTransactions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)startObservingTransactions", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC26startObservingTransactionsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "startObservingTransactions", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopObservingTransactions", + "printedName": "stopObservingTransactions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)stopObservingTransactions", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC25stopObservingTransactionsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "stopObservingTransactions", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserver", + "printedName": "FBSDKCoreKit._PaymentObserver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)init", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "paymentQueue", + "printedName": "paymentQueue(_:updatedTransactions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[StoreKit.SKPaymentTransaction]", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)paymentQueue:updatedTransactions:", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueue_19updatedTransactionsySo09SKPaymentF0C_SaySo0I11TransactionCGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "paymentQueue:updatedTransactions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleTransaction", + "printedName": "handleTransaction(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC17handleTransactionyySo09SKPaymentF0CF", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC17handleTransactionyySo09SKPaymentF0CF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKPaymentObserver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_PaymentProductRequestorFactory", + "printedName": "_PaymentProductRequestorFactory", + "children": [ + { + "kind": "Function", + "name": "createRequestor", + "printedName": "createRequestor(transaction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PaymentProductRequestor", + "printedName": "FBSDKCoreKit.PaymentProductRequestor", + "usr": "c:objc(cs)FBSDKPaymentProductRequestor" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory(im)createRequestorWithTransaction:", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC06createE011transactionSo012FBSDKPaymentdE0CSo20SKPaymentTransactionC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createRequestorWithTransaction:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorFactory", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory(im)init", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "store", + "printedName": "store", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loggerFactory", + "printedName": "loggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "productsRequestFactory", + "printedName": "productsRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appStoreReceiptProvider", + "printedName": "appStoreReceiptProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:eventLogger:gateKeeperManager:store:loggerFactory:productsRequestFactory:appStoreReceiptProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + }, + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settings11eventLogger17gateKeeperManager5store06loggerF0015productsRequestF023appStoreReceiptProviderAeA16SettingsProtocol_p_So17FBSDKEventLogging_pSo09FBSDKGateM8Managing_pXpSo19FBSDKDataPersisting_pSo21__FBSDKLoggerCreating_pSo013FBSDKProductsR8Creating_pSo08FBSDKApptU9Providing_ptcfc", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settings11eventLogger17gateKeeperManager5store06loggerF0015productsRequestF023appStoreReceiptProviderAeA16SettingsProtocol_p_So17FBSDKEventLogging_pSo09FBSDKGateM8Managing_pXpSo19FBSDKDataPersisting_pSo21__FBSDKLoggerCreating_pSo013FBSDKProductsR8Creating_pSo08FBSDKApptU9Providing_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKPaymentProductRequestorFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_RestrictiveEventFilter", + "printedName": "_RestrictiveEventFilter", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(py)eventName", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventNameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)eventName", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventNameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "restrictiveParameters", + "printedName": "restrictiveParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(py)restrictiveParameters", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC21restrictiveParametersSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)restrictiveParameters", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC21restrictiveParametersSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventName:restrictiveParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_RestrictiveEventFilter", + "printedName": "FBSDKCoreKit._RestrictiveEventFilter", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)initWithEventName:restrictiveParameters:", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventName21restrictiveParametersACSS_SDySSypGtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEventName:restrictiveParameters:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_RestrictiveEventFilter", + "printedName": "FBSDKCoreKit._RestrictiveEventFilter", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)init", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKRestrictiveEventFilter", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_SKAdNetworkEvent", + "printedName": "_SKAdNetworkEvent", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(py)eventName", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC9eventNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)eventName", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC9eventNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(py)values", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)values", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)setValues:", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvM", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "_SKAdNetworkEvent", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)initWithJSON:", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC4jsonACSgSDySSypG_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithJSON:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_SKAdNetworkEvent", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)init", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKSKAdNetworkEvent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_ViewImpressionLogger", + "printedName": "_ViewImpressionLogger", + "children": [ + { + "kind": "Var", + "name": "impressionTrackers", + "printedName": "impressionTrackers", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cpy)impressionTrackers", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)impressionTrackers", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)setImpressionTrackers:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(py)eventName", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameSo013FBSDKAppEventG0avp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)eventName", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameSo013FBSDKAppEventG0avg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "trackedImpressions", + "printedName": "trackedImpressions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(py)trackedImpressions", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)trackedImpressions", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)setTrackedImpressions:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)initWithEventName:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameACSo013FBSDKAppEventG0a_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEventName:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "retrieveLogger", + "printedName": "retrieveLogger(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)retrieveLoggerWith:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC08retrieveE04withACSo17FBSDKAppEventNamea_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC29applicationDidEnterBackgroundyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logImpression", + "printedName": "logImpression(withIdentifier:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)logImpressionWithIdentifier:parameters:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC03logD014withIdentifier10parametersySS_SDySo26FBSDKAppEventParameterNameaypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logImpressionWithIdentifier:parameters:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)init", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationDeliverer", + "printedName": "notificationDeliverer", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tokenWallet", + "printedName": "tokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(graphRequestFactory:eventLogger:notificationDeliverer:tokenWallet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactory05eventE021notificationDeliverer11tokenWalletAESo010FBSDKGraphiJ0_p_So17FBSDKEventLogging_pSo27FBSDKNotificationDelivering_pSo25FBSDKAccessTokenProviding_pXptcfc", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactory05eventE021notificationDeliverer11tokenWalletAESo010FBSDKGraphiJ0_p_So17FBSDKEventLogging_pSo27FBSDKNotificationDelivering_pSo25FBSDKAccessTokenProviding_pXptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKViewImpressionLogger", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_WebDialog", + "printedName": "_WebDialog", + "children": [ + { + "kind": "Var", + "name": "shouldDeferVisibility", + "printedName": "shouldDeferVisibility", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)shouldDeferVisibility", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)shouldDeferVisibility", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setShouldDeferVisibility:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKCoreKit.WebDialogDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)delegate", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.WebDialogDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebDialogDelegate", + "printedName": "FBSDKCoreKit.WebDialogDelegate", + "usr": "c:objc(pl)FBSDKWebDialogDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)delegate", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.WebDialogDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebDialogDelegate", + "printedName": "FBSDKCoreKit.WebDialogDelegate", + "usr": "c:objc(pl)FBSDKWebDialogDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setDelegate:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)name", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)name", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setName:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC4nameSSvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "webViewFrame", + "printedName": "webViewFrame", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)webViewFrame", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webViewFrame", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setWebViewFrame:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)parameters", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)parameters", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setParameters:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "backgroundView", + "printedName": "backgroundView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)backgroundView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)backgroundView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setBackgroundView:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dialogView", + "printedName": "dialogView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)dialogView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)dialogView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setDialogView:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)path", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)path", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setPath:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC4pathSSSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:parameters:webViewFrame:path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)initWithName:parameters:webViewFrame:path:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4name10parameters12webViewFrame4pathACSS_SDyS2SGSgSo6CGRectVSSSgtcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)initWithName:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)show", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4showyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addObservers", + "printedName": "addObservers()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)addObservers", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12addObserversyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deviceOrientationDidChangeNotification", + "printedName": "deviceOrientationDidChangeNotification(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)deviceOrientationDidChangeNotification:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC38deviceOrientationDidChangeNotificationyy10Foundation0I0VF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeObservers", + "printedName": "removeObservers()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)removeObservers", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC15removeObserversyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)cancel", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC6cancelyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "complete", + "printedName": "complete(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)completeWith:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8complete4withySDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismiss", + "printedName": "dismiss(animated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)dismissWithAnimated:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC7dismiss8animatedySb_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fail", + "printedName": "fail(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)failWith:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4fail4withys5Error_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateURL", + "printedName": "generateURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)generateURLAndReturnError:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC11generateURL10Foundation0F0VyKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showWebView", + "printedName": "showWebView()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)showWebView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC04showC4ViewyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationFrameForOrientation", + "printedName": "applicationFrameForOrientation()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)applicationFrameForOrientation", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC30applicationFrameForOrientationSo6CGRectVyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateView", + "printedName": "updateView(scale:alpha:animationDuration:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "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:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)updateViewWithScale:alpha:animationDuration:completion:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10updateView5scale5alpha17animationDuration10completiony12CoreGraphics7CGFloatV_AKSdySbcSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)init", + "mangledName": "$s12FBSDKCoreKit10_WebDialogCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "webDialogView", + "printedName": "webDialogView(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogView:didCompleteWithResults:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD4View_22didCompleteWithResultsySo08FBSDKWebdF0C_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogView:didCompleteWithResults:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogView", + "printedName": "webDialogView(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogView:didFailWithError:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD4View_16didFailWithErrorySo08FBSDKWebdF0C_s0J0_ptF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogView:didFailWithError:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogViewDidCancel", + "printedName": "webDialogViewDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogViewDidCancel:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD13ViewDidCancelyySo08FBSDKWebdF0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogViewDidCancel:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogViewDidFinishLoad", + "printedName": "webDialogViewDidFinishLoad(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogViewDidFinishLoad:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD17ViewDidFinishLoadyySo08FBSDKWebdF0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogViewDidFinishLoad:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "windowFinder", + "printedName": "windowFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:windowFinder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactory12windowFinderAESo18FBSDKErrorCreating_p_So19_FBSDKWindowFinding_ptcfc", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactory12windowFinderAESo18FBSDKErrorCreating_p_So19_FBSDKWindowFinding_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKWebDialog", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_WebViewFactory", + "printedName": "_WebViewFactory", + "children": [ + { + "kind": "Function", + "name": "createWebView", + "printedName": "createWebView(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebView", + "printedName": "FBSDKCoreKit.WebView", + "usr": "c:objc(pl)FBSDKWebView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory(im)createWebViewWithFrame:", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryC06createcD05frameSo08FBSDKWebD0_pSo6CGRectV_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createWebViewWithFrame:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewFactory", + "printedName": "FBSDKCoreKit._WebViewFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory(im)init", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKWebViewFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AccessToken", + "printedName": "AccessToken", + "children": [ + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "expiredPermissions", + "printedName": "expiredPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hasGranted", + "printedName": "hasGranted(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "declKind": "Func", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE10hasGrantedySbAC10PermissionOF", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE10hasGrantedySbAC10PermissionOF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAccessToken", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAccessToken", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ASWebAuthenticationSession", + "printedName": "ASWebAuthenticationSession", + "declKind": "Class", + "usr": "c:objc(cs)ASWebAuthenticationSession", + "moduleName": "AuthenticationServices", + "isOpen": true, + "intro_iOS": "12.0", + "objc_name": "ASWebAuthenticationSession", + "declAttributes": [ + "Available", + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "AuthenticationSessionProtocol", + "printedName": "AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Comparable", + "printedName": "Comparable", + "children": [ + { + "kind": "Function", + "name": "fb_clamped", + "printedName": "fb_clamped(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ClosedRange", + "printedName": "Swift.ClosedRange<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SN" + } + ], + "declKind": "Func", + "usr": "s:SL12FBSDKCoreKitE10fb_clamped2toxSNyxG_tF", + "mangledName": "$sSL12FBSDKCoreKitE10fb_clamped2toxSNyxG_tF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:SL", + "mangledName": "$sSL", + "moduleName": "Swift", + "genericSig": "<τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AEMReporter", + "printedName": "AEMReporter", + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter", + "mangledName": "$s8FBAEMKit11AEMReporterC", + "moduleName": "FBAEMKit", + "objc_name": "FBAEMReporter", + "declAttributes": [ + "Final", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_AEMReporterProtocol", + "printedName": "_AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP" + }, + { + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLink.swift", + "kind": "StringLiteral", + "offset": 396, + "length": 7, + "value": "\"FBSDKCoreKit.AppLink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10839, + "length": 17, + "value": "\"outputURLScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10884, + "length": 11, + "value": "\"outputURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10923, + "length": 11, + "value": "\"sourceURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10963, + "length": 12, + "value": "\"sourceHost\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11006, + "length": 14, + "value": "\"sourceScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11046, + "length": 9, + "value": "\"success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11078, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11108, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11175, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11204, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 609, + "length": 17, + "value": "\"FBSDKCoreKit.AppLinkNavigation\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 671, + "length": 5, + "value": "\"url\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 708, + "length": 14, + "value": "\"app_store_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 751, + "length": 10, + "value": "\"app_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 5, + "value": "\"web\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 810, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 840, + "length": 8, + "value": "\"iphone\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 871, + "length": 6, + "value": "\"ipad\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 910, + "length": 17, + "value": "\"should_fallback\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 954, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 493, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 493, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 318, + "length": 29, + "value": "\"FBSDKCoreKit.AppLinkResolverRequestBuilder\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkTarget.swift", + "kind": "StringLiteral", + "offset": 419, + "length": 13, + "value": "\"FBSDKCoreKit.AppLinkTarget\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 908, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 954, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 1141, + "length": 31, + "value": "\"com.facebook.sdk.kits.bitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18010, + "length": 15, + "value": "\"fb_al_inbound\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18059, + "length": 17, + "value": "\"fb_auto_applink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18210, + "length": 11, + "value": "\"targetURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18257, + "length": 15, + "value": "\"targetURLHost\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18312, + "length": 19, + "value": "\"referralTargetURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18365, + "length": 13, + "value": "\"referralURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18416, + "length": 17, + "value": "\"referralAppName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18464, + "length": 10, + "value": "\"inputURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18511, + "length": 16, + "value": "\"inputURLScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18567, + "length": 19, + "value": "\"core_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18631, + "length": 20, + "value": "\"login_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18700, + "length": 24, + "value": "\"marketing_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18773, + "length": 24, + "value": "\"messenger_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18843, + "length": 21, + "value": "\"places_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18909, + "length": 20, + "value": "\"share_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18971, + "length": 17, + "value": "\"tv_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 19024, + "length": 15, + "value": "\"SchemeWarning\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 369, + "length": 5, + "value": "\"aud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 398, + "length": 7, + "value": "\"email\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 427, + "length": 5, + "value": "\"exp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 461, + "length": 13, + "value": "\"family_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 502, + "length": 12, + "value": "\"given_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 5, + "value": "\"iat\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 563, + "length": 5, + "value": "\"iss\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 590, + "length": 5, + "value": "\"jti\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 624, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 660, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 690, + "length": 7, + "value": "\"nonce\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 723, + "length": 9, + "value": "\"picture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 754, + "length": 5, + "value": "\"sub\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 790, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 837, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 925, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 969, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1011, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1053, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1125, + "length": 14, + "value": "\"facebook.com\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1173, + "length": 15, + "value": "\".facebook.com\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 287, + "length": 25, + "value": "\"FBSDKCoreKit.AuthenticationTokenClaims\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BackgroundEventLogger.swift", + "kind": "StringLiteral", + "offset": 327, + "length": 37, + "value": "\"BGTaskSchedulerPermittedIdentifiers\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BackgroundEventLogger.swift", + "kind": "StringLiteral", + "offset": 1623, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13668, + "length": 74, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13700, + "length": 1, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13735, + "length": 5, + "value": "\"nil\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13741, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 444, + "length": 7, + "value": "\"event\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 529, + "length": 18, + "value": "\"deprecated_param\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 583, + "length": 21, + "value": "\"is_deprecated_event\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "BooleanLiteral", + "offset": 653, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "BooleanLiteral", + "offset": 1361, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1349, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1460, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "StringLiteral", + "offset": 1543, + "length": 4, + "value": "\"me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 32, + "value": "\"fb_mobile_achievement_unlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 24, + "value": "\"fb_mobile_activate_app\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 28, + "value": "\"fb_mobile_add_payment_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 23, + "value": "\"fb_mobile_add_to_cart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 27, + "value": "\"fb_mobile_add_to_wishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 33, + "value": "\"fb_mobile_complete_registration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 633, + "length": 24, + "value": "\"fb_mobile_content_view\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 30, + "value": "\"fb_mobile_initiated_checkout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 739, + "length": 26, + "value": "\"fb_mobile_level_achieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 20, + "value": "\"fb_mobile_purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 16, + "value": "\"fb_mobile_rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 856, + "length": 18, + "value": "\"fb_mobile_search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 897, + "length": 25, + "value": "\"fb_mobile_spent_credits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 31, + "value": "\"fb_mobile_tutorial_completion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 32, + "value": "\"fb_mobile_achievement_unlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 24, + "value": "\"fb_mobile_activate_app\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 28, + "value": "\"fb_mobile_add_payment_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 23, + "value": "\"fb_mobile_add_to_cart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 27, + "value": "\"fb_mobile_add_to_wishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 33, + "value": "\"fb_mobile_complete_registration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 633, + "length": 24, + "value": "\"fb_mobile_content_view\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 30, + "value": "\"fb_mobile_initiated_checkout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 739, + "length": 26, + "value": "\"fb_mobile_level_achieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 20, + "value": "\"fb_mobile_purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 16, + "value": "\"fb_mobile_rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 856, + "length": 18, + "value": "\"fb_mobile_search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 897, + "length": 25, + "value": "\"fb_mobile_spent_credits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 31, + "value": "\"fb_mobile_tutorial_completion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1036, + "length": 10, + "value": "\"_logTime\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1066, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 13, + "value": "\"_valueToSum\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1165, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1202, + "length": 17, + "value": "\"fb_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1241, + "length": 16, + "value": "\"fb_description\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1273, + "length": 10, + "value": "\"fb_level\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 21, + "value": "\"fb_max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 14, + "value": "\"fb_num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1393, + "length": 27, + "value": "\"fb_payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 24, + "value": "\"fb_registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 18, + "value": "\"fb_search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 12, + "value": "\"fb_success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 13, + "value": "\"fb_order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1620, + "length": 13, + "value": "\"fb_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1036, + "length": 10, + "value": "\"_logTime\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1066, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 13, + "value": "\"_valueToSum\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1165, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1202, + "length": 17, + "value": "\"fb_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1241, + "length": 16, + "value": "\"fb_description\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1273, + "length": 10, + "value": "\"fb_level\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 21, + "value": "\"fb_max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 14, + "value": "\"fb_num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1393, + "length": 27, + "value": "\"fb_payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 24, + "value": "\"fb_registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 18, + "value": "\"fb_search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 12, + "value": "\"fb_success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 13, + "value": "\"fb_order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1620, + "length": 13, + "value": "\"fb_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1988, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 13, + "value": "\"app_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2053, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2085, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2203, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2248, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2340, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2396, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2489, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2534, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2575, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1988, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 13, + "value": "\"app_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2053, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2085, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2203, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2248, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2340, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2396, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2489, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2534, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2575, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2754, + "length": 11, + "value": "\"user_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 10, + "value": "\"app_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2814, + "length": 13, + "value": "\"custom_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2850, + "length": 15, + "value": "\"custom_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2754, + "length": 11, + "value": "\"user_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 10, + "value": "\"app_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2814, + "length": 13, + "value": "\"custom_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2850, + "length": 15, + "value": "\"custom_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2962, + "length": 12, + "value": "\"event_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2994, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3027, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3078, + "length": 14, + "value": "\"content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3149, + "length": 18, + "value": "\"max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3186, + "length": 11, + "value": "\"num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3228, + "length": 24, + "value": "\"payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3281, + "length": 21, + "value": "\"registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 15, + "value": "\"search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3373, + "length": 10, + "value": "\"order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3400, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2962, + "length": 12, + "value": "\"event_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2994, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3027, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3078, + "length": 14, + "value": "\"content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3149, + "length": 18, + "value": "\"max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3186, + "length": 11, + "value": "\"num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3228, + "length": 24, + "value": "\"payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3281, + "length": 21, + "value": "\"registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 15, + "value": "\"search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3373, + "length": 10, + "value": "\"order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3400, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3516, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 13, + "value": "\"fb_login_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3588, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3624, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3664, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3751, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3805, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3843, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3899, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3946, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3992, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4037, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4078, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4148, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3516, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 13, + "value": "\"fb_login_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3588, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3624, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3664, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3751, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3805, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3843, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3899, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3946, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3992, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4037, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4078, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4148, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4234, + "length": 21, + "value": "\"AchievementUnlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4277, + "length": 13, + "value": "\"ActivateApp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4315, + "length": 16, + "value": "\"AddPaymentInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4351, + "length": 11, + "value": "\"AddToCart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4386, + "length": 15, + "value": "\"AddToWishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4432, + "length": 22, + "value": "\"CompleteRegistration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4476, + "length": 13, + "value": "\"ViewContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 18, + "value": "\"InitiateCheckout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4558, + "length": 15, + "value": "\"LevelAchieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4592, + "length": 10, + "value": "\"Purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4617, + "length": 6, + "value": "\"Rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4640, + "length": 8, + "value": "\"Search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4671, + "length": 14, + "value": "\"SpentCredits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4714, + "length": 20, + "value": "\"TutorialCompletion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4234, + "length": 21, + "value": "\"AchievementUnlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4277, + "length": 13, + "value": "\"ActivateApp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4315, + "length": 16, + "value": "\"AddPaymentInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4351, + "length": 11, + "value": "\"AddToCart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4386, + "length": 15, + "value": "\"AddToWishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4432, + "length": 22, + "value": "\"CompleteRegistration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4476, + "length": 13, + "value": "\"ViewContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 18, + "value": "\"InitiateCheckout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4558, + "length": 15, + "value": "\"LevelAchieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4592, + "length": 10, + "value": "\"Purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4617, + "length": 6, + "value": "\"Rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4640, + "length": 8, + "value": "\"Search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4671, + "length": 14, + "value": "\"SpentCredits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4714, + "length": 20, + "value": "\"TutorialCompletion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 15, + "value": "\"action_source\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4861, + "length": 18, + "value": "\"MobileAppInstall\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4906, + "length": 19, + "value": "\"install_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 15, + "value": "\"action_source\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4861, + "length": 18, + "value": "\"MobileAppInstall\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4906, + "length": 19, + "value": "\"install_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8628, + "length": 25, + "value": "\"data_processing_options\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8673, + "length": 33, + "value": "\"data_processing_options_country\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8724, + "length": 31, + "value": "\"data_processing_options_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8628, + "length": 25, + "value": "\"data_processing_options\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8673, + "length": 33, + "value": "\"data_processing_options_country\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8724, + "length": 31, + "value": "\"data_processing_options_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 10, + "value": "\"endpoint\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 12, + "value": "\"is_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 377, + "length": 12, + "value": "\"dataset_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 12, + "value": "\"access_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 10, + "value": "\"endpoint\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 12, + "value": "\"is_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 377, + "length": 12, + "value": "\"dataset_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 12, + "value": "\"access_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 22, + "value": "\"cloudbridge_settings\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 736, + "length": 20, + "value": "\"capi_gateway_queue\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "BooleanLiteral", + "offset": 849, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "BooleanLiteral", + "offset": 1029, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "Array", + "offset": 1083, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "IntegerLiteral", + "offset": 1163, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "StringLiteral", + "offset": 380, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 423, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 482, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "Array", + "offset": 518, + "length": 192, + "value": "[1009, 1004, 429, 503, 504]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "Array", + "offset": 977, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 485, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 569, + "length": 20, + "value": "\"oauth\/access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 12, + "value": "\"grant_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 654, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 689, + "length": 11, + "value": "\"client_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 728, + "length": 12, + "value": "\"expires_at\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 29, + "value": "\"data_access_expiration_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 841, + "length": 12, + "value": "\"permission\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 878, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 912, + "length": 9, + "value": "\"granted\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 948, + "length": 10, + "value": "\"declined\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 984, + "length": 9, + "value": "\"expired\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1077, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1082, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1087, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1159, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1164, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1211, + "length": 21, + "value": "\"fb_extend_sso_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1311, + "length": 16, + "value": "\"me\/permissions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1370, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/MACARuleMatchingManager.swift", + "kind": "BooleanLiteral", + "offset": 357, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/MACARuleMatchingManager.swift", + "kind": "Array", + "offset": 422, + "length": 262, + "value": "[\"event\", \"_locale\", \"_appVersion\", \"_deviceOS\", \"_platform\", \"_deviceModel\", \"_nativeAppID\", \"_nativeAppShortVersion\", \"_timezone\", \"_carrier\", \"_deviceOSTypeName\", \"_deviceOSVersion\", \"_remainingDiskGB\"]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7931, + "length": 16, + "value": "\"public_profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 15, + "value": "\"user_about_me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8060, + "length": 20, + "value": "\"user_actions.books\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8109, + "length": 21, + "value": "\"user_action.fitness\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8157, + "length": 20, + "value": "\"user_actions.music\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 19, + "value": "\"user_actions.news\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8249, + "length": 20, + "value": "\"user_actions.video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8292, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8338, + "length": 24, + "value": "\"user_education_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8383, + "length": 13, + "value": "\"user_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8424, + "length": 21, + "value": "\"user_games_activity\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8466, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8502, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8537, + "length": 12, + "value": "\"user_likes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8572, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8615, + "length": 21, + "value": "\"user_managed_groups\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8657, + "length": 13, + "value": "\"user_photos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8690, + "length": 12, + "value": "\"user_posts\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8730, + "length": 20, + "value": "\"user_relationships\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8784, + "length": 27, + "value": "\"user_relationship_details\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8842, + "length": 24, + "value": "\"user_religion_politics\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8893, + "length": 20, + "value": "\"user_tagged_places\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8934, + "length": 13, + "value": "\"user_videos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8969, + "length": 14, + "value": "\"user_website\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9009, + "length": 19, + "value": "\"user_work_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9060, + "length": 25, + "value": "\"read_custom_friendlists\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9108, + "length": 15, + "value": "\"read_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 32, + "value": "\"read_audience_network_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9221, + "length": 21, + "value": "\"read_page_mailboxes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9266, + "length": 17, + "value": "\"pages_show_list\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9308, + "length": 18, + "value": "\"pages_manage_cta\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 31, + "value": "\"pages_manage_instant_articles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9412, + "length": 10, + "value": "\"ads_read\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9441, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9475, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7931, + "length": 16, + "value": "\"public_profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 15, + "value": "\"user_about_me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8060, + "length": 20, + "value": "\"user_actions.books\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8109, + "length": 21, + "value": "\"user_action.fitness\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8157, + "length": 20, + "value": "\"user_actions.music\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 19, + "value": "\"user_actions.news\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8249, + "length": 20, + "value": "\"user_actions.video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8292, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8338, + "length": 24, + "value": "\"user_education_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8383, + "length": 13, + "value": "\"user_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8424, + "length": 21, + "value": "\"user_games_activity\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8466, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8502, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8537, + "length": 12, + "value": "\"user_likes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8572, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8615, + "length": 21, + "value": "\"user_managed_groups\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8657, + "length": 13, + "value": "\"user_photos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8690, + "length": 12, + "value": "\"user_posts\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8730, + "length": 20, + "value": "\"user_relationships\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8784, + "length": 27, + "value": "\"user_relationship_details\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8842, + "length": 24, + "value": "\"user_religion_politics\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8893, + "length": 20, + "value": "\"user_tagged_places\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8934, + "length": 13, + "value": "\"user_videos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8969, + "length": 14, + "value": "\"user_website\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9009, + "length": 19, + "value": "\"user_work_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9060, + "length": 25, + "value": "\"read_custom_friendlists\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9108, + "length": 15, + "value": "\"read_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 32, + "value": "\"read_audience_network_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9221, + "length": 21, + "value": "\"read_page_mailboxes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9266, + "length": 17, + "value": "\"pages_show_list\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9308, + "length": 18, + "value": "\"pages_manage_cta\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 31, + "value": "\"pages_manage_instant_articles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9412, + "length": 10, + "value": "\"ads_read\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9441, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9475, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 591, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 699, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 806, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 5, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 591, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 699, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 806, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 5, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2718, + "length": 7, + "value": "\"graph\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2748, + "length": 9, + "value": "\"picture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2857, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2857, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 292, + "length": 12, + "value": "\"MM\/dd\/yyyy\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5901, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5957, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6060, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6095, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6129, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5901, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5957, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6060, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6095, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6129, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6238, + "length": 4, + "value": "\"me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6275, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6316, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6378, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6404, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6439, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6473, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6505, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6378, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6404, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6439, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6473, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6505, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6725, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6744, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6763, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ProfileProviding.swift", + "kind": "StringLiteral", + "offset": 2627, + "length": 46, + "value": "\"com.facebook.sdk.FBSDKProfile.currentProfile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile.swift", + "kind": "BooleanLiteral", + "offset": 3836, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile.swift", + "kind": "StringLiteral", + "offset": 858, + "length": 7, + "value": "\"FBSDKCoreKit.Profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "BooleanLiteral", + "offset": 365, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "Array", + "offset": 426, + "length": 3246, + "value": "[\"_currency\", \"_valueToSum\", \"fb_availability\", \"fb_body_style\", \"fb_checkin_date\", \"fb_checkout_date\", \"fb_city\", \"fb_condition_of_vehicle\", \"fb_content_category\", \"fb_content_ids\", \"fb_content_name\", \"fb_content_type\", \"fb_contents\", \"fb_country\", \"fb_currency\", \"fb_delivery_category\", \"fb_departing_arrival_date\", \"fb_departing_departure_date\", \"fb_destination_airport\", \"fb_destination_ids\", \"fb_dma_code\", \"fb_drivetrain\", \"fb_exterior_color\", \"fb_fuel_type\", \"fb_hotel_score\", \"fb_interior_color\", \"fb_lease_end_date\", \"fb_lease_start_date\", \"fb_listing_type\", \"fb_make\", \"fb_mileage.unit\", \"fb_mileage.value\", \"fb_model\", \"fb_neighborhood\", \"fb_num_adults\", \"fb_num_children\", \"fb_num_infants\", \"fb_num_items\", \"fb_order_id\", \"fb_origin_airport\", \"fb_postal_code\", \"fb_predicted_ltv\", \"fb_preferred_baths_range\", \"fb_preferred_beds_range\", \"fb_preferred_neighborhoods\", \"fb_preferred_num_stops\", \"fb_preferred_price_range\", \"fb_preferred_star_ratings\", \"fb_price\", \"fb_property_type\", \"fb_region\", \"fb_returning_arrival_date\", \"fb_returning_departure_date\", \"fb_search_string\", \"fb_state_of_vehicle\", \"fb_status\", \"fb_suggested_destinations\", \"fb_suggested_home_listings\", \"fb_suggested_hotels\", \"fb_suggested_jobs\", \"fb_suggested_local_service_businesses\", \"fb_suggested_location_based_items\", \"fb_suggested_vehicles\", \"fb_transmission\", \"fb_travel_class\", \"fb_travel_end\", \"fb_travel_start\", \"fb_trim\", \"fb_user_bucket\", \"fb_value\", \"fb_vin\", \"fb_year\", \"lead_event_source\", \"predicted_ltv\", \"product_catalog_id\", \"app_user_id\", \"appVersion\", \"_eventName\", \"_eventName_md5\", \"_currency\", \"_implicitlyLogged\", \"_inBackground\", \"_isTimedEvent\", \"_logTime\", \"fb_order_id\", \"_session_id\", \"_ui\", \"_valueToSum\", \"_valueToUpdate\", \"_is_fb_codeless\", \"_is_suggested_event\", \"_fb_pixel_referral_id\", \"fb_pixel_id\", \"trace_id\", \"user_agent\", \"subscription_id\", \"predicted_ltv\", \"event_id\", \"_restrictedParams\", \"_onDeviceParams\", \"purchase_valid_result_type\", \"core_lib_included\", \"login_lib_included\", \"share_lib_included\", \"place_lib_included\", \"messenger_lib_included\", \"applinks_lib_included\", \"marketing_lib_included\", \"_codeless_action\", \"sdk_initialized\", \"billing_client_lib_included\", \"billing_service_lib_included\", \"user_data_keys\", \"device_push_token\", \"fb_mobile_pckg_fp\", \"fb_mobile_app_cert_hash\", \"aggregate_id\", \"anonymous_id\", \"campaign_ids\", \"fb_post_attachment\", \"receipt_data\", \"ad_type\", \"fb_content\", \"fb_content_id\", \"fb_content_type\", \"fb_currency\", \"fb_description\", \"fb_level\", \"fb_max_rating_value\", \"fb_num_items\", \"fb_order_id\", \"fb_payment_info_available\", \"fb_registration_method\", \"fb_search_string\", \"fb_success\", \"pm\", \"_audiencePropertyIds\", \"cs_maca\"]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "Array", + "offset": 3721, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 3661, + "length": 460, + "value": "\": Please set a value for FacebookAutoLogAppEventsEnabled. Set the flag to TRUE if you want to collect app install, app launch and in-app purchase events automatically. To request user consent before collecting data, set the flag value to FALSE, then change to TRUE once user consent is received. Learn more: https:\/\/developers.facebook.com\/docs\/app-events\/getting-started-app-events-ios#disable-auto-events.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 209, + "value": "\": You haven't set a value for FacebookAdvertiserIDCollectionEnabled. Set the flag to TRUE if you want to collect Advertiser ID for better advertising and analytics results.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4441, + "length": 250, + "value": "\": The value for FacebookAdvertiserIDCollectionEnabled is currently set to FALSE so you're sending app events without collecting Advertiser ID. This can affect the quality of your advertising and analytics results.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4842, + "length": 7, + "value": "\"usage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4897, + "length": 9, + "value": "\"initial\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4955, + "length": 10, + "value": "\"previous\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 5013, + "length": 9, + "value": "\"current\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2021, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2222, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2405, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 25, + "value": "\"FacebookUrlSchemeSuffix\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 340, + "length": 21, + "value": "\"FacebookClientToken\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 21, + "value": "\"FacebookDisplayName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 20, + "value": "\"FacebookDomainPart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 33, + "value": "\"FacebookAutoLogAppEventsEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 39, + "value": "\"FacebookAdvertiserIDCollectionEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 33, + "value": "\"FacebookCodelessDebugLogEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 703, + "length": 25, + "value": "\"FacebookLoggingBehavior\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 746, + "length": 15, + "value": "\"FacebookAppID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 796, + "length": 32, + "value": "\"FacebookJpegCompressionQuality\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 867, + "length": 34, + "value": "\"FacebookSKAdNetworkReportEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 939, + "length": 57, + "value": "\"com.facebook.sdk:FBSDKSettingsAdvertisingTrackingStatus\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 54, + "value": "\"com.facebook.sdk:FBSDKSettingsLimitEventAndDataUsage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 67, + "value": "\"com.facebook.sdk:FBSDKSettingsUseCachedValuesForExpensiveMetadata\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 53, + "value": "\"com.facebook.sdk.FBSDKSettingsUseTokenOptimizations\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 53, + "value": "\"com.facebook.sdk:FBSDKSettingsDataProcessingOptions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1394, + "length": 39, + "value": "\"com.facebook.sdk:FBSDKSettingsBitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKSettingsInstallTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1560, + "length": 69, + "value": "\"com.facebook.sdk:FBSDKSettingsSetAdvertiserTrackingEnabledTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 25, + "value": "\"FacebookUrlSchemeSuffix\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 340, + "length": 21, + "value": "\"FacebookClientToken\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 21, + "value": "\"FacebookDisplayName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 20, + "value": "\"FacebookDomainPart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 33, + "value": "\"FacebookAutoLogAppEventsEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 39, + "value": "\"FacebookAdvertiserIDCollectionEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 33, + "value": "\"FacebookCodelessDebugLogEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 703, + "length": 25, + "value": "\"FacebookLoggingBehavior\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 746, + "length": 15, + "value": "\"FacebookAppID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 796, + "length": 32, + "value": "\"FacebookJpegCompressionQuality\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 867, + "length": 34, + "value": "\"FacebookSKAdNetworkReportEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 939, + "length": 57, + "value": "\"com.facebook.sdk:FBSDKSettingsAdvertisingTrackingStatus\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 54, + "value": "\"com.facebook.sdk:FBSDKSettingsLimitEventAndDataUsage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 67, + "value": "\"com.facebook.sdk:FBSDKSettingsUseCachedValuesForExpensiveMetadata\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 53, + "value": "\"com.facebook.sdk.FBSDKSettingsUseTokenOptimizations\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 53, + "value": "\"com.facebook.sdk:FBSDKSettingsDataProcessingOptions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1394, + "length": 39, + "value": "\"com.facebook.sdk:FBSDKSettingsBitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKSettingsInstallTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1560, + "length": 69, + "value": "\"com.facebook.sdk:FBSDKSettingsSetAdvertiserTrackingEnabledTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "FloatLiteral", + "offset": 1347, + "length": 3, + "value": "0.9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 5615, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 6356, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 7159, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 7308, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "StringLiteral", + "offset": 12338, + "length": 5, + "value": "\"ldu\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 16945, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "StringLiteral", + "offset": 20579, + "length": 391, + "value": "\"As of v9.0, you must initialize the SDK prior to calling any methods or setting any properties. You can do this by calling `ApplicationDelegate.application(_:didFinishLaunchingWithOptions:)`. Learn more: https:\/\/developers.facebook.com\/docs\/ios\/getting-started. If no `UIApplication` instance is available, you can use `ApplicationDelegate.initializeSDK()`.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ShareDialogConfiguration.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ShareDialogConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 314, + "length": 52, + "value": "\"com.facebook.sdk.v4.FBSDKAccessTokenInformationKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 404, + "length": 60, + "value": "\"com.facebook.sdk.v4.FBSDKAccessTokenInformationKeychainKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 514, + "length": 60, + "value": "\"com.facebook.sdk.v9.FBSDKAuthenticationTokenInformationKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 620, + "length": 68, + "value": "\"com.facebook.sdk.v9.FBSDKAuthenticationTokenInformationKeychainKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 716, + "length": 11, + "value": "\"tokenUUID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 758, + "length": 14, + "value": "\"tokenEncoded\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/_AccessTokenExpirer.swift", + "kind": "StringLiteral", + "offset": 483, + "length": 19, + "value": "\"FBSDKCoreKit._AccessTokenExpirer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 682, + "length": 59, + "value": "\"com.apple.AuthenticationServices.WebAuthenticationSession\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 777, + "length": 11, + "value": "\"com.apple\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 8, + "value": "\"bridge\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1420, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1519, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1542, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 445, + "length": 10, + "value": "\"FBSDKCoreKit._BridgeAPI\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "IntegerLiteral", + "offset": 693, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "IntegerLiteral", + "offset": 700, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1417, + "length": 5, + "value": "\"png\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1486, + "length": 10, + "value": "\"isBase64\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1527, + "length": 14, + "value": "\"isPasteboard\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1563, + "length": 5, + "value": "\"tag\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 32, + "value": "\"fbAppBridgeType_jsonReadyValue\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 39, + "value": "\"com.facebook.Facebook.FBAppBridgeType\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 15, + "value": "\"CFBundleIcons\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1802, + "length": 21, + "value": "\"CFBundlePrimaryIcon\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1851, + "length": 19, + "value": "\"CFBundleIconFiles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1926, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1965, + "length": 16, + "value": "\"method_results\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 19, + "value": "\"completionGesture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2061, + "length": 8, + "value": "\"cancel\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2094, + "length": 8, + "value": "\"dialog\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2177, + "length": 11, + "value": "\"action_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2214, + "length": 10, + "value": "\"app_icon\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2250, + "length": 10, + "value": "\"app_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2289, + "length": 13, + "value": "\"sdk_version\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2360, + "length": 13, + "value": "\"bridge_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2398, + "length": 13, + "value": "\"method_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2466, + "length": 6, + "value": "\"code\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2497, + "length": 8, + "value": "\"domain\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2532, + "length": 11, + "value": "\"user_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 457, + "length": 26, + "value": "\"FBSDKCoreKit._BridgeAPIProtocolNativeV1\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 587, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 615, + "length": 5, + "value": "\"url\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 647, + "length": 10, + "value": "\"versions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 529, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 578, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKErrorDeveloperMessageKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 44, + "value": "\"com.facebook.sdk:FBSDKErrorArgumentNameKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 45, + "value": "\"com.facebook.sdk:FBSDKErrorArgumentValueKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/FeatureManager\/_FeatureManager.swift", + "kind": "StringLiteral", + "offset": 571, + "length": 51, + "value": "\"com.facebook.sdk:FBSDKFeatureManager.FBSDKFeature\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_MeasurementEvent.swift", + "kind": "StringLiteral", + "offset": 691, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_MeasurementEvent.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 12, + "value": "\"event_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/_PaymentObserver.swift", + "kind": "BooleanLiteral", + "offset": 594, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/_PaymentObserver.swift", + "kind": "StringLiteral", + "offset": 514, + "length": 16, + "value": "\"FBSDKCoreKit._PaymentObserver\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/_RestrictiveEventFilter.swift", + "kind": "StringLiteral", + "offset": 459, + "length": 23, + "value": "\"FBSDKCoreKit._RestrictiveEventFilter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 604, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 10, + "value": "\"currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 711, + "length": 8, + "value": "\"amount\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 453, + "length": 17, + "value": "\"FBSDKCoreKit._SKAdNetworkEvent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/UI\/_ViewImpressionLogger.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 21, + "value": "\"FBSDKCoreKit._ViewImpressionLogger\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "BooleanLiteral", + "offset": 507, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "FloatLiteral", + "offset": 785, + "length": 3, + "value": "0.2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "FloatLiteral", + "offset": 814, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 9, + "value": "\"display\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 913, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 948, + "length": 14, + "value": "\"redirect_uri\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 986, + "length": 8, + "value": "\"app_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1024, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1103, + "length": 7, + "value": "\"touch\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1139, + "length": 35, + "value": "\"ios-\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1173, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1200, + "length": 21, + "value": "\"fbconnect:\/\/success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 447, + "length": 10, + "value": "\"FBSDKCoreKit._WebDialog\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface new file mode 100644 index 00000000..90c36b97 --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface @@ -0,0 +1,685 @@ +// 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-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import AdSupport +import AuthenticationServices +import FBAEMKit +@_exported import FBSDKCoreKit +import FBSDKCoreKit_Basics +import Foundation +import SafariServices +import StoreKit +import Swift +import UIKit +import _Concurrency +import _StringProcessing +extension FBSDKCoreKit.AccessToken { + public var permissions: Swift.Set { + get + } + public var declinedPermissions: Swift.Set { + get + } + public var expiredPermissions: Swift.Set { + get + } + public func hasGranted(_ permission: FBSDKCoreKit.Permission) -> Swift.Bool +} +@objcMembers @objc(FBSDKAppLink) final public class AppLink : ObjectiveC.NSObject, FBSDKCoreKit._AppLinkProtocol { + @objc final public let sourceURL: Foundation.URL? + @objc final public let targets: [FBSDKCoreKit.AppLinkTargetProtocol] + @objc final public let webURL: Foundation.URL? + @objc final public var isBackToReferrer: Swift.Bool + @objc(initWithSourceURL:targets:webURL:) convenience public init(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLink. This method will be removed in future releases.\"") + @objc(appLinkWithSourceURL:targets:webURL:) public static func appLink(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?) -> FBSDKCoreKit._AppLinkProtocol + @objc(initWithSourceURL:targets:webURL:isBackToReferrer:) public init(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?, isBackToReferrer: Swift.Bool) + @objc deinit +} +@available(iOSApplicationExtension, unavailable, message: "Not available in app extension") +@objcMembers @objc(FBSDKAppLinkNavigation) final public class AppLinkNavigation : ObjectiveC.NSObject { + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `defaultResolver` instead.") + @nonobjc public static var `default`: FBSDKCoreKit.AppLinkResolving { + get + set + } + @objc(defaultResolver) public static var defaultResolver: FBSDKCoreKit.AppLinkResolving { + @objc get + @objc set + } + @objc final public let extras: [Swift.String : Any] + @objc final public let appLinkData: [Swift.String : Any] + @objc final public let appLink: FBSDKCoreKit.AppLink + @objc final public var navigationType: FBSDKCoreKit.AppLinkNavigationType { + @objc get + } + @objc(initWithAppLink:extras:appLinkData:) public init(appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any]) + @available(*, deprecated, message: "Please use init(appLink:extras:appLinkData:) to instantiate an `AppLinkNavigation`.\nThis method will be removed in the next major version.\"") + @objc(initWithAppLink:extras:appLinkData:settings:) convenience public init(appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any], settings: FBSDKCoreKit.SettingsProtocol) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLinkNavigation. This method will be removed in future releases.\"") + @objc(navigationWithAppLink:extras:appLinkData:settings:) public static func navigation(with appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any], settings: FBSDKCoreKit.SettingsProtocol) -> FBSDKCoreKit.AppLinkNavigation + @objc(callbackAppLinkDataForAppWithName:url:) public static func callbackAppLinkData(forApp appName: Swift.String, url: Swift.String) -> [Swift.String : [Swift.String : Swift.String]] + @available(swift, obsoleted: 0.1) + @objc(navigate:) final public func navigate(error errorPointer: Foundation.NSErrorPointer) -> FBSDKCoreKit.AppLinkNavigationType + @nonobjc final public func navigate() throws -> FBSDKCoreKit.AppLinkNavigationType + @objc(resolveAppLink:handler:) public static func resolveAppLink(_ destination: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @objc(resolveAppLink:resolver:handler:) public static func resolveAppLink(_ destination: Foundation.URL, resolver: FBSDKCoreKit.AppLinkResolving, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @available(swift, obsoleted: 0.1) + @objc(navigateToAppLink:error:) public static func navigate(to appLink: FBSDKCoreKit.AppLink, errorPointer: Foundation.ErrorPointer) -> FBSDKCoreKit.AppLinkNavigationType + @nonobjc public static func navigate(to appLink: FBSDKCoreKit.AppLink) throws -> FBSDKCoreKit.AppLinkNavigationType + @objc(navigationTypeForLink:) public static func navigationType(for appLink: FBSDKCoreKit.AppLink) -> FBSDKCoreKit.AppLinkNavigationType + @objc(navigateToURL:handler:) public static func navigate(to destination: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkNavigationBlock) + @objc(navigateToURL:resolver:handler:) public static func navigate(to destination: Foundation.URL, resolver: FBSDKCoreKit.AppLinkResolving, handler: @escaping FBSDKCoreKit.AppLinkNavigationBlock) + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKAppLinkResolver) final public class AppLinkResolver : ObjectiveC.NSObject, FBSDKCoreKit.AppLinkResolving { + @objc final public func appLink(from url: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @objc @available(iOSApplicationExtension, unavailable, message: "Not available in app extension") + final public func appLinks(from urls: [Foundation.URL], handler: @escaping FBSDKCoreKit.AppLinksBlock) + @objc override dynamic public init() + @objc deinit +} +@objcMembers @objc(FBSDKAppLinkTarget) final public class AppLinkTarget : ObjectiveC.NSObject, FBSDKCoreKit.AppLinkTargetProtocol { + @objc final public let url: Foundation.URL? + @objc final public let appStoreId: Swift.String? + @objc final public let appName: Swift.String + @objc(initWithURL:appStoreId:appName:) public init(url: Foundation.URL?, appStoreId: Swift.String?, appName: Swift.String) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLinkTarget. This method will be removed in future releases.\"") + @objc(appLinkTargetWithURL:appStoreId:appName:) public static func appLinkTargetWithURL(url: Foundation.URL?, appStoreId: Swift.String?, appName: Swift.String) -> FBSDKCoreKit.AppLinkTarget + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKApplicationDelegate) final public class ApplicationDelegate : ObjectiveC.NSObject { + @objc(sharedInstance) public static var shared: FBSDKCoreKit.ApplicationDelegate { + get + } + @objc final public func initializeSDK() + @discardableResult + @objc(application:continueUserActivity:) final public func application(_ application: UIKit.UIApplication, continue userActivity: Foundation.NSUserActivity) -> Swift.Bool + @discardableResult + @objc(application:openURL:options:) final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, options: [UIKit.UIApplication.OpenURLOptionsKey : Any]) -> Swift.Bool + @discardableResult + @objc(application:openURL:sourceApplication:annotation:) final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc @discardableResult + final public func application(_ application: UIKit.UIApplication, didFinishLaunchingWithOptions launchOptions: [UIKit.UIApplication.LaunchOptionsKey : Any]? = nil) -> Swift.Bool + @objc final public func addObserver(_ observer: FBSDKCoreKit.FBSDKApplicationObserving) + @objc final public func removeObserver(_ observer: FBSDKCoreKit.FBSDKApplicationObserving) + @objc deinit +} +@_hasMissingDesignatedInitializers @objc(FBSDKAuthenticationTokenClaims) final public class AuthenticationTokenClaims : ObjectiveC.NSObject { + final public let jti: Swift.String + final public let iss: Swift.String + final public let aud: Swift.String + final public let nonce: Swift.String + final public let exp: Foundation.TimeInterval + final public let iat: Foundation.TimeInterval + final public let sub: Swift.String + final public let name: Swift.String? + final public let givenName: Swift.String? + final public let middleName: Swift.String? + final public let familyName: Swift.String? + final public let email: Swift.String? + final public let picture: Swift.String? + final public let userFriends: [Swift.String]? + final public let userBirthday: Swift.String? + final public let userAgeRange: [Swift.String : Foundation.NSNumber]? + final public let userHometown: [Swift.String : Swift.String]? + final public let userLocation: [Swift.String : Swift.String]? + final public let userGender: Swift.String? + final public let userLink: Swift.String? + @objc(initWithEncodedClaims:nonce:) convenience public init?(encodedClaims: Swift.String, nonce expectedNonce: Swift.String) + @objc deinit +} +@objc(FBSDKCAPIReporter) public protocol CAPIReporter { + @objc func enable() + @objc func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) + @objc func recordEvent(_ parameters: [Swift.String : Any]) +} +@_inheritsConvenienceInitializers @objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { + @objc public static let shared: FBSDKCoreKit._InternalURLOpener + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKIcon) open class FBIcon : ObjectiveC.NSObject { + @objc open func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, scale: CoreFoundation.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { + @objc @_Concurrency.MainActor(unsafe) final public var pictureMode: FBSDKCoreKit.Profile.PictureMode { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var profileID: Swift.String { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreFoundation.CGRect { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc override final public var contentMode: UIKit.UIView.ContentMode { + @objc get + @objc set + } + @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, profile: FBSDKCoreKit.Profile? = nil) + @objc(initWithProfile:) @_Concurrency.MainActor(unsafe) convenience public init(profile: FBSDKCoreKit.Profile? = nil) + @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreFoundation.CGRect) + @objc(initWithCoder:) @_Concurrency.MainActor(unsafe) required dynamic public init?(coder: Foundation.NSCoder) + @objc @_Concurrency.MainActor(unsafe) final public func setNeedsImageUpdate() + @objc deinit +} +public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager +public typealias CAPIGBlock = (Swift.Bool) -> Swift.Void +@objc @_inheritsConvenienceInitializers @objcMembers final public class FBSDKAppEventsCAPIManager : ObjectiveC.NSObject, FBSDKCoreKit.CAPIReporter { + @objc public static let shared: FBSDKCoreKit.FBSDKAppEventsCAPIManager + @objc override dynamic public init() + @objc final public func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) + @objc final public func enable() + @objc final public func recordEvent(_ parameters: [Swift.String : Any]) + @objc deinit +} +@objc @_inheritsConvenienceInitializers @objcMembers public class FBSDKTransformerGraphRequestFactory : ObjectiveC.NSObject { + @objc public static let shared: FBSDKCoreKit.FBSDKTransformerGraphRequestFactory + public var credentials: FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials? { + get + } + public struct CapiGCredentials { + public let accessKey: Swift.String + public let capiGatewayURL: Swift.String + public let datasetID: Swift.String + } + @objc override dynamic public init() + @objc public func configure(datasetID: Swift.String, url: Swift.String, accessKey: Swift.String) + @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any], userAgent: Swift.String) + @objc deinit +} +final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { + public init() + @objc final public func createKeychainStore(service: Swift.String, accessGroup: Swift.String?) -> FBSDKCoreKit.KeychainStoreProtocol + @objc deinit +} +@objc(FBSDKMACARuleMatching) public protocol MACARuleMatching { + @objc func enable() + @objc func processParameters(_ params: Foundation.NSDictionary?, event: Swift.String?) -> Foundation.NSDictionary? +} +public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { + case publicProfile + case userFriends + case email + case userAboutMe + case userActionsBooks + case userActionsFitness + case userActionsMusic + case userActionsNews + case userActionsVideo + case userBirthday + case userEducationHistory + case userEvents + case userGamesActivity + case userGender + case userHometown + case userLikes + case userLocation + case userManagedGroups + case userPhotos + case userPosts + case userRelationships + case userRelationshipDetails + case userReligionPolitics + case userTaggedPlaces + case userVideos + case userWebsite + case userWorkHistory + case readCustomFriendlists + case readInsights + case readAudienceNetworkInsights + case readPageMailboxes + case pagesShowList + case pagesManageCta + case pagesManageInstantArticles + case adsRead + case userLink + case userAgeRange + case custom(Swift.String) + public init(stringLiteral value: Swift.String) + public var name: Swift.String { + get + } + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: FBSDKCoreKit.Permission, b: FBSDKCoreKit.Permission) -> Swift.Bool + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public var hashValue: Swift.Int { + get + } +} +extension FBSDKCoreKit.Profile { + @objc(FBSDKProfilePictureMode) public enum PictureMode : Swift.UInt { + case square + case normal + case album + case small + case large + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreFoundation.CGSize) -> Foundation.URL? +} +extension FBSDKCoreKit.Profile { + @objc(loadCurrentProfileWithCompletion:) public static func loadCurrentProfile(completion: FBSDKCoreKit.ProfileBlock?) +} +extension FBSDKCoreKit.Profile : FBSDKCoreKit.ProfileProviding { + @objc(currentProfile) public static var current: FBSDKCoreKit.Profile? { + @objc get + @objc set + } + @objc public static func fetchCachedProfile() -> Self? +} +extension FBSDKCoreKit.Profile : Foundation.NSSecureCoding { + @objc public static var supportsSecureCoding: Swift.Bool { + @objc get + } + @objc convenience dynamic public init?(coder decoder: Foundation.NSCoder) + @objc final public func encode(with encoder: Foundation.NSCoder) +} +@objcMembers @objc(FBSDKProfile) final public class Profile : ObjectiveC.NSObject { + @objc final public let userID: FBSDKCoreKit.UserIdentifier + @objc final public let firstName: Swift.String? + @objc final public let middleName: Swift.String? + @objc final public let lastName: Swift.String? + @objc final public let name: Swift.String? + @objc final public let linkURL: Foundation.URL? + @objc final public let refreshDate: Foundation.Date + @objc final public let imageURL: Foundation.URL? + @objc final public let email: Swift.String? + @objc final public let friendIDs: [FBSDKCoreKit.UserIdentifier]? + @objc final public let birthday: Foundation.Date? + @objc final public let ageRange: FBSDKCoreKit.UserAgeRange? + @objc final public let hometown: FBSDKCoreKit.Location? + @objc final public let location: FBSDKCoreKit.Location? + @objc final public let gender: Swift.String? + @objc public static var isUpdatedWithAccessTokenChange: Swift.Bool { + @objc get + @objc set + } + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:) convenience public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String?, middleName: Swift.String?, lastName: Swift.String?, name: Swift.String?, linkURL: Foundation.URL?, refreshDate: Foundation.Date?) + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:) convenience public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String? = nil, middleName: Swift.String? = nil, lastName: Swift.String? = nil, name: Swift.String? = nil, linkURL: Foundation.URL? = nil, refreshDate: Foundation.Date? = Date(), imageURL: Foundation.URL? = nil, email: Swift.String? = nil, friendIDs: [FBSDKCoreKit.UserIdentifier]? = nil, birthday: Foundation.Date? = nil, ageRange: FBSDKCoreKit.UserAgeRange? = nil, hometown: FBSDKCoreKit.Location? = nil, location: FBSDKCoreKit.Location? = nil, gender: Swift.String? = nil) + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:) public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String?, middleName: Swift.String?, lastName: Swift.String?, name: Swift.String?, linkURL: Foundation.URL?, refreshDate: Foundation.Date?, imageURL: Foundation.URL?, email: Swift.String?, friendIDs: [FBSDKCoreKit.UserIdentifier]?, birthday: Foundation.Date?, ageRange: FBSDKCoreKit.UserAgeRange?, hometown: FBSDKCoreKit.Location?, location: FBSDKCoreKit.Location?, gender: Swift.String?, isLimited: Swift.Bool) + @available(*, deprecated, message: "This method is deprecated and will be removed in the next major release. Use `isUpdatedWithAccessTokenChange` instead.") + @objc(enableUpdatesOnAccessTokenChange:) public static func enableUpdatesOnAccessTokenChange(_ enabled: Swift.Bool) + @objc deinit +} +@objc(FBSDKProfileProviding) public protocol ProfileProviding { + @objc(currentProfile) static var current: FBSDKCoreKit.Profile? { get set } + @objc static func fetchCachedProfile() -> FBSDKCoreKit.Profile? +} +public typealias LoginTooltipBlock = (FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> Swift.Void +public enum LoginTooltipError : Swift.Error { + case missingTooltipText + public static func == (a: FBSDKCoreKit.LoginTooltipError, b: FBSDKCoreKit.LoginTooltipError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc @_inheritsConvenienceInitializers final public class ServerConfigurationProvider : ObjectiveC.NSObject { + final public var loggingToken: Swift.String? { + get + } + final public func shouldUseSafariViewController(forDialogName dialogName: Swift.String) -> Swift.Bool + final public func loadServerConfiguration(completion: FBSDKCoreKit.LoginTooltipBlock?) + @objc override dynamic public init() + @objc deinit +} +extension FBSDKCoreKit.Settings { + @objc final public func recordInstall() + @objc final public func logWarnings() + @objc final public func logIfSDKSettingsChanged() +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSettings) final public class Settings : ObjectiveC.NSObject, FBSDKCoreKit.SettingsProtocol, FBSDKCoreKit.SettingsLogging, FBSDKCoreKit._ClientTokenProviding { + @objc(sharedSettings) public static let shared: FBSDKCoreKit.Settings + @objc final public var sdkVersion: Swift.String { + @objc get + } + @objc final public var defaultGraphAPIVersion: Swift.String { + @objc get + } + @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreFoundation.CGFloat { + @objc get + @objc set + } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAutoLogAppEventsEnabled` instead.") + final public var autoLogAppEventsEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isAutoLogAppEventsEnabled: Swift.Bool { + @objc get + @objc set + } + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.") + @objc final public var codelessDebugLogEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isCodelessDebugLogEnabled: Swift.Bool { + @objc get + @objc set + } + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.") + @objc final public var advertiserIDCollectionEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isAdvertiserIDCollectionEnabled: Swift.Bool { + @objc get + @objc set + } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isSKAdNetworkReportEnabled` instead.") + final public var skAdNetworkReportEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isSKAdNetworkReportEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isEventDataUsageLimited: Swift.Bool { + @objc get + @objc set + } + @objc final public var shouldUseCachedValuesForExpensiveMetadata: Swift.Bool { + @objc get + @objc set + } + @objc final public var isGraphErrorRecoveryEnabled: Swift.Bool + @objc final public var appID: Swift.String? { + @objc get + @objc set + } + @objc final public var appURLSchemeSuffix: Swift.String? { + @objc get + @objc set + } + @objc final public var clientToken: Swift.String? { + @objc get + @objc set + } + @objc final public var displayName: Swift.String? { + @objc get + @objc set + } + @objc final public var facebookDomainPart: Swift.String? { + @objc get + @objc set + } + @objc final public var graphAPIVersion: Swift.String { + @objc get + @objc set + } + @objc final public var userAgentSuffix: Swift.String? + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.") + @objc final public var advertiserTrackingEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isAdvertiserTrackingEnabled: Swift.Bool { + @objc get + @objc set(isNewlyAllowed) + } + @objc final public var advertisingTrackingStatus: FBSDKCoreKit.AdvertisingTrackingStatus { + @objc get + @objc set + } + @objc final public var isDataProcessingRestricted: Swift.Bool { + @objc get + } + @objc final public var persistableDataProcessingOptions: [FBSDKCoreKit.DataProcessingOptionKey.RawValue : Any]? { + @objc get + } + @objc final public func setDataProcessingOptions(_ options: [Swift.String]?) + @objc final public func setDataProcessingOptions(_ options: [Swift.String]?, country: Swift.Int32, state: Swift.Int32) + @objc final public var loggingBehaviors: Swift.Set { + @objc get + @objc set + } + @objc final public func enableLoggingBehavior(_ loggingBehavior: FBSDKCoreKit.LoggingBehavior) + @objc final public func disableLoggingBehavior(_ loggingBehavior: FBSDKCoreKit.LoggingBehavior) + @objc final public var shouldUseTokenOptimizations: Swift.Bool { + @objc get + @objc set + } + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.") + @objc final public var isSetATETimeExceedsInstallTime: Swift.Bool { + @objc get + } + @objc final public var isATETimeSufficientlyDelayed: Swift.Bool { + @objc get + } + @objc final public var installTimestamp: Foundation.Date? { + @objc get + } + @objc final public var advertiserTrackingEnabledTimestamp: Foundation.Date? { + @objc get + } + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.") + @objc final public var graphAPIDebugParamValue: Swift.String? { + @objc get + } + @objc final public var graphAPIDebugParameterValue: Swift.String? { + @objc get + } + @objc override dynamic public init() + @objc deinit +} +@objc(FBSDKSettings) public protocol SettingsProtocol { + @objc var appID: Swift.String? { get set } + @objc var clientToken: Swift.String? { get set } + @objc var userAgentSuffix: Swift.String? { get set } + @objc var sdkVersion: Swift.String { get } + @objc var displayName: Swift.String? { get set } + @objc var facebookDomainPart: Swift.String? { get set } + @objc var loggingBehaviors: Swift.Set { get set } + @objc var appURLSchemeSuffix: Swift.String? { get set } + @objc var isDataProcessingRestricted: Swift.Bool { get } + @objc var isAutoLogAppEventsEnabled: Swift.Bool { get } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.") + var codelessDebugLogEnabled: Swift.Bool { get set } + @objc var isCodelessDebugLogEnabled: Swift.Bool { get set } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.") + var advertiserIDCollectionEnabled: Swift.Bool { get set } + @objc var isAdvertiserIDCollectionEnabled: Swift.Bool { get set } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.") + var isSetATETimeExceedsInstallTime: Swift.Bool { get } + @objc var isATETimeSufficientlyDelayed: Swift.Bool { get } + @objc var isSKAdNetworkReportEnabled: Swift.Bool { get } + @objc var advertisingTrackingStatus: FBSDKCoreKit.AdvertisingTrackingStatus { get } + @objc var installTimestamp: Foundation.Date? { get } + @objc var advertiserTrackingEnabledTimestamp: Foundation.Date? { get } + @objc var isEventDataUsageLimited: Swift.Bool { get set } + @objc var shouldUseTokenOptimizations: Swift.Bool { get set } + @objc var graphAPIVersion: Swift.String { get set } + @objc var isGraphErrorRecoveryEnabled: Swift.Bool { get set } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.") + var graphAPIDebugParamValue: Swift.String? { get } + @objc var graphAPIDebugParameterValue: Swift.String? { get } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.") + var advertiserTrackingEnabled: Swift.Bool { get set } + @objc var isAdvertiserTrackingEnabled: Swift.Bool { get set } + @objc var shouldUseCachedValuesForExpensiveMetadata: Swift.Bool { get set } + @objc var persistableDataProcessingOptions: [FBSDKCoreKit.DataProcessingOptionKey.RawValue : Any]? { get } + @objc func setDataProcessingOptions(_ options: [Swift.String]?) + @objc func setDataProcessingOptions(_ options: [Swift.String]?, country: Swift.Int32, state: Swift.Int32) +} +public enum DialogConfigurationName { + public static let message: Swift.String + public static let share: Swift.String +} +public struct ShareDialogConfiguration { + public init() + public var defaultShareMode: Swift.String? { + get + } + public func shouldUseNativeDialog(forDialogName dialogName: Swift.String) -> Swift.Bool + public func shouldUseSafariViewController(forDialogName dialogName: Swift.String) -> Swift.Bool +} +@objc(FBSDKAEMReporter) public protocol _AEMReporterProtocol { + @objc static func enable() + @objc(recordAndUpdateEvent:currency:value:parameters:) static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) + @objc static func setConversionFilteringEnabled(_ isEnabled: Swift.Bool) + @objc static func setCatalogMatchingEnabled(_ isEnabled: Swift.Bool) + @objc static func setAdvertiserRuleMatchInServerEnabled(_ isEnabled: Swift.Bool) + @objc static func handle(_ url: Foundation.URL?) +} +extension FBAEMKit.AEMReporter : FBSDKCoreKit._AEMReporterProtocol { +} +@objcMembers @objc(_FBSDKAccessTokenExpirer) final public class _AccessTokenExpirer : ObjectiveC.NSObject, FBSDKCoreKit._AccessTokenExpiring { + @objc public init(notificationCenter: FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering) + @objc deinit +} +@objc(_FBSDKAccessTokenExpiring) public protocol _AccessTokenExpiring { +} +@objc @_hasMissingDesignatedInitializers final public class _BridgeAPI : ObjectiveC.NSObject, FBSDKCoreKit.FBSDKApplicationObserving, FBSDKCoreKit.URLOpener, FBSDKCoreKit.BridgeAPIRequestOpening, FBSDKCoreKit._ContainerViewControllerDelegate, SafariServices.SFSafariViewControllerDelegate { + public static let shared: FBSDKCoreKit._BridgeAPI + @objc final public func viewControllerDidDisappear(_ viewController: FBSDKCoreKit._ContainerViewController, animated: Swift.Bool) + @objc deinit +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func applicationWillResignActive(_ application: UIKit.UIApplication?) + @objc final public func applicationDidBecomeActive(_ application: UIKit.UIApplication?) + @objc final public func applicationDidEnterBackground(_ application: UIKit.UIApplication?) + @objc final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func application(_ application: UIKit.UIApplication, didFinishLaunchingWithOptions launchOptions: [UIKit.UIApplication.LaunchOptionsKey : Any]? = nil) -> Swift.Bool +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func open(_ url: Foundation.URL, sender: FBSDKCoreKit.URLOpening?, handler: @escaping FBSDKCoreKit.SuccessBlock) + @objc final public func open(_ request: FBSDKCoreKit.BridgeAPIRequestProtocol, useSafariViewController: Swift.Bool, from fromViewController: UIKit.UIViewController?, completionBlock: @escaping FBSDKCoreKit.BridgeAPIResponseBlock) + @objc final public func openURLWithSafariViewController(url: Foundation.URL, sender: FBSDKCoreKit.URLOpening?, from fromViewController: UIKit.UIViewController?, handler: @escaping FBSDKCoreKit.SuccessBlock) +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func safariViewControllerDidFinish(_ safariViewController: SafariServices.SFSafariViewController) +} +@available(iOS 13, *) +extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPresentationContextProviding { + @objc final public func presentationAnchor(for session: AuthenticationServices.ASWebAuthenticationSession) -> AuthenticationServices.ASPresentationAnchor +} +@objcMembers @objc(FBSDKBridgeAPIProtocolNativeV1) final public class _BridgeAPIProtocolNativeV1 : ObjectiveC.NSObject, FBSDKCoreKit.BridgeAPIProtocol { + @objc(initWithAppScheme:) convenience public init(appScheme: Swift.String?) + @objc(initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:) public init(appScheme: Swift.String?, pasteboard: FBSDKCoreKit._Pasteboard?, dataLengthThreshold: Swift.UInt, shouldIncludeAppIcon: Swift.Bool) + @objc deinit + @objc final public func requestURL(actionID: Swift.String, scheme: Swift.String, methodName: Swift.String, parameters: [Swift.String : Any]) throws -> Foundation.URL + @objc final public func responseParameters(actionID: Swift.String, queryParameters: [Swift.String : Any], cancelled cancelledRef: Swift.UnsafeMutablePointer?) throws -> [Swift.String : Any] +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKBridgeAPIRequestFactory) final public class _BridgeAPIRequestFactory : ObjectiveC.NSObject, FBSDKCoreKit.BridgeAPIRequestCreating { + @objc final public func bridgeAPIRequest(with protocolType: FBSDKCoreKit.FBSDKBridgeAPIProtocolType, scheme: Swift.String, methodName: Swift.String?, parameters: [Swift.String : Any]?, userInfo: [Swift.String : Any]? = nil) -> FBSDKCoreKit.BridgeAPIRequestProtocol? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKDialogConfigurationMapBuilder) final public class _DialogConfigurationMapBuilder : ObjectiveC.NSObject, FBSDKCoreKit._DialogConfigurationMapBuilding { + @objc final public func buildDialogConfigurationMap(from rawConfigurations: [[Swift.String : Any]]) -> [Swift.String : FBSDKCoreKit._DialogConfiguration] + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objc(FBSDKErrorFactory) final public class _ErrorFactory : ObjectiveC.NSObject, FBSDKCoreKit.ErrorCreating { + @objc(errorWithCode:userInfo:message:underlyingError:) final public func error(code: Swift.Int, userInfo: [Swift.String : Any]? = nil, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(errorWithDomain:code:userInfo:message:underlyingError:) final public func error(domain: Swift.String, code: Swift.Int, userInfo: [Swift.String : Any]? = nil, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(invalidArgumentErrorWithName:value:message:underlyingError:) final public func invalidArgumentError(name: Swift.String, value: Any?, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(invalidArgumentErrorWithDomain:name:value:message:underlyingError:) final public func invalidArgumentError(domain: Swift.String, name: Swift.String, value: Any?, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(requiredArgumentErrorWithName:message:underlyingError:) final public func requiredArgumentError(name: Swift.String, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(requiredArgumentErrorWithDomain:name:message:underlyingError:) final public func requiredArgumentError(domain: Swift.String, name: Swift.String, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(unknownErrorWithMessage:userInfo:) final public func unknownError(message: Swift.String?, userInfo: [Swift.String : Any]? = nil) -> Swift.Error + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCloseIcon) final public class _FBCloseIcon : ObjectiveC.NSObject { + @objc final public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLogo) final public class _FBLogo : FBSDKCoreKit.FBIcon { + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKFeatureManager) final public class _FeatureManager : ObjectiveC.NSObject, FBSDKCoreKit.FeatureChecking, FBSDKCoreKit._FeatureDisabling { + @objc public static let shared: FBSDKCoreKit._FeatureManager + @objc final public func isEnabled(_ feature: FBSDKCoreKit.SDKFeature) -> Swift.Bool + @objc final public func check(_ feature: FBSDKCoreKit.SDKFeature, completionBlock: @escaping FBSDKCoreKit.FBSDKFeatureManagerBlock) + @objc final public func disableFeature(_ feature: FBSDKCoreKit.SDKFeature) + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKHumanSilhouetteIcon) final public class _HumanSilhouetteIcon : FBSDKCoreKit.FBIcon { + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKMeasurementEvent) final public class _MeasurementEvent : ObjectiveC.NSObject, FBSDKCoreKit._AppLinkEventPosting { + @objc(postNotificationForEventName:args:) final public func postNotification(eventName: Swift.String, arguments: [Swift.String : Any]) + @objc override dynamic public init() + @objc deinit +} +@objc(FBSDKPaymentObserver) final public class _PaymentObserver : ObjectiveC.NSObject, FBSDKCoreKit._PaymentObserving { + @objc(initWithPaymentQueue:paymentProductRequestorFactory:) public init(paymentQueue: StoreKit.SKPaymentQueue, paymentProductRequestorFactory: FBSDKCoreKit._PaymentProductRequestorCreating) + @objc(startObservingTransactions) final public func startObservingTransactions() + @objc(stopObservingTransactions) final public func stopObservingTransactions() + @objc deinit +} +extension FBSDKCoreKit._PaymentObserver : StoreKit.SKPaymentTransactionObserver { + @objc final public func paymentQueue(_ queue: StoreKit.SKPaymentQueue, updatedTransactions transactions: [StoreKit.SKPaymentTransaction]) +} +@_inheritsConvenienceInitializers @objc(FBSDKPaymentProductRequestorFactory) final public class _PaymentProductRequestorFactory : ObjectiveC.NSObject, FBSDKCoreKit._PaymentProductRequestorCreating { + @objc final public func createRequestor(transaction: StoreKit.SKPaymentTransaction) -> FBSDKCoreKit.PaymentProductRequestor + @objc override dynamic public init() + @objc deinit +} +@objcMembers @objc(FBSDKRestrictiveEventFilter) final public class _RestrictiveEventFilter : ObjectiveC.NSObject { + @objc final public let eventName: Swift.String + @objc final public let restrictiveParameters: [Swift.String : Any] + @objc(initWithEventName:restrictiveParameters:) public init(eventName: Swift.String, restrictiveParameters: [Swift.String : Any]) + @objc deinit +} +@objcMembers @objc(FBSDKSKAdNetworkEvent) final public class _SKAdNetworkEvent : ObjectiveC.NSObject { + @objc final public let eventName: Swift.String? + @objc final public var values: [Swift.String : Swift.Double]? + @objc(initWithJSON:) public init?(json: [Swift.String : Any]) + @objc deinit +} +@objcMembers @objc(FBSDKViewImpressionLogger) final public class _ViewImpressionLogger : ObjectiveC.NSObject, FBSDKCoreKit.ImpressionLogging { + @objc(initWithEventName:) public init(eventName: FBSDKCoreKit.AppEvents.Name) + @objc public static func retrieveLogger(with eventName: FBSDKCoreKit.AppEvents.Name) -> FBSDKCoreKit._ViewImpressionLogger + @objc final public func logImpression(withIdentifier identifier: Swift.String, parameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]?) + @objc deinit +} +@objcMembers @objc(FBSDKWebDialog) final public class _WebDialog : ObjectiveC.NSObject { + @objc final public var shouldDeferVisibility: Swift.Bool + @objc weak final public var delegate: FBSDKCoreKit.WebDialogDelegate? + @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreFoundation.CGRect = .zero, path: Swift.String? = nil) + @objc convenience public init(name: Swift.String) + @objc final public func show() + @objc deinit +} +extension FBSDKCoreKit._WebDialog : FBSDKCoreKit.WebDialogViewDelegate { + @objc final public func webDialogView(_ webDialogView: FBSDKCoreKit.FBWebDialogView, didCompleteWithResults results: [Swift.String : Any]) + @objc final public func webDialogView(_ webDialogView: FBSDKCoreKit.FBWebDialogView, didFailWithError error: Swift.Error) + @objc final public func webDialogViewDidCancel(_ webDialogView: FBSDKCoreKit.FBWebDialogView) + @objc final public func webDialogViewDidFinishLoad(_ webDialogView: FBSDKCoreKit.FBWebDialogView) +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKWebViewFactory) final public class _WebViewFactory : ObjectiveC.NSObject, FBSDKCoreKit._WebViewProviding { + @objc final public func createWebView(frame: CoreFoundation.CGRect) -> FBSDKCoreKit.WebView + @objc override dynamic public init() + @objc deinit +} +extension FBSDKCoreKit.Profile.PictureMode : Swift.Equatable {} +extension FBSDKCoreKit.Profile.PictureMode : Swift.Hashable {} +extension FBSDKCoreKit.Profile.PictureMode : Swift.RawRepresentable {} +extension FBSDKCoreKit.LoginTooltipError : Swift.Equatable {} +extension FBSDKCoreKit.LoginTooltipError : Swift.Hashable {} diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc similarity index 97% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc index 5e10ddff..ac362886 100644 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface similarity index 95% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface index 82594e4f..90c36b97 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import AdSupport import AuthenticationServices import FBAEMKit @@ -12,6 +13,7 @@ import StoreKit import Swift import UIKit import _Concurrency +import _StringProcessing extension FBSDKCoreKit.AccessToken { public var permissions: Swift.Set { get @@ -133,22 +135,20 @@ extension FBSDKCoreKit.AccessToken { @objc func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) @objc func recordEvent(_ parameters: [Swift.String : Any]) } -@_inheritsConvenienceInitializers @available(tvOS, unavailable) -@objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { +@_inheritsConvenienceInitializers @objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { @objc public static let shared: FBSDKCoreKit._InternalURLOpener @objc override dynamic public init() @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKIcon) open class FBIcon : ObjectiveC.NSObject { - @objc open func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? - @objc public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, scale: CoreGraphics.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? + @objc open func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, scale: CoreFoundation.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? @objc override dynamic public init() @objc deinit } -@_inheritsConvenienceInitializers @available(tvOS, unavailable) -@objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { @objc @_Concurrency.MainActor(unsafe) final public var pictureMode: FBSDKCoreKit.Profile.PictureMode { @objc get @objc set @@ -157,22 +157,23 @@ extension FBSDKCoreKit.AccessToken { @objc get @objc set } - @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreGraphics.CGRect { - @_Concurrency.MainActor(unsafe) @objc get - @_Concurrency.MainActor(unsafe) @objc set + @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreFoundation.CGRect { + @objc get + @objc set } @_Concurrency.MainActor(unsafe) @objc override final public var contentMode: UIKit.UIView.ContentMode { - @_Concurrency.MainActor(unsafe) @objc get - @_Concurrency.MainActor(unsafe) @objc set + @objc get + @objc set } - @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreGraphics.CGRect, profile: FBSDKCoreKit.Profile? = nil) + @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, profile: FBSDKCoreKit.Profile? = nil) @objc(initWithProfile:) @_Concurrency.MainActor(unsafe) convenience public init(profile: FBSDKCoreKit.Profile? = nil) - @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreGraphics.CGRect) + @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreFoundation.CGRect) @objc(initWithCoder:) @_Concurrency.MainActor(unsafe) required dynamic public init?(coder: Foundation.NSCoder) @objc @_Concurrency.MainActor(unsafe) final public func setNeedsImageUpdate() @objc deinit } public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager +public typealias CAPIGBlock = (Swift.Bool) -> Swift.Void @objc @_inheritsConvenienceInitializers @objcMembers final public class FBSDKAppEventsCAPIManager : ObjectiveC.NSObject, FBSDKCoreKit.CAPIReporter { @objc public static let shared: FBSDKCoreKit.FBSDKAppEventsCAPIManager @objc override dynamic public init() @@ -193,7 +194,7 @@ public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager } @objc override dynamic public init() @objc public func configure(datasetID: Swift.String, url: Swift.String, accessKey: Swift.String) - @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any]) + @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any], userAgent: Swift.String) @objc deinit } final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @@ -201,6 +202,10 @@ final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @objc final public func createKeychainStore(service: Swift.String, accessGroup: Swift.String?) -> FBSDKCoreKit.KeychainStoreProtocol @objc deinit } +@objc(FBSDKMACARuleMatching) public protocol MACARuleMatching { + @objc func enable() + @objc func processParameters(_ params: Foundation.NSDictionary?, event: Swift.String?) -> Foundation.NSDictionary? +} public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { case publicProfile case userFriends @@ -266,7 +271,7 @@ extension FBSDKCoreKit.Profile { get } } - @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreGraphics.CGSize) -> Foundation.URL? + @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreFoundation.CGSize) -> Foundation.URL? } extension FBSDKCoreKit.Profile { @objc(loadCurrentProfileWithCompletion:) public static func loadCurrentProfile(completion: FBSDKCoreKit.ProfileBlock?) @@ -347,7 +352,7 @@ extension FBSDKCoreKit.Settings { @objc final public var defaultGraphAPIVersion: Swift.String { @objc get } - @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreGraphics.CGFloat { + @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreFoundation.CGFloat { @objc get @objc set } @@ -518,7 +523,6 @@ public enum DialogConfigurationName { public static let message: Swift.String public static let share: Swift.String } -@available(tvOS, unavailable) public struct ShareDialogConfiguration { public init() public var defaultShareMode: Swift.String? { @@ -533,6 +537,7 @@ public struct ShareDialogConfiguration { @objc static func setConversionFilteringEnabled(_ isEnabled: Swift.Bool) @objc static func setCatalogMatchingEnabled(_ isEnabled: Swift.Bool) @objc static func setAdvertiserRuleMatchInServerEnabled(_ isEnabled: Swift.Bool) + @objc static func handle(_ url: Foundation.URL?) } extension FBAEMKit.AEMReporter : FBSDKCoreKit._AEMReporterProtocol { } @@ -595,12 +600,12 @@ extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPr @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCloseIcon) final public class _FBCloseIcon : ObjectiveC.NSObject { - @objc final public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? + @objc final public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? @objc override dynamic public init() @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLogo) final public class _FBLogo : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? @objc override dynamic public init() @objc deinit } @@ -613,7 +618,7 @@ extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPr @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKHumanSilhouetteIcon) final public class _HumanSilhouetteIcon : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? @objc override dynamic public init() @objc deinit } @@ -657,7 +662,7 @@ extension FBSDKCoreKit._PaymentObserver : StoreKit.SKPaymentTransactionObserver @objcMembers @objc(FBSDKWebDialog) final public class _WebDialog : ObjectiveC.NSObject { @objc final public var shouldDeferVisibility: Swift.Bool @objc weak final public var delegate: FBSDKCoreKit.WebDialogDelegate? - @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreGraphics.CGRect = .zero, path: Swift.String? = nil) + @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreFoundation.CGRect = .zero, path: Swift.String? = nil) @objc convenience public init(name: Swift.String) @objc final public func show() @objc deinit @@ -669,7 +674,7 @@ extension FBSDKCoreKit._WebDialog : FBSDKCoreKit.WebDialogViewDelegate { @objc final public func webDialogViewDidFinishLoad(_ webDialogView: FBSDKCoreKit.FBWebDialogView) } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKWebViewFactory) final public class _WebViewFactory : ObjectiveC.NSObject, FBSDKCoreKit._WebViewProviding { - @objc final public func createWebView(frame: CoreGraphics.CGRect) -> FBSDKCoreKit.WebView + @objc final public func createWebView(frame: CoreFoundation.CGRect) -> FBSDKCoreKit.WebView @objc override dynamic public init() @objc deinit } diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.abi.json b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.abi.json new file mode 100644 index 00000000..e6b287c0 --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.abi.json @@ -0,0 +1,68792 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMNetworker", + "printedName": "AEMNetworker", + "children": [ + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerC17startGraphRequest04withE4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworker", + "printedName": "FBSDKCoreKit.AEMNetworker", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker(im)init", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventsStateFactory", + "printedName": "AppEventsStateFactory", + "children": [ + { + "kind": "Function", + "name": "createState", + "printedName": "createState(tokenString:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsState", + "printedName": "FBSDKCoreKit._AppEventsState", + "usr": "c:objc(cs)FBSDKAppEventsState" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC06createE011tokenString5appIDSo08FBSDKAppdE0CSS_SStF", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryC06createE011tokenString5appIDSo08FBSDKAppdE0CSS_SStF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createStateWithToken:appID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventsStateFactory", + "printedName": "FBSDKCoreKit.AppEventsStateFactory", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLink", + "printedName": "AppLink", + "children": [ + { + "kind": "Var", + "name": "sourceURL", + "printedName": "sourceURL", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)sourceURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL10Foundation0F0VSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "sourceURL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)sourceURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL10Foundation0F0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "sourceURL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targets", + "printedName": "targets", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)targets", + "mangledName": "$s12FBSDKCoreKit7AppLinkC7targetsSaySo08FBSDKAppD6Target_pGvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "targets", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)targets", + "mangledName": "$s12FBSDKCoreKit7AppLinkC7targetsSaySo08FBSDKAppD6Target_pGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "targets", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webURL", + "printedName": "webURL", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)webURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC6webURL10Foundation0F0VSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "webURL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)webURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC6webURL10Foundation0F0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "webURL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isBackToReferrer", + "printedName": "isBackToReferrer", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)backToReferrer", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "backToReferrer", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)isBackToReferrer", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "isBackToReferrer", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)setBackToReferrer:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvM", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sourceURL:targets:webURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)initWithSourceURL:targets:webURL:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL7targets03webF0AC10Foundation0F0VSg_SaySo08FBSDKAppD6Target_pGAJtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithSourceURL:targets:webURL:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "appLink", + "printedName": "appLink(sourceURL:targets:webURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkProtocol", + "printedName": "FBSDKCoreKit._AppLinkProtocol", + "usr": "c:objc(pl)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(cm)appLinkWithSourceURL:targets:webURL:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC03appD09sourceURL7targets03webG0So08FBSDKAppD0_p10Foundation0G0VSg_SaySo0jD6Target_pGALtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "appLinkWithSourceURL:targets:webURL:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sourceURL:targets:webURL:isBackToReferrer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)initWithSourceURL:targets:webURL:isBackToReferrer:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL7targets03webF016isBackToReferrerAC10Foundation0F0VSg_SaySo08FBSDKAppD6Target_pGAKSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithSourceURL:targets:webURL:isBackToReferrer:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)init", + "mangledName": "$s12FBSDKCoreKit7AppLinkCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink", + "mangledName": "$s12FBSDKCoreKit7AppLinkC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLink", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "AppLinkFactory", + "printedName": "AppLinkFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLink", + "printedName": "createAppLink(sourceURL:targets:webURL:isBackToReferrer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkProtocol", + "printedName": "FBSDKCoreKit._AppLinkProtocol", + "usr": "c:objc(pl)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC06createcD09sourceURL7targets03webH016isBackToReferrerSo08FBSDKAppD0_p10Foundation0H0VSg_SaySo0oD6Target_pGAMSbtF", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryC06createcD09sourceURL7targets03webH016isBackToReferrerSo08FBSDKAppD0_p10Foundation0H0VSg_SaySo0oD6Target_pGAMSbtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkWithSourceURL:targets:webURL:isBackToReferrer:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkFactory", + "printedName": "FBSDKCoreKit.AppLinkFactory", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkNavigation", + "printedName": "AppLinkNavigation", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "NonObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultResolver", + "printedName": "defaultResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cpy)defaultResolver", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "defaultResolver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)defaultResolver", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)setDefaultResolver:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extras", + "printedName": "extras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)extras", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC6extrasSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)extras", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC6extrasSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkData", + "printedName": "appLinkData", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)appLinkData", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD4DataSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)appLinkData", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD4DataSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLink", + "printedName": "appLink", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)appLink", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD0AA0cD0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)appLink", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD0AA0cD0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "navigationType", + "printedName": "navigationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)navigationType", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationTypeSo08FBSDKAppdeG0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)navigationType", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationTypeSo08FBSDKAppdeG0Vvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLink:extras:appLinkData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)initWithAppLink:extras:appLinkData:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD06extras0fD4DataAcA0cD0C_SDySSypGAItcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppLink:extras:appLinkData:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLink:extras:appLinkData:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)initWithAppLink:extras:appLinkData:settings:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD06extras0fD4Data8settingsAcA0cD0C_SDySSypGAjA16SettingsProtocol_ptcfc", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "initWithAppLink:extras:appLinkData:settings:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "navigation", + "printedName": "navigation(with:extras:appLinkData:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigationWithAppLink:extras:appLinkData:settings:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC10navigation4with6extras03appD4Data8settingsAcA0cD0C_SDySSypGAkA16SettingsProtocol_ptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "navigationWithAppLink:extras:appLinkData:settings:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "callbackAppLinkData", + "printedName": "callbackAppLinkData(forApp:url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Swift.String]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + }, + { + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)callbackAppLinkDataForAppWithName:url:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC08callbackcD4Data03forC03urlSDySSSDyS2SGGSS_SStFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "callbackAppLinkDataForAppWithName:url:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC8navigateSo08FBSDKAppdE4TypeVyKF", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigateSo08FBSDKAppdE4TypeVyKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resolveAppLink", + "printedName": "resolveAppLink(_:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)resolveAppLink:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC07resolvecD0_7handlery10Foundation3URLV_yAA0cD0CSg_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "resolveAppLink:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resolveAppLink", + "printedName": "resolveAppLink(_:resolver:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)resolveAppLink:resolver:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC07resolvecD0_8resolver7handlery10Foundation3URLV_So08FBSDKAppD9Resolving_pyAA0cD0CSg_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "resolveAppLink:resolver:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC8navigate2toSo08FBSDKAppdE4TypeVAA0cD0C_tKFZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2toSo08FBSDKAppdE4TypeVAA0cD0C_tKFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigationType", + "printedName": "navigationType(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigationTypeForLink:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationType3forSo08FBSDKAppdeG0VAA0cD0C_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigationTypeForLink:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigateToURL:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2to7handlery10Foundation3URLV_ySo08FBSDKAppdE4TypeV_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigateToURL:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:resolver:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigateToURL:resolver:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2to8resolver7handlery10Foundation3URLV_So08FBSDKAppD9Resolving_pySo0ldE4TypeV_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigateToURL:resolver:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appLinkURL", + "printedName": "appLinkURL(targetURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC03appD3URL06targetG010Foundation0G0VSgAH_tKF", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD3URL06targetG010Foundation0G0VSgAH_tKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postNavigateEventNotification", + "printedName": "postNavigateEventNotification(targetURL:error:navigationType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)postNavigateEventNotificationWithTargetURL:error:navigationType:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC29postNavigateEventNotification9targetURL5error14navigationTypey10Foundation0K0VSg_s5Error_pSgSo08FBSDKAppdeN0VtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigationType", + "printedName": "navigationType(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)navigationTypeFor:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationType3forSo08FBSDKAppdeG0VSaySo0iD6Target_pG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)init", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkEventPoster", + "printedName": "appLinkEventPoster", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkResolver", + "printedName": "appLinkResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:urlOpener:appLinkEventPoster:appLinkResolver:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settings9urlOpener03appD11EventPoster0kD8ResolverAeA16SettingsProtocol_p_So22FBSDKInternalURLOpener_pSo08FBSDKAppdL7Posting_pSo0sD9Resolving_ptcfc", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settings9urlOpener03appD11EventPoster0kD8ResolverAeA16SettingsProtocol_p_So22FBSDKInternalURLOpener_pSo08FBSDKAppdL7Posting_pSo0sD9Resolving_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkNavigation", + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkResolver", + "printedName": "AppLinkResolver", + "children": [ + { + "kind": "Var", + "name": "cachedAppLinks", + "printedName": "cachedAppLinks", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(py)cachedAppLinks", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)cachedAppLinks", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)setCachedAppLinks:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "appLink", + "printedName": "appLink(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)appLinkFromURL:handler:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC03appD04from7handlery10Foundation3URLV_yAA0cD0CSg_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "appLinkFromURL:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appLinks", + "printedName": "appLinks(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Foundation.URL : FBSDKCoreKit.AppLink], Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([Foundation.URL : FBSDKCoreKit.AppLink], Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Foundation.URL : FBSDKCoreKit.AppLink]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)appLinksFrom:handler:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC8appLinks4from7handlerySay10Foundation3URLVG_ySDyAiA0cD0CG_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAppLink", + "printedName": "buildAppLink(for:result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)buildAppLinkFor:result:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC05buildcD03for6resultAA0cD0C10Foundation3URLV_SDySSSDySSypGGtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolver", + "printedName": "FBSDKCoreKit.AppLinkResolver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)init", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "requestBuilder", + "printedName": "requestBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "clientTokenProvider", + "printedName": "clientTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(requestBuilder:clientTokenProvider:accessTokenProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + }, + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilder19clientTokenProvider06accesskL0AESo08FBSDKAppdE15RequestBuilding_p_So011FBSDKClientK9Providing_pSo011FBSDKAccesskR0_pXptcfc", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilder19clientTokenProvider06accesskL0AESo08FBSDKAppdE15RequestBuilding_p_So011FBSDKClientK9Providing_pSo011FBSDKAccesskR0_pXptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkResolver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkResolverRequestBuilder", + "printedName": "AppLinkResolverRequestBuilder", + "children": [ + { + "kind": "Var", + "name": "userInterfaceIdiom", + "printedName": "userInterfaceIdiom", + "children": [ + { + "kind": "TypeNominal", + "name": "UIUserInterfaceIdiom", + "printedName": "UIKit.UIUserInterfaceIdiom", + "usr": "c:@E@UIUserInterfaceIdiom" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiom33_D2EA324685EEF2BCFBEFEB3B7F7BA944LLSo06UIUseriJ0Vvp", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiom33_D2EA324685EEF2BCFBEFEB3B7F7BA944LLSo06UIUseriJ0Vvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userInterfaceIdiom:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolverRequestBuilder", + "printedName": "FBSDKCoreKit.AppLinkResolverRequestBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder" + }, + { + "kind": "TypeNominal", + "name": "UIUserInterfaceIdiom", + "printedName": "UIKit.UIUserInterfaceIdiom", + "hasDefaultArg": true, + "usr": "c:@E@UIUserInterfaceIdiom" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiomACSo06UIUseriJ0V_tcfc", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiomACSo06UIUseriJ0V_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "request", + "printedName": "request(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestProtocol", + "printedName": "FBSDKCoreKit.GraphRequestProtocol", + "usr": "c:objc(pl)FBSDKGraphRequest" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)requestForURLs:", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC7request3forSo010FBSDKGraphF0_pSay10Foundation3URLVG_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requestForURLs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getIdiomSpecificField", + "printedName": "getIdiomSpecificField()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)getIdiomSpecificField", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC21getIdiomSpecificFieldSSSgyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "getIdiomSpecificField", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolverRequestBuilder", + "printedName": "FBSDKCoreKit.AppLinkResolverRequestBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)init", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkTarget", + "printedName": "AppLinkTarget", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)URL", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10Foundation3URLVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "URL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)URL", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10Foundation3URLVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "URL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appStoreId", + "printedName": "appStoreId", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)appStoreId", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC10appStoreIdSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appStoreId", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)appStoreId", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC10appStoreIdSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "appStoreId", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appName", + "printedName": "appName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)appName", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC7appNameSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appName", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)appName", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC7appNameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "appName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)initWithURL:appStoreId:appName:", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10appStoreId0G4NameAC10Foundation3URLVSg_SSSgSStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithURL:appStoreId:appName:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "appLinkTargetWithURL", + "printedName": "appLinkTargetWithURL(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(cm)appLinkTargetWithURL:appStoreId:appName:", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC03appdE7WithURL3url0F7StoreId0F4NameAC10Foundation0H0VSg_SSSgSStFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "appLinkTargetWithURL:appStoreId:appName:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)init", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkTarget", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkTargetFactory", + "printedName": "AppLinkTargetFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLinkTarget", + "printedName": "createAppLinkTarget(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC06createcdE03url10appStoreId0I4NameSo08FBSDKAppdE0_p10Foundation3URLVSg_SSSgSStF", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryC06createcdE03url10appStoreId0I4NameSo08FBSDKAppdE0_p10Foundation3URLVSg_SSSgSStF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkTargetWithURL:appStoreId:appName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetFactory", + "printedName": "FBSDKCoreKit.AppLinkTargetFactory", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkURLFactory", + "printedName": "AppLinkURLFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLinkURL", + "printedName": "createAppLinkURL(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLProtocol", + "printedName": "FBSDKCoreKit._AppLinkURLProtocol", + "usr": "c:objc(pl)FBSDKAppLinkURL" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory(im)createAppLinkURLWithURL:", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryC06createcD3URL4withSo08FBSDKAppdG0_p10Foundation0G0V_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkURLWithURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkURLFactory", + "printedName": "FBSDKCoreKit.AppLinkURLFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory(im)init", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ApplicationDelegate", + "printedName": "ApplicationDelegate", + "children": [ + { + "kind": "Var", + "name": "applicationObservers", + "printedName": "applicationObservers", + "children": [ + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)applicationObservers", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationObservers", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setApplicationObservers:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "components", + "printedName": "components", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvp", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvg", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurator", + "printedName": "configurator", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvp", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvg", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAppLaunched", + "printedName": "isAppLaunched", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)isAppLaunched", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)isAppLaunched", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setIsAppLaunched:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "applicationState", + "printedName": "applicationState", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)applicationState", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationState", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setApplicationState:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0VvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(cpy)sharedInstance", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "sharedInstance", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(cm)sharedInstance", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)init", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(components:configurator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + }, + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + }, + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10components12configuratorAcA04CoreB10ComponentsC_AA0gB11Configuring_ptcfc", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10components12configuratorAcA04CoreB10ComponentsC_AA0gB11Configuring_ptcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "initializeSDK", + "printedName": "initializeSDK()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)initializeSDK", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13initializeSDKyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initializeSDK", + "printedName": "initializeSDK(launchOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)initializeSDKWithLaunchOptions:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13initializeSDK13launchOptionsySDySo019UIApplicationLaunchH3KeyaypGSg_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:continue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "NSUserActivity", + "printedName": "Foundation.NSUserActivity", + "usr": "c:objc(cs)NSUserActivity" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:continueUserActivity:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_8continueSbSo13UIApplicationC_So14NSUserActivityCtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:continueUserActivity:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.OpenURLOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenURLOptionsKey", + "printedName": "UIKit.UIApplication.OpenURLOptionsKey", + "usr": "c:@T@UIApplicationOpenURLOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:openURL:options:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:options:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_4open06sourceC010annotationSbSo13UIApplicationC_10Foundation3URLVSSSgypSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:didFinishLaunchingWithOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:didFinishLaunchingWithOptions:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_29didFinishLaunchingWithOptionsSbSo13UIApplicationC_SDySo0k6LaunchJ3KeyaypGSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC29applicationDidEnterBackgroundyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Notification?", + "children": [ + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationDidBecomeActive:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC26applicationDidBecomeActiveyy10Foundation12NotificationVSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationWillResignActive", + "printedName": "applicationWillResignActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationWillResignActive:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC27applicationWillResignActiveyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addObserver", + "printedName": "addObserver(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)addObserver:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11addObserveryySo25FBSDKApplicationObserving_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeObserver", + "printedName": "removeObserver(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)removeObserver:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC14removeObserveryySo25FBSDKApplicationObserving_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logSDKInitialize", + "printedName": "logSDKInitialize()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)logSDKInitialize", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16logSDKInitializeyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKApplicationDelegate", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "AuthenticationServices", + "printedName": "AuthenticationServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationSessionProtocol", + "printedName": "AuthenticationSessionProtocol", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:callbackURLScheme:completionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP3url17callbackURLScheme17completionHandlerx10Foundation3URLV_SSSgyAISg_s5Error_pSgtctcfc", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP3url17callbackURLScheme17completionHandlerx10Foundation3URLV_SSSgyAISg_s5Error_pSgtctcfc", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP5startSbyF", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP5startSbyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP6cancelyyF", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP6cancelyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "presentationContextProvider", + "printedName": "presentationContextProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvp", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "intro_iOS": "13.0", + "declAttributes": [ + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvg", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvs", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvM", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "intro_iOS": "13.0", + "declAttributes": [ + "Available" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationSessionState", + "printedName": "AuthenticationSessionState", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO4noneyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO4noneyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "started", + "printedName": "started", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO7startedyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO7startedyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "showAlert", + "printedName": "showAlert", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO9showAlertyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9showAlertyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "showWebBrowser", + "printedName": "showWebBrowser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO14showWebBrowseryA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO14showWebBrowseryA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "canceledBySystem", + "printedName": "canceledBySystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO16canceledBySystemyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO16canceledBySystemyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26AuthenticationSessionStateO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenClaims", + "printedName": "AuthenticationTokenClaims", + "children": [ + { + "kind": "Var", + "name": "jti", + "printedName": "jti", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iss", + "printedName": "iss", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aud", + "printedName": "aud", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exp", + "printedName": "exp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iat", + "printedName": "iat", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sub", + "printedName": "sub", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "givenName", + "printedName": "givenName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "familyName", + "printedName": "familyName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "picture", + "printedName": "picture", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userFriends", + "printedName": "userFriends", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvp", + "moduleName": "FBSDKCoreKit", + "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userBirthday", + "printedName": "userBirthday", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userAgeRange", + "printedName": "userAgeRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userHometown", + "printedName": "userHometown", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userLocation", + "printedName": "userLocation", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userGender", + "printedName": "userGender", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userLink", + "printedName": "userLink", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(encodedClaims:nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "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@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims(im)initWithEncodedClaims:nonce:", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC07encodedE05nonceACSgSS_SStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEncodedClaims:nonce:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jti:iss:aud:nonce:exp:iat:sub:name:givenName:middleName:familyName:email:picture:userFriends:userBirthday:userAgeRange:userHometown:userLocation:userGender:userLink:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "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 : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "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" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3jti3iss3aud5nonce3exp3iat3sub4name9givenName06middleO006familyO05email7picture11userFriends0T8Birthday0T8AgeRange0T8Hometown0T8Location0T6Gender0T4LinkACSS_S3SS2dS2SSgA5XSaySSGSgAXSDySSSo8NSNumberCGSgSDyS2SGSgA4_A2Xtcfc", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jti3iss3aud5nonce3exp3iat3sub4name9givenName06middleO006familyO05email7picture11userFriends0T8Birthday0T8AgeRange0T8Hometown0T8Location0T6Gender0T4LinkACSS_S3SS2dS2SSgA5XSaySSGSgAXSDySSSo8NSNumberCGSgSDyS2SGSgA4_A2Xtcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims(im)init", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAeA16SettingsProtocol_p_tcfc", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAeA16SettingsProtocol_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAuthenticationTokenClaims", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "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": "BackgroundEventLogger", + "printedName": "BackgroundEventLogger", + "children": [ + { + "kind": "Var", + "name": "isNewBackgroundRefresh", + "printedName": "isNewBackgroundRefresh", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvp", + "moduleName": "FBSDKCoreKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logBackgroundRefreshStatus", + "printedName": "logBackgroundRefreshStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBackgroundRefreshStatus", + "printedName": "UIKit.UIBackgroundRefreshStatus", + "usr": "c:@E@UIBackgroundRefreshStatus" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "moduleName": "FBSDKCoreKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogger", + "printedName": "FBSDKCoreKit.BackgroundEventLogger", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerVACycfc", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerVACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(infoDictionaryProvider:eventLogger:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProvider05eventE0AESo09FBSDKInfoI9Providing_p_So17FBSDKEventLogging_ptcfc", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProvider05eventE0AESo09FBSDKInfoI9Providing_p_So17FBSDKEventLogging_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BackgroundEventLogging", + "printedName": "BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "BackgroundEventLogging", + "printedName": "BackgroundEventLogging", + "children": [ + { + "kind": "Function", + "name": "logBackgroundRefreshStatus", + "printedName": "logBackgroundRefreshStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBackgroundRefreshStatus", + "printedName": "UIKit.UIBackgroundRefreshStatus", + "usr": "c:@E@UIBackgroundRefreshStatus" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BackgroundEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BridgeAPIResponseCreating", + "printedName": "BridgeAPIResponseCreating", + "children": [ + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:responseURL:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponseCancelled", + "printedName": "createResponseCancelled(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "CAPIReporter", + "printedName": "CAPIReporter", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)enable", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP6enableyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(factory:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)configureWithFactory:settings:", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP9configure7factory8settingsySo24FBSDKGraphRequestFactory_p_AA16SettingsProtocol_ptF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordEvent", + "printedName": "recordEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)recordEvent:", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP11recordEventyySDySSypGF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKCAPIReporter", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitComponents", + "printedName": "CoreKitComponents", + "children": [ + { + "kind": "Var", + "name": "accessTokenExpirer", + "printedName": "accessTokenExpirer", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDProvider", + "printedName": "advertiserIDProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemNetworker", + "printedName": "aemNetworker", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemReporter", + "printedName": "aemReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventParametersExtractor", + "printedName": "appEventParametersExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 5, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEvents", + "printedName": "appEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 6, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsConfigurationProvider", + "printedName": "appEventsConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 7, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsDropDeterminer", + "printedName": "appEventsDropDeterminer", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 8, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsStateProvider", + "printedName": "appEventsStateProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 9, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsStateStore", + "printedName": "appEventsStateStore", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 10, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsUtility", + "printedName": "appEventsUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 11, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkEventPoster", + "printedName": "appLinkEventPoster", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 12, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkFactory", + "printedName": "appLinkFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 13, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkResolver", + "printedName": "appLinkResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 14, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkTargetFactory", + "printedName": "appLinkTargetFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 15, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkURLFactory", + "printedName": "appLinkURLFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 16, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "atePublisherFactory", + "printedName": "atePublisherFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 17, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenWallet", + "printedName": "authenticationTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 18, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backgroundEventLogger", + "printedName": "backgroundEventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 19, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "capiReporter", + "printedName": "capiReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 20, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codelessIndexer", + "printedName": "codelessIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 21, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crashHandler", + "printedName": "crashHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 22, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crashObserver", + "printedName": "crashObserver", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 23, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataExtractor", + "printedName": "dataExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 24, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultDataStore", + "printedName": "defaultDataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 25, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deviceInformationProvider", + "printedName": "deviceInformationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 26, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dialogConfigurationMapBuilder", + "printedName": "dialogConfigurationMapBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 27, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorConfigurationProvider", + "printedName": "errorConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 28, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 29, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorReporter", + "printedName": "errorReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 30, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventDeactivationManager", + "printedName": "eventDeactivationManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 31, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 32, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "featureChecker", + "printedName": "featureChecker", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 33, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "featureExtractor", + "printedName": "featureExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 34, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileManager", + "printedName": "fileManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 35, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 36, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "getApplicationActivationNotifier", + "printedName": "getApplicationActivationNotifier", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 37, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestConnectionFactory", + "printedName": "graphRequestConnectionFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 38, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 39, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionLoggerFactory", + "printedName": "impressionLoggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 40, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 41, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "internalURLOpener", + "printedName": "internalURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 42, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 43, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 44, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggerFactory", + "printedName": "loggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 45, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macCatalystDeterminator", + "printedName": "macCatalystDeterminator", + "children": [ + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 46, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataIndexer", + "printedName": "metadataIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 47, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelManager", + "printedName": "modelManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 48, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 49, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "operatingSystemVersionComparer", + "printedName": "operatingSystemVersionComparer", + "children": [ + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 50, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paymentObserver", + "printedName": "paymentObserver", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 51, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "piggybackManager", + "printedName": "piggybackManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 52, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "profileSetter", + "printedName": "profileSetter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 53, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "restrictiveDataFilterManager", + "printedName": "restrictiveDataFilterManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 54, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rulesFromKeyProvider", + "printedName": "rulesFromKeyProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 55, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 56, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionDataTaskProvider", + "printedName": "sessionDataTaskProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 57, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 58, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "skAdNetworkReporter", + "printedName": "skAdNetworkReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 59, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "suggestedEventsIndexer", + "printedName": "suggestedEventsIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 60, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swizzler", + "printedName": "swizzler", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 61, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeSpentRecorder", + "printedName": "timeSpentRecorder", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 62, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokenCache", + "printedName": "tokenCache", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 63, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlHoster", + "printedName": "urlHoster", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 64, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlSessionProxyFactory", + "printedName": "urlSessionProxyFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 65, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userDataStore", + "printedName": "userDataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 66, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userIDProvider", + "printedName": "userIDProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 67, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webViewProvider", + "printedName": "webViewProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 68, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemManager", + "printedName": "aemManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 69, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "protectedModeManager", + "printedName": "protectedModeManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 70, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macaRuleMatchingManager", + "printedName": "macaRuleMatchingManager", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 71, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenExpirer:accessTokenWallet:advertiserIDProvider:aemNetworker:aemReporter:appEventParametersExtractor:appEvents:appEventsConfigurationProvider:appEventsDropDeterminer:appEventsStateProvider:appEventsStateStore:appEventsUtility:appLinkEventPoster:appLinkFactory:appLinkResolver:appLinkTargetFactory:appLinkURLFactory:atePublisherFactory:authenticationTokenWallet:backgroundEventLogger:capiReporter:codelessIndexer:crashHandler:crashObserver:dataExtractor:defaultDataStore:deviceInformationProvider:dialogConfigurationMapBuilder:errorConfigurationProvider:errorFactory:errorReporter:eventDeactivationManager:eventLogger:featureChecker:featureExtractor:fileManager:gateKeeperManager:getApplicationActivationNotifier:graphRequestConnectionFactory:graphRequestFactory:impressionLoggerFactory:infoDictionaryProvider:internalURLOpener:internalUtility:logger:loggerFactory:macCatalystDeterminator:metadataIndexer:modelManager:notificationCenter:operatingSystemVersionComparer:paymentObserver:piggybackManager:profileSetter:restrictiveDataFilterManager:rulesFromKeyProvider:serverConfigurationProvider:sessionDataTaskProvider:settings:skAdNetworkReporter:suggestedEventsIndexer:swizzler:timeSpentRecorder:tokenCache:urlHoster:urlSessionProxyFactory:userDataStore:userIDProvider:webViewProvider:aemManager:protectedModeManager:macaRuleMatchingManager:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + }, + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + }, + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + }, + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + }, + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + }, + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + }, + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + }, + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + }, + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + }, + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + }, + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + }, + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + }, + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + }, + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + }, + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + }, + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + }, + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + }, + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirer0eF6Wallet20advertiserIDProvider12aemNetworker0K8Reporter27appEventParametersExtractor0N6Events0nR21ConfigurationProvider0nR14DropDeterminer0nr5StateT00nrW5Store0nR7Utility0n4LinkO6Poster0nZ7Factory0nZ8Resolver0nZ13TargetFactory0nZ10URLFactory19atePublisherFactory014authenticationfH0010backgroundO6Logger04capiM015codelessIndexer12crashHandler13crashObserver04dataQ0011defaultDataX0017deviceInformationT006dialogS10MapBuilder05errorsT012errorFactory05errorM024eventDeactivationManager11eventLogger14featureChecker07featureQ011fileManager17gateKeeperManager32getApplicationActivationNotifier29graphRequestConnectionFactory19graphRequestFactory23impressionLoggerFactory014infoDictionaryT017internalURLOpener08internalY06logger13loggerFactory23macCatalystDeterminator15metadataIndexer12modelManager18notificationCenter30operatingSystemVersionComparer15paymentObserver16piggybackManager13profileSetter28restrictiveDataFilterManager012rulesFromKeyT006serversT0015sessionDataTaskT08settings011skAdNetworkM009suggestedR7Indexer8swizzler17timeSpentRecorder10tokenCache9urlHoster22urlSessionProxyFactory08userDataX004userJ007webViewT00K7Manager20protectedModeManager23macaRuleMatchingManagerAcA07_AccessF8Expiring_p_So011FBSDKAccessF9Providing_So25FBSDKTokenStringProvidingpXpSo26FBSDKAdvertiserIDProviding_p8FBAEMKit13AEMNetworking_pSgAA20_AEMReporterProtocol_pXpSo08FBSDKAppoP10Extracting_pSo17FBSDKEventLogging_So08FBSDKAppR11ConfiguringSo26FBSDKApplicationActivatingSo34FBSDKApplicationLifecycleObservingSo016FBSDKApplicationW7SettingSo30FBSDKSourceApplicationTrackingpSo08FBSDKApprS9Providing_pSo08FBSDKAppoU11Determining_pSo08FBSDKApprW9Providing_pSo08FBSDKApprW10Persisting_pSoA64__SoA56_So08FBSDKApprY0So21FBSDKLoggingNotifyingpSo08FBSDKAppzO7Posting_pSo08FBSDKAppZ8Creating_pSo08FBSDKAppZ9Resolving_pSo08FBSDKAppZ14TargetCreating_pSo08FBSDKAppZ11URLCreating_pSo25FBSDKATEPublisherCreating_pSo019FBSDKAuthenticationF9Providing_pXpAA010BackgroundO7Logging_pAA12CAPIReporter_pSo21FBSDKCodelessIndexing_pXpSo17FBSDKCrashHandler_pSo19FBSDKCrashObserving_pSo23FBSDKFileDataExtracting_pXpSo19FBSDKDataPersisting_pSo31FBSDKDeviceInformationProviding_pSo011FBSDKDialogS11MapBuilding_pSo010FBSDKErrorS9Providing_pSo18FBSDKErrorCreating_pSo19FBSDKErrorReporting_pSo08FBSDKAppR19ParameterProcessing_So21FBSDKEventsProcessingpSoA57__pSo20FBSDKFeatureChecking_So21FBSDKFeatureDisablingpSo22FBSDKFeatureExtracting_pXpSo17FBSDKFileManaging_pSo23FBSDKGateKeeperManaging_pXpypycSo34FBSDKGraphRequestConnectionFactory_pSo24FBSDKGraphRequestFactory_pSo28FBSDKImpressionLoggerFactory_pSo28FBSDKInfoDictionaryProviding_pSo22FBSDKInternalURLOpener_pSo013FBSDKInternalY0_pSo12FBSDKLogging_pXpSo21__FBSDKLoggerCreating_pSo27FBSDKMacCatalystDetermining_pSo21FBSDKMetadataIndexing_pSo20FBSDKEventProcessing_So014FBSDKIntegrityp9ProcessorT0pSo25_FBSDKNotificationPosting_So27FBSDKNotificationDeliveringpSo36FBSDKOperatingSystemVersionComparing_pSo21FBSDKPaymentObserving_pSo34FBSDKGraphRequestPiggybackManaging_pAA16ProfileProviding_pXpSoA88__SoA89_pSo017FBSDKRulesFromKeyT0_pSo011FBSDKServerS9Providing_pSo24FBSDKURLSessionProviding_pSo20FBSDKSettingsLogging_AA16SettingsProtocolpA52_20SKAdNetworkReporting_So08FBSDKApprM0pSgSo014FBSDKSuggestedR7Indexer_pSo14FBSDKSwizzling_pXpSoA62__So23FBSDKTimeSpentRecordingpSo17FBSDKTokenCaching_pSo15FBSDKURLHosting_pSo29FBSDKURLSessionProxyProviding_pSo23FBSDKUserDataPersisting_pSo20FBSDKUserIDProviding_pSo21FBSDKWebViewProviding_pSo14FBSDKAutoSetup_pSoA88__pAA16MACARuleMatching_ptcfc", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirer0eF6Wallet20advertiserIDProvider12aemNetworker0K8Reporter27appEventParametersExtractor0N6Events0nR21ConfigurationProvider0nR14DropDeterminer0nr5StateT00nrW5Store0nR7Utility0n4LinkO6Poster0nZ7Factory0nZ8Resolver0nZ13TargetFactory0nZ10URLFactory19atePublisherFactory014authenticationfH0010backgroundO6Logger04capiM015codelessIndexer12crashHandler13crashObserver04dataQ0011defaultDataX0017deviceInformationT006dialogS10MapBuilder05errorsT012errorFactory05errorM024eventDeactivationManager11eventLogger14featureChecker07featureQ011fileManager17gateKeeperManager32getApplicationActivationNotifier29graphRequestConnectionFactory19graphRequestFactory23impressionLoggerFactory014infoDictionaryT017internalURLOpener08internalY06logger13loggerFactory23macCatalystDeterminator15metadataIndexer12modelManager18notificationCenter30operatingSystemVersionComparer15paymentObserver16piggybackManager13profileSetter28restrictiveDataFilterManager012rulesFromKeyT006serversT0015sessionDataTaskT08settings011skAdNetworkM009suggestedR7Indexer8swizzler17timeSpentRecorder10tokenCache9urlHoster22urlSessionProxyFactory08userDataX004userJ007webViewT00K7Manager20protectedModeManager23macaRuleMatchingManagerAcA07_AccessF8Expiring_p_So011FBSDKAccessF9Providing_So25FBSDKTokenStringProvidingpXpSo26FBSDKAdvertiserIDProviding_p8FBAEMKit13AEMNetworking_pSgAA20_AEMReporterProtocol_pXpSo08FBSDKAppoP10Extracting_pSo17FBSDKEventLogging_So08FBSDKAppR11ConfiguringSo26FBSDKApplicationActivatingSo34FBSDKApplicationLifecycleObservingSo016FBSDKApplicationW7SettingSo30FBSDKSourceApplicationTrackingpSo08FBSDKApprS9Providing_pSo08FBSDKAppoU11Determining_pSo08FBSDKApprW9Providing_pSo08FBSDKApprW10Persisting_pSoA64__SoA56_So08FBSDKApprY0So21FBSDKLoggingNotifyingpSo08FBSDKAppzO7Posting_pSo08FBSDKAppZ8Creating_pSo08FBSDKAppZ9Resolving_pSo08FBSDKAppZ14TargetCreating_pSo08FBSDKAppZ11URLCreating_pSo25FBSDKATEPublisherCreating_pSo019FBSDKAuthenticationF9Providing_pXpAA010BackgroundO7Logging_pAA12CAPIReporter_pSo21FBSDKCodelessIndexing_pXpSo17FBSDKCrashHandler_pSo19FBSDKCrashObserving_pSo23FBSDKFileDataExtracting_pXpSo19FBSDKDataPersisting_pSo31FBSDKDeviceInformationProviding_pSo011FBSDKDialogS11MapBuilding_pSo010FBSDKErrorS9Providing_pSo18FBSDKErrorCreating_pSo19FBSDKErrorReporting_pSo08FBSDKAppR19ParameterProcessing_So21FBSDKEventsProcessingpSoA57__pSo20FBSDKFeatureChecking_So21FBSDKFeatureDisablingpSo22FBSDKFeatureExtracting_pXpSo17FBSDKFileManaging_pSo23FBSDKGateKeeperManaging_pXpypycSo34FBSDKGraphRequestConnectionFactory_pSo24FBSDKGraphRequestFactory_pSo28FBSDKImpressionLoggerFactory_pSo28FBSDKInfoDictionaryProviding_pSo22FBSDKInternalURLOpener_pSo013FBSDKInternalY0_pSo12FBSDKLogging_pXpSo21__FBSDKLoggerCreating_pSo27FBSDKMacCatalystDetermining_pSo21FBSDKMetadataIndexing_pSo20FBSDKEventProcessing_So014FBSDKIntegrityp9ProcessorT0pSo25_FBSDKNotificationPosting_So27FBSDKNotificationDeliveringpSo36FBSDKOperatingSystemVersionComparing_pSo21FBSDKPaymentObserving_pSo34FBSDKGraphRequestPiggybackManaging_pAA16ProfileProviding_pXpSoA88__SoA89_pSo017FBSDKRulesFromKeyT0_pSo011FBSDKServerS9Providing_pSo24FBSDKURLSessionProviding_pSo20FBSDKSettingsLogging_AA16SettingsProtocolpA52_20SKAdNetworkReporting_So08FBSDKApprM0pSgSo014FBSDKSuggestedR7Indexer_pSo14FBSDKSwizzling_pXpSoA62__So23FBSDKTimeSpentRecordingpSo17FBSDKTokenCaching_pSo15FBSDKURLHosting_pSo29FBSDKURLSessionProxyProviding_pSo23FBSDKUserDataPersisting_pSo20FBSDKUserIDProviding_pSo21FBSDKWebViewProviding_pSo14FBSDKAutoSetup_pSoA88__pAA16MACARuleMatching_ptcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC7defaultACvpZ", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC7defaultACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC7defaultACvgZ", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC7defaultACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Testable", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitConfigurator", + "printedName": "CoreKitConfigurator", + "children": [ + { + "kind": "Var", + "name": "components", + "printedName": "components", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvp", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvg", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(components:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfigurator", + "printedName": "FBSDKCoreKit.CoreKitConfigurator", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC" + }, + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAcA0cB10ComponentsC_tcfc", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAcA0cB10ComponentsC_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "performConfiguration", + "printedName": "performConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC20performConfigurationyyF", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC20performConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CoreKitConfiguring", + "printedName": "CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitConfiguring", + "printedName": "CoreKitConfiguring", + "children": [ + { + "kind": "Function", + "name": "performConfiguration", + "printedName": "performConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP20performConfigurationyyF", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP20performConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CoreKitConfiguring>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreUIApplication", + "printedName": "CoreUIApplication", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(cpy)shared", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC6sharedSo22FBSDKInternalURLOpener_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(cm)shared", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC6sharedSo22FBSDKInternalURLOpener_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreUIApplication", + "printedName": "FBSDKCoreKit.CoreUIApplication", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(im)init", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "AssociatedType", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "AssociatedType", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit16DependentAsValueP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValueP15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE15getDependencies0eG0QzyKF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ValueDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ValueDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EventDeactivationManager", + "printedName": "EventDeactivationManager", + "children": [ + { + "kind": "Var", + "name": "isEventDeactivationEnabled", + "printedName": "isEventDeactivationEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC02iscD7Enabled33_14ACE7546C2C147776F91B107E749DCALLSbvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC02iscD7Enabled33_14ACE7546C2C147776F91B107E749DCALLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "deactivatedEvents", + "printedName": "deactivatedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC17deactivatedEvents33_14ACE7546C2C147776F91B107E749DCALLShySSGvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC17deactivatedEvents33_14ACE7546C2C147776F91B107E749DCALLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "eventsWithDeactivatedParameters", + "printedName": "eventsWithDeactivatedParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.EventDeactivationManager.DeactivatedEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "DeactivatedEvent", + "printedName": "FBSDKCoreKit.EventDeactivationManager.DeactivatedEvent", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC011DeactivatedC033_14ACE7546C2C147776F91B107E749DCALLV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC31eventsWithDeactivatedParameters33_14ACE7546C2C147776F91B107E749DCALLSayAC0hC0AELLVGvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC31eventsWithDeactivatedParameters33_14ACE7546C2C147776F91B107E749DCALLSayAC0hC0AELLVGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC6enableyyF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "$__lazy_storage_$_enableOnce", + "printedName": "$__lazy_storage_$_enableOnce", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC28$__lazy_storage_$_enableOnce33_14ACE7546C2C147776F91B107E749DCALLyycSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC28$__lazy_storage_$_enableOnce33_14ACE7546C2C147776F91B107E749DCALLyycSgvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final" + ], + "fixedbinaryorder": 5, + "hasStorage": true + }, + { + "kind": "Function", + "name": "processEvents", + "printedName": "processEvents(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSMutableArray", + "printedName": "Foundation.NSMutableArray", + "usr": "c:objc(cs)NSMutableArray" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC13processEventsyySo14NSMutableArrayCF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC13processEventsyySo14NSMutableArrayCF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processEvents:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEvents.Name?", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC17processParameters_9eventNameSDySo08FBSDKAppc9ParameterI0aypGSgAI_So0jcI0aSgtF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC17processParameters_9eventNameSDySo08FBSDKAppc9ParameterI0aypGSgAI_So0jcI0aSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:eventName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDeactivationManager", + "printedName": "FBSDKCoreKit.EventDeactivationManager", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerCACycfc", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBIcon", + "printedName": "FBIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit6FBIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4sizeSo7UIImageCSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:scale:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5scaleSo7UIImageCSgSo6CGSizeV_12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:color:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:color:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5colorSo7UIImageCSgSo6CGSizeV_So7UIColorCtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:scale:color:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:scale:color:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5scale5colorSo7UIImageCSgSo6CGSizeV_12CoreGraphics7CGFloatVSo7UIColorCtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBIcon", + "printedName": "FBSDKCoreKit.FBIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)init", + "mangledName": "$s12FBSDKCoreKit6FBIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "mangledName": "$s12FBSDKCoreKit6FBIconC", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKIcon", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBProfilePictureView", + "printedName": "FBProfilePictureView", + "children": [ + { + "kind": "Var", + "name": "pictureMode", + "printedName": "pictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)pictureMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)pictureMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPictureMode:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0OvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0OvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profileID", + "printedName": "profileID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)profileID", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)profileID", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setProfileID:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentState", + "printedName": "currentState", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvp", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvg", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasProfileImage", + "printedName": "hasProfileImage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)hasProfileImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)hasProfileImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setHasProfileImage:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastState", + "printedName": "lastState", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "needsImageUpdate", + "printedName": "needsImageUpdate", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)needsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)needsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setNeedsImageUpdate:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeholderImageIsValid", + "printedName": "placeholderImageIsValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)placeholderImageIsValid", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)placeholderImageIsValid", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPlaceholderImageIsValid:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageView", + "printedName": "imageView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)imageView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)imageView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setImageView:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0CvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0CvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bounds", + "printedName": "bounds", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)bounds", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvp", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "bounds", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)bounds", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvg", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "bounds", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setBounds:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvs", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "setBounds:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentMode", + "printedName": "contentMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)contentMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvp", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "contentMode", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)contentMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvg", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "contentMode", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setContentMode:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvs", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "setContentMode:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0VvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:profile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWith:profile:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5frame7profileACSo6CGRectV_AA7ProfileCSgtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWith:profile:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithProfile:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC7profileAcA7ProfileCSg_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithProfile:", + "declAttributes": [ + "Custom", + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithFrame:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "Custom", + "Override", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBProfilePictureView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithCoder:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "Custom", + "Required", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setNeedsImageUpdate", + "printedName": "setNeedsImageUpdate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setNeedsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC19setNeedsImageUpdateyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "performInitialConfiguration", + "printedName": "performInitialConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)performInitialConfiguration", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC27performInitialConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accessTokenDidChange", + "printedName": "accessTokenDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)accessTokenDidChange:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC20accessTokenDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profileDidChange", + "printedName": "profileDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)profileDidChange:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16profileDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImageWithAccessToken", + "printedName": "updateImageWithAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImageWithAccessToken", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC26updateImageWithAccessTokenyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImageWithProfile", + "printedName": "updateImageWithProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImageWithProfile", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC22updateImageWithProfileyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetImage", + "printedName": "fetchAndSetImage(with:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC16fetchAndSetImage4with5statey10Foundation3URLV_AA07ProfiledE5StateVtF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16fetchAndSetImage4with5statey10Foundation3URLV_AA07ProfiledE5StateVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldImageFit", + "printedName": "shouldImageFit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)shouldImageFit", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC14shouldImageFitSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageSize", + "printedName": "getImageSize(imageShouldFit:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)getImageSizeWithImageShouldFit:scale:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12getImageSize14imageShouldFit5scaleSo6CGSizeVSb_12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProfileImageURL", + "printedName": "getProfileImageURL(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC18getProfileImageURL5state10Foundation0I0VSgAA0gdE5StateV_tF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC18getProfileImageURL5state10Foundation0I0VSgAA0gdE5StateV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPlaceholderImage", + "printedName": "setPlaceholderImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPlaceholderImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC19setPlaceholderImageyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImage", + "printedName": "updateImage(data:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11updateImage4data5statey10Foundation4DataV_AA07ProfiledE5StateVtF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11updateImage4data5statey10Foundation4DataV_AA07ProfiledE5StateVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImage", + "printedName": "updateImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11updateImageyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfilePictureView", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)UIView", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventName", + "printedName": "AppEventName", + "children": [ + { + "kind": "Var", + "name": "unlockedAchievement", + "printedName": "unlockedAchievement", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO19unlockedAchievementyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO19unlockedAchievementyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "activatedApp", + "printedName": "activatedApp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO09activatedC0yA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO09activatedC0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "addedPaymentInfo", + "printedName": "addedPaymentInfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO16addedPaymentInfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO16addedPaymentInfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "addedToCart", + "printedName": "addedToCart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO11addedToCartyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO11addedToCartyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "addedToWishlist", + "printedName": "addedToWishlist", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO15addedToWishlistyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO15addedToWishlistyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "completedRegistration", + "printedName": "completedRegistration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO21completedRegistrationyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO21completedRegistrationyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "viewedContent", + "printedName": "viewedContent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO13viewedContentyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO13viewedContentyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "initiatedCheckout", + "printedName": "initiatedCheckout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO17initiatedCheckoutyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO17initiatedCheckoutyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "achievedLevel", + "printedName": "achievedLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO13achievedLevelyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO13achievedLevelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "purchased", + "printedName": "purchased", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO9purchasedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO9purchasedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "rated", + "printedName": "rated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO5ratedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO5ratedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "searched", + "printedName": "searched", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO8searchedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8searchedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "spentCredits", + "printedName": "spentCredits", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO12spentCreditsyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO12spentCreditsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "completedTutorial", + "printedName": "completedTutorial", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO17completedTutorialyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO17completedTutorialyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventName?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit12AppEventNameO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit12AppEventNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit12AppEventNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit12AppEventNameO", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CustomEventField", + "printedName": "CustomEventField", + "children": [ + { + "kind": "Var", + "name": "eventTime", + "printedName": "eventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO9eventTimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO9eventTimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO9eventNameyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO9eventNameyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "valueToSum", + "printedName": "valueToSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO10valueToSumyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO10valueToSumyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "contentIds", + "printedName": "contentIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO10contentIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO10contentIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contents", + "printedName": "contents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8contentsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8contentsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO11contentTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO11contentTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO11descriptionyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO11descriptionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "level", + "printedName": "level", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO5levelyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO5levelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "maxRatingValue", + "printedName": "maxRatingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO14maxRatingValueyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO14maxRatingValueyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "numItems", + "printedName": "numItems", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8numItemsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8numItemsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "paymentInfoAvailable", + "printedName": "paymentInfoAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO20paymentInfoAvailableyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO20paymentInfoAvailableyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "registrationMethod", + "printedName": "registrationMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO18registrationMethodyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO18registrationMethodyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "searchString", + "printedName": "searchString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO12searchStringyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO12searchStringyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO7successyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO7successyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "orderId", + "printedName": "orderId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO7orderIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO7orderIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "adType", + "printedName": "adType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO6adTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO6adTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8currencyyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8currencyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.CustomEventField?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit16CustomEventFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventType", + "printedName": "AppEventType", + "children": [ + { + "kind": "Var", + "name": "mobileAppInstall", + "printedName": "mobileAppInstall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO06mobileC7InstallyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO06mobileC7InstallyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO6customyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO6customyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO5otheryA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO5otheryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueACSS_tcfc", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit12AppEventTypeO", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventUserAndAppDataField", + "printedName": "AppEventUserAndAppDataField", + "children": [ + { + "kind": "Var", + "name": "anonId", + "printedName": "anonId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO6anonIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO6anonIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appUserId", + "printedName": "appUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO03appE2IdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO03appE2IdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "advertiserId", + "printedName": "advertiserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO12advertiserIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO12advertiserIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "pageId", + "printedName": "pageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO6pageIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO6pageIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "pageScopedUserId", + "printedName": "pageScopedUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO010pageScopedE2IdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO010pageScopedE2IdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO04userG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO04userG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "advTE", + "printedName": "advTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO5advTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO5advTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "appTE", + "printedName": "appTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO5appTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO5appTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "considerViews", + "printedName": "considerViews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO13considerViewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO13considerViewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "deviceToken", + "printedName": "deviceToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO11deviceTokenyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO11deviceTokenyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "extinfo", + "printedName": "extinfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO7extinfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO7extinfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "includeDwellData", + "printedName": "includeDwellData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeDwellG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeDwellG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "includeVideoData", + "printedName": "includeVideoData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeVideoG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeVideoG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "installReferrer", + "printedName": "installReferrer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO15installReferreryA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO15installReferreryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "installerPackage", + "printedName": "installerPackage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO16installerPackageyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO16installerPackageyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "receiptData", + "printedName": "receiptData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO07receiptG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO07receiptG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "urlSchemes", + "printedName": "urlSchemes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO10urlSchemesyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO10urlSchemesyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "campaignIds", + "printedName": "campaignIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO11campaignIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO11campaignIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPISection", + "printedName": "ConversionsAPISection", + "children": [ + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8userDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8userDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO7appDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO7appDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "customData", + "printedName": "customData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO10customDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO10customDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "customEvents", + "printedName": "customEvents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO12customEventsyA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO12customEventsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPICustomEventField", + "printedName": "ConversionsAPICustomEventField", + "children": [ + { + "kind": "Var", + "name": "valueToSum", + "printedName": "valueToSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO10valueToSumyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO10valueToSumyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "eventTime", + "printedName": "eventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventTimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventTimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventNameyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventNameyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "contentIds", + "printedName": "contentIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO10contentIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO10contentIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contents", + "printedName": "contents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8contentsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8contentsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO11contentTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO11contentTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO11descriptionyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO11descriptionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "level", + "printedName": "level", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO5levelyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO5levelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "maxRatingValue", + "printedName": "maxRatingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO14maxRatingValueyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO14maxRatingValueyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "numItems", + "printedName": "numItems", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8numItemsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8numItemsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "paymentInfoAvailable", + "printedName": "paymentInfoAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO20paymentInfoAvailableyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO20paymentInfoAvailableyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "registrationMethod", + "printedName": "registrationMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO18registrationMethodyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO18registrationMethodyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "searchString", + "printedName": "searchString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO12searchStringyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO12searchStringyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO7successyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO7successyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "orderId", + "printedName": "orderId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO7orderIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO7orderIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "adType", + "printedName": "adType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO6adTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO6adTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8currencyyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8currencyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "Var", + "name": "anonId", + "printedName": "anonId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6anonIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6anonIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "fbLoginId", + "printedName": "fbLoginId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO9fbLoginIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO9fbLoginIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "madid", + "printedName": "madid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5madidyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5madidyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "pageId", + "printedName": "pageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6pageIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6pageIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "pageScopedUserId", + "printedName": "pageScopedUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16pageScopedUserIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16pageScopedUserIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO04userG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO04userG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "advTE", + "printedName": "advTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5advTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5advTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "appTE", + "printedName": "appTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5appTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5appTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "considerViews", + "printedName": "considerViews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO13considerViewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO13considerViewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "deviceToken", + "printedName": "deviceToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11deviceTokenyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11deviceTokenyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "extinfo", + "printedName": "extinfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO7extinfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO7extinfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "includeDwellData", + "printedName": "includeDwellData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeDwellG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeDwellG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "includeVideoData", + "printedName": "includeVideoData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeVideoG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeVideoG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "installReferrer", + "printedName": "installReferrer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO15installReferreryA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO15installReferreryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "installerPackage", + "printedName": "installerPackage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16installerPackageyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16installerPackageyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "receiptData", + "printedName": "receiptData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO07receiptG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO07receiptG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "urlSchemes", + "printedName": "urlSchemes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO10urlSchemesyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO10urlSchemesyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "campaignIds", + "printedName": "campaignIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11campaignIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11campaignIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPIEventName", + "printedName": "ConversionsAPIEventName", + "children": [ + { + "kind": "Var", + "name": "achievementUnlocked", + "printedName": "achievementUnlocked", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO19achievementUnlockedyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO19achievementUnlockedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "activateApp", + "printedName": "activateApp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO11activateAppyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO11activateAppyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "addPaymentInfo", + "printedName": "addPaymentInfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO14addPaymentInfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO14addPaymentInfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "addToCart", + "printedName": "addToCart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO9addToCartyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO9addToCartyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "addToWishlist", + "printedName": "addToWishlist", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO13addToWishlistyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO13addToWishlistyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "completeRegistration", + "printedName": "completeRegistration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO20completeRegistrationyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO20completeRegistrationyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "viewContent", + "printedName": "viewContent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO11viewContentyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO11viewContentyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "initiateCheckout", + "printedName": "initiateCheckout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO16initiateCheckoutyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO16initiateCheckoutyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "levelAchieved", + "printedName": "levelAchieved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO13levelAchievedyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO13levelAchievedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "purchase", + "printedName": "purchase", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8purchaseyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8purchaseyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "rate", + "printedName": "rate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO4rateyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO4rateyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "search", + "printedName": "search", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO6searchyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO6searchyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "spentCredits", + "printedName": "spentCredits", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO12spentCreditsyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO12spentCreditsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "tutorialCompletion", + "printedName": "tutorialCompletion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO18tutorialCompletionyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO18tutorialCompletionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OtherEventConstants", + "printedName": "OtherEventConstants", + "children": [ + { + "kind": "Var", + "name": "event", + "printedName": "event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO5eventyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO5eventyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "actionSource", + "printedName": "actionSource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO12actionSourceyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO12actionSourceyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "app", + "printedName": "app", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO3appyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO3appyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "mobileAppInstall", + "printedName": "mobileAppInstall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO16mobileAppInstallyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO16mobileAppInstallyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "installEventTime", + "printedName": "installEventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO07installD4TimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO07installD4TimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.OtherEventConstants?", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventsConversionsAPITransformer", + "printedName": "AppEventsConversionsAPITransformer", + "children": [ + { + "kind": "TypeDecl", + "name": "SectionFieldMapping", + "printedName": "SectionFieldMapping", + "children": [ + { + "kind": "Var", + "name": "section", + "printedName": "section", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(section:field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7section5fieldAeA0E10APISectionO_AA0e10APIUserAndc4DataH0OSgtcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7section5fieldAeA0E10APISectionO_AA0e10APIUserAndc4DataH0OSgtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "topLevelTransformations", + "printedName": "topLevelTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventUserAndAppDataField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventUserAndAppDataField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SectionCustomEventFieldMapping", + "printedName": "SectionCustomEventFieldMapping", + "children": [ + { + "kind": "Var", + "name": "section", + "printedName": "section", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(section:field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7section5fieldAeA0E10APISectionOSg_AA0e9APICustomiJ0Otcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7section5fieldAeA0E10APISectionOSg_AA0e9APICustomiJ0Otcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "customEventTransformations", + "printedName": "customEventTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.CustomEventField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.CustomEventField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "standardEventTransformations", + "printedName": "standardEventTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventName : FBSDKCoreKit.ConversionsAPIEventName]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventName : FBSDKCoreKit.ConversionsAPIEventName]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DataProcessingParameterName", + "printedName": "DataProcessingParameterName", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7optionsyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7optionsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "country", + "printedName": "country", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7countryyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7countryyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO5stateyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO5stateyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ValueTransformationType", + "printedName": "ValueTransformationType", + "children": [ + { + "kind": "Var", + "name": "array", + "printedName": "array", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5arrayyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5arrayyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "bool", + "printedName": "bool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO4boolyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO4boolyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "int", + "printedName": "int", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO3intyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO3intyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5fieldAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5fieldAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0AESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0AESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "transformValue", + "printedName": "transformValue(field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO14transformValue5field5valueypSgSS_yptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO14transformValue5field5valueypSgSS_yptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "splitAppEventParameters", + "printedName": "splitAppEventParameters(from:userData:appData:restOfData:customEvents:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO05splitC15EventParameters4from8userData03appL006restOfL006customD0AA0cH4TypeOSgSDySSypG_AMzAMzAMzSayAMGztFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO05splitC15EventParameters4from8userData03appL006restOfL006customD0AA0cH4TypeOSgSDySSypG_AMzAMzAMzSayAMGztFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateAppData", + "printedName": "transformAndUpdateAppData(_:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdateC4Data_5field5valueySDySSypGz_AA0c9EventUserhcJ5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdateC4Data_5field5valueySDySSypGz_AA0c9EventUserhcJ5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateUserData", + "printedName": "transformAndUpdateUserData(_:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26transformAndUpdateUserData_5field5valueySDySSypGz_AA0c5EventjhcK5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26transformAndUpdateUserData_5field5valueySDySSypGz_AA0c5EventjhcK5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateAppAndUserData", + "printedName": "transformAndUpdateAppAndUserData(userData:appData:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdatecH8UserData04userK003appK05field5valueySDySSypGz_AIzAA0c5EventjhcK5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdatecH8UserData04userK003appK05field5valueySDySSypGz_AIzAA0c5EventjhcK5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformEventName", + "printedName": "transformEventName(from:)", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO18transformEventName4fromS2S_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO18transformEventName4fromS2S_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformEvents", + "printedName": "transformEvents(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO09transformD04fromSaySDySSypGGSgSS_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO09transformD04fromSaySDySSypGGSgSS_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineCommonFields", + "printedName": "combineCommonFields(userData:appData:restOfData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19combineCommonFields8userData03appK006restOfK0SDySSypGAH_A2HtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19combineCommonFields8userData03appK006restOfK0SDySSypGAH_A2HtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedDataForMobileAppInstall", + "printedName": "combineAllTransformedDataForMobileAppInstall(commonFields:eventTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO034combineAllTransformedDataForMobileC7Install12commonFields9eventTimeSaySDySSypGGSgAG_SiSgtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO034combineAllTransformedDataForMobileC7Install12commonFields9eventTimeSaySDySSypGGSgAG_SiSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedDataForCustom", + "printedName": "combineAllTransformedDataForCustom(commonFields:customEvents:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO34combineAllTransformedDataForCustom12commonFields06customD0SaySDySSypGGSgAG_AHtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO34combineAllTransformedDataForCustom12commonFields06customD0SaySDySSypGGSgAG_AHtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedData", + "printedName": "combineAllTransformedData(eventType:userData:appData:restOfData:customEvents:eventTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO25combineAllTransformedData9eventType04userJ003appJ006restOfJ006customD00K4TimeSaySDySSypGGSgAA0c5EventL0O_A3kLSiSgtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO25combineAllTransformedData9eventType04userJ003appJ006restOfJ006customD00K4TimeSaySDySSypGGSgAA0c5EventL0O_A3kLSiSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "conversionsAPICompatibleEvent", + "printedName": "conversionsAPICompatibleEvent(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO29conversionsAPICompatibleEvent4fromSaySDySSypGGSgAF_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO29conversionsAPICompatibleEvent4fromSaySDySSypGGSgAF_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "SettingsAPIFields", + "printedName": "SettingsAPIFields", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO3urlyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO3urlyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "enabled", + "printedName": "enabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO7enabledyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO7enabledyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "datasetID", + "printedName": "datasetID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO9datasetIDyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO9datasetIDyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "accessKey", + "printedName": "accessKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO9accessKeyyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO9accessKeyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsAPIFields?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKAppEventsCAPIManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(cpy)shared", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(cm)shared", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSDKGKEnabled", + "printedName": "isSDKGKEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)isSDKGKEnabled", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isSDKGKEnabled", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setIsSDKGKEnabled:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "factory", + "printedName": "factory", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)factory", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)factory", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setFactory:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)settings", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)settings", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setSettings:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configRefreshTimestamp", + "printedName": "configRefreshTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)configRefreshTimestamp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)configRefreshTimestamp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setConfigRefreshTimestamp:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isLoadingConfig", + "printedName": "isLoadingConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)isLoadingConfig", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isLoadingConfig", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setIsLoadingConfig:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "completionBlocks", + "printedName": "completionBlocks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvg", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvs", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)init", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(factory:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)configureWithFactory:settings:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC9configure7factory8settingsySo24FBSDKGraphRequestFactory_p_AA16SettingsProtocol_ptF", + "moduleName": "FBSDKCoreKit", + "objc_name": "configureWithFactory:settings:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)enable", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordEvent", + "printedName": "recordEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)recordEvent:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC11recordEventyySDySSypGF", + "moduleName": "FBSDKCoreKit", + "objc_name": "recordEvent:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(withBlock:)", + "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:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)loadWithBlock:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC4load9withBlockyySbc_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldRefresh", + "printedName": "shouldRefresh()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)shouldRefresh", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC13shouldRefreshSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRefreshTimestampValid", + "printedName": "isRefreshTimestampValid()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isRefreshTimestampValid", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC23isRefreshTimestampValidSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "executeBlocks", + "printedName": "executeBlocks(isEnabled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)executeBlocksWithIsEnabled:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC13executeBlocks9isEnabledySb_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CAPIReporter", + "printedName": "CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKTransformerGraphRequestFactory", + "children": [ + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)contentType", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11contentTypeSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)contentType", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11contentTypeSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeoutInterval", + "printedName": "timeoutInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)timeoutInterval", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15timeoutIntervalSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)timeoutInterval", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15timeoutIntervalSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxCachedEvents", + "printedName": "maxCachedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)maxCachedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15maxCachedEventsSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)maxCachedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15maxCachedEventsSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxProcessedEvents", + "printedName": "maxProcessedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)maxProcessedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18maxProcessedEventsSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)maxProcessedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18maxProcessedEventsSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "retryEventsHttpResponse", + "printedName": "retryEventsHttpResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)retryEventsHttpResponse", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC23retryEventsHttpResponseSaySiGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)retryEventsHttpResponse", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC23retryEventsHttpResponseSaySiGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(cpy)shared", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(cm)shared", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "credentials", + "printedName": "credentials", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials?", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials?", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transformedEvents", + "printedName": "transformedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)transformedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)transformedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)setTransformedEvents:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvM", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CapiGCredentials", + "printedName": "CapiGCredentials", + "children": [ + { + "kind": "Var", + "name": "accessKey", + "printedName": "accessKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "capiGatewayURL", + "printedName": "capiGatewayURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "datasetID", + "printedName": "datasetID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessKey:capiGatewayURL:datasetID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKey14capiGatewayURL9datasetIDAESS_S2Stcfc", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKey14capiGatewayURL9datasetIDAESS_S2Stcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)init", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(datasetID:url:accessKey:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)configureWithDatasetID:url:accessKey:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC9configure9datasetID3url9accessKeyySS_S2StF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "callCapiGatewayAPI", + "printedName": "callCapiGatewayAPI(with:userAgent:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)callCapiGatewayAPIWith:userAgent:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18callCapiGatewayAPI4with9userAgentySDySSypG_SStF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "capiGatewayRequestDictionary", + "printedName": "capiGatewayRequestDictionary(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)capiGatewayRequestDictionaryWith:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC011capiGatewayE10Dictionary4withSDySSypGSayAFG_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleError", + "printedName": "handleError(response:events:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLResponse", + "printedName": "Foundation.URLResponse", + "usr": "c:objc(cs)NSURLResponse" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)handleErrorWithResponse:events:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11handleError8response6eventsySo13NSURLResponseCSg_SaySDySSypGGSgtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appendEvents", + "printedName": "appendEvents(events:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)appendEventsWithEvents:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC12appendEvents6eventsySaySDySSypGGSg_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphRequestPiggybackManager", + "printedName": "GraphRequestPiggybackManager", + "children": [ + { + "kind": "TypeDecl", + "name": "Values", + "printedName": "Values", + "children": [ + { + "kind": "Var", + "name": "tokenRefreshThresholdInSeconds", + "printedName": "tokenRefreshThresholdInSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokenRefreshRetryInSeconds", + "printedName": "tokenRefreshRetryInSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extendSSOToken", + "printedName": "extendSSOToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenRefreshFields", + "printedName": "accessTokenRefreshFields", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "permissionsPath", + "printedName": "permissionsPath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "permissionsRefreshFields", + "printedName": "permissionsRefreshFields", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO", + "moduleName": "FBSDKCoreKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "lastRefreshTry", + "printedName": "lastRefreshTry", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addPiggybackRequests", + "printedName": "addPiggybackRequests(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC03addE8RequestsyySo010FBSDKGraphD10Connecting_pF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC03addE8RequestsyySo010FBSDKGraphD10Connecting_pF", + "moduleName": "FBSDKCoreKit", + "objc_name": "addPiggybackRequests:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addRefreshPiggyback", + "printedName": "addRefreshPiggyback(_:permissionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestConnecting?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE0_17permissionHandlerySo010FBSDKGraphD10Connecting_p_ySoAF_pSg_ypSgs5Error_pSgtcSgtF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE0_17permissionHandlerySo010FBSDKGraphD10Connecting_p_ySoAF_pSg_ypSgs5Error_pSgtcSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "addRefreshPiggyback:permissionHandler:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRequestSafeForPiggyback", + "printedName": "isRequestSafeForPiggyback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestProtocol", + "printedName": "FBSDKCoreKit.GraphRequestProtocol", + "usr": "c:objc(pl)FBSDKGraphRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC02isd7SafeForE0ySbSo010FBSDKGraphD0_pF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC02isd7SafeForE0ySbSo010FBSDKGraphD0_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addRefreshPiggybackIfStale", + "printedName": "addRefreshPiggybackIfStale(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE7IfStale2toySo010FBSDKGraphD10Connecting_p_tF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE7IfStale2toySo010FBSDKGraphD10Connecting_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addServerConfigurationPiggyback", + "printedName": "addServerConfigurationPiggyback(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC022addServerConfigurationE02toySo010FBSDKGraphD10Connecting_p_tF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC022addServerConfigurationE02toySo010FBSDKGraphD10Connecting_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestPiggybackManager", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerCACycfc", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "tokenWallet", + "printedName": "tokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tokenWallet:settings:serverConfigurationProvider:graphRequestFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWallet8settings27serverConfigurationProvider05graphD7FactoryAESo25FBSDKAccessTokenProviding_pXp_AA16SettingsProtocol_pSo011FBSDKServermS0_pSo010FBSDKGraphdP0_ptcfc", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWallet8settings27serverConfigurationProvider05graphD7FactoryAESo25FBSDKAccessTokenProviding_pXp_AA16SettingsProtocol_pSo011FBSDKServermS0_pSo010FBSDKGraphdP0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "KeychainStoreFactory", + "printedName": "KeychainStoreFactory", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreFactory", + "printedName": "FBSDKCoreKit.KeychainStoreFactory", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "createKeychainStore", + "printedName": "createKeychainStore(service:accessGroup:)", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC06createcD07service11accessGroupSo013FBSDKKeychainD0_pSS_SSSgtF", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryC06createcD07service11accessGroupSo013FBSDKKeychainD0_pSS_SSSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createKeychainStoreWithService:accessGroup:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MACARuleMatching", + "printedName": "MACARuleMatching", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching(im)enable", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP6enableyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.MACARuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching(im)processParameters:event:", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP17processParameters_5eventSo12NSDictionaryCSgAH_SSSgtF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.MACARuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKMACARuleMatching", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MACARuleMatchingManager", + "printedName": "MACARuleMatchingManager", + "children": [ + { + "kind": "Var", + "name": "isEnable", + "printedName": "isEnable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC8isEnable33_0BB5878F933DE26C4692A35EA0FEF78ALLSbvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC8isEnable33_0BB5878F933DE26C4692A35EA0FEF78ALLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "macaRules", + "printedName": "macaRules", + "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:12FBSDKCoreKit23MACARuleMatchingManagerC9macaRules33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC9macaRules33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "keys", + "printedName": "keys", + "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:12FBSDKCoreKit23MACARuleMatchingManagerC4keys33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC4keys33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)enable", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getKey", + "printedName": "getKey(logic:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC6getKey5logicSSSgSDySSypG_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC6getKey5logicSSSgSDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stringComparison", + "printedName": "stringComparison(variable:values:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC16stringComparison8variable6values4dataSbSS_SDySSypGAHtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC16stringComparison8variable6values4dataSbSS_SDySSypGAHtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stringValueOf", + "printedName": "stringValueOf(_:)", + "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": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13stringValueOfySSSgypSgF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13stringValueOfySSSgypSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doubleValueOf", + "printedName": "doubleValueOf(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13doubleValueOfySdypSgF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13doubleValueOfySdypSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatchCCRule", + "printedName": "isMatchCCRule(_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13isMatchCCRule_4dataSbSSSg_SDySSypGtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13isMatchCCRule_4dataSbSSSg_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMatchPropertyIDs", + "printedName": "getMatchPropertyIDs(params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19getMatchPropertyIDs6paramsSSSDySSypG_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19getMatchPropertyIDs6paramsSSSDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)processParameters:event:", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC17processParameters_5eventSo12NSDictionaryCSgAH_SSSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:event:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateInfo", + "printedName": "generateInfo(params:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "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:12FBSDKCoreKit23MACARuleMatchingManagerC12generateInfo6params5eventySDySSypGz_SSSgtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC12generateInfo6params5eventySDySSypGz_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeGeneratedInfo", + "printedName": "removeGeneratedInfo(params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19removeGeneratedInfo6paramsySDySSypGz_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19removeGeneratedInfo6paramsySDySSypGz_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatchingManager", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)init", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "deviceInformationProvider", + "printedName": "deviceInformationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:deviceInformationProvider:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProvider017deviceInformationJ08settingsAESo011FBSDKServerI9Providing_p_So011FBSDKDevicelO0_pAA16SettingsProtocol_ptcfc", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProvider017deviceInformationJ08settingsAESo011FBSDKServerI9Providing_p_So011FBSDKDevicelO0_pAA16SettingsProtocol_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKMACARuleMatchingManager", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MACARuleMatching", + "printedName": "MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP" + }, + { + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV13dependentType33_958FB1E740EB546F978E744982C869ADLLxmvp", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV13dependentType33_958FB1E740EB546F978E744982C869ADLLxmvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKCoreKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKCoreKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Permission", + "printedName": "Permission", + "children": [ + { + "kind": "Var", + "name": "publicProfile", + "printedName": "publicProfile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO13publicProfileyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO13publicProfileyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userFriends", + "printedName": "userFriends", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userFriendsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userFriendsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO5emailyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO5emailyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAboutMe", + "printedName": "userAboutMe", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userAboutMeyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userAboutMeyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsBooks", + "printedName": "userActionsBooks", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsBooksyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsBooksyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsFitness", + "printedName": "userActionsFitness", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO18userActionsFitnessyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO18userActionsFitnessyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsMusic", + "printedName": "userActionsMusic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsMusicyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsMusicyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsNews", + "printedName": "userActionsNews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO15userActionsNewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO15userActionsNewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsVideo", + "printedName": "userActionsVideo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsVideoyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsVideoyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userBirthday", + "printedName": "userBirthday", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userBirthdayyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userBirthdayyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userEducationHistory", + "printedName": "userEducationHistory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO20userEducationHistoryyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO20userEducationHistoryyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userEvents", + "printedName": "userEvents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userEventsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userEventsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userGamesActivity", + "printedName": "userGamesActivity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userGamesActivityyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userGamesActivityyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userGender", + "printedName": "userGender", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userGenderyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userGenderyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userHometown", + "printedName": "userHometown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userHometownyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userHometownyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLikes", + "printedName": "userLikes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO9userLikesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO9userLikesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLocation", + "printedName": "userLocation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userLocationyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userLocationyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userManagedGroups", + "printedName": "userManagedGroups", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userManagedGroupsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userManagedGroupsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userPhotos", + "printedName": "userPhotos", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userPhotosyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userPhotosyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userPosts", + "printedName": "userPosts", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO9userPostsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO9userPostsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userRelationships", + "printedName": "userRelationships", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userRelationshipsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userRelationshipsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userRelationshipDetails", + "printedName": "userRelationshipDetails", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO23userRelationshipDetailsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO23userRelationshipDetailsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userReligionPolitics", + "printedName": "userReligionPolitics", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO20userReligionPoliticsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO20userReligionPoliticsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userTaggedPlaces", + "printedName": "userTaggedPlaces", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userTaggedPlacesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userTaggedPlacesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userVideos", + "printedName": "userVideos", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userVideosyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userVideosyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userWebsite", + "printedName": "userWebsite", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userWebsiteyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userWebsiteyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userWorkHistory", + "printedName": "userWorkHistory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO15userWorkHistoryyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO15userWorkHistoryyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readCustomFriendlists", + "printedName": "readCustomFriendlists", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO21readCustomFriendlistsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO21readCustomFriendlistsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readInsights", + "printedName": "readInsights", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12readInsightsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12readInsightsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readAudienceNetworkInsights", + "printedName": "readAudienceNetworkInsights", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO27readAudienceNetworkInsightsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO27readAudienceNetworkInsightsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readPageMailboxes", + "printedName": "readPageMailboxes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17readPageMailboxesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17readPageMailboxesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesShowList", + "printedName": "pagesShowList", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO13pagesShowListyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO13pagesShowListyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesManageCta", + "printedName": "pagesManageCta", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO14pagesManageCtayA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO14pagesManageCtayA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesManageInstantArticles", + "printedName": "pagesManageInstantArticles", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO26pagesManageInstantArticlesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO26pagesManageInstantArticlesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "adsRead", + "printedName": "adsRead", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO7adsReadyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO7adsReadyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLink", + "printedName": "userLink", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO8userLinkyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO8userLinkyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAgeRange", + "printedName": "userAgeRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userAgeRangeyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userAgeRangeyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> (Swift.String) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO6customyACSScACmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO6customyACSScACmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10PermissionO13stringLiteralACSS_tcfc", + "mangledName": "$s12FBSDKCoreKit10PermissionO13stringLiteralACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10PermissionO4nameSSvp", + "mangledName": "$s12FBSDKCoreKit10PermissionO4nameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10PermissionO4nameSSvg", + "mangledName": "$s12FBSDKCoreKit10PermissionO4nameSSvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10PermissionO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit10PermissionO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10PermissionO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit10PermissionO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10PermissionO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit10PermissionO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10PermissionO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit10PermissionO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit10PermissionO", + "mangledName": "$s12FBSDKCoreKit10PermissionO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "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": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Profile", + "printedName": "Profile", + "children": [ + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)userID", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(im)userID", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstName", + "printedName": "firstName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)firstName", + "mangledName": "$s12FBSDKCoreKit7ProfileC9firstNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)firstName", + "mangledName": "$s12FBSDKCoreKit7ProfileC9firstNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)middleName", + "mangledName": "$s12FBSDKCoreKit7ProfileC10middleNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)middleName", + "mangledName": "$s12FBSDKCoreKit7ProfileC10middleNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastName", + "printedName": "lastName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)lastName", + "mangledName": "$s12FBSDKCoreKit7ProfileC8lastNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)lastName", + "mangledName": "$s12FBSDKCoreKit7ProfileC8lastNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)name", + "mangledName": "$s12FBSDKCoreKit7ProfileC4nameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)name", + "mangledName": "$s12FBSDKCoreKit7ProfileC4nameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)linkURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC7linkURL10Foundation0E0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)linkURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC7linkURL10Foundation0E0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "refreshDate", + "printedName": "refreshDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)refreshDate", + "mangledName": "$s12FBSDKCoreKit7ProfileC11refreshDate10Foundation0E0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)refreshDate", + "mangledName": "$s12FBSDKCoreKit7ProfileC11refreshDate10Foundation0E0Vvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)imageURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL10Foundation0E0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)imageURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL10Foundation0E0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)email", + "mangledName": "$s12FBSDKCoreKit7ProfileC5emailSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)email", + "mangledName": "$s12FBSDKCoreKit7ProfileC5emailSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "friendIDs", + "printedName": "friendIDs", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)friendIDs", + "mangledName": "$s12FBSDKCoreKit7ProfileC9friendIDsSaySSGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)friendIDs", + "mangledName": "$s12FBSDKCoreKit7ProfileC9friendIDsSaySSGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "birthday", + "printedName": "birthday", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)birthday", + "mangledName": "$s12FBSDKCoreKit7ProfileC8birthday10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)birthday", + "mangledName": "$s12FBSDKCoreKit7ProfileC8birthday10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ageRange", + "printedName": "ageRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)ageRange", + "mangledName": "$s12FBSDKCoreKit7ProfileC8ageRangeSo012FBSDKUserAgeE0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)ageRange", + "mangledName": "$s12FBSDKCoreKit7ProfileC8ageRangeSo012FBSDKUserAgeE0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hometown", + "printedName": "hometown", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)hometown", + "mangledName": "$s12FBSDKCoreKit7ProfileC8hometownSo13FBSDKLocationCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)hometown", + "mangledName": "$s12FBSDKCoreKit7ProfileC8hometownSo13FBSDKLocationCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)location", + "mangledName": "$s12FBSDKCoreKit7ProfileC8locationSo13FBSDKLocationCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)location", + "mangledName": "$s12FBSDKCoreKit7ProfileC8locationSo13FBSDKLocationCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)gender", + "mangledName": "$s12FBSDKCoreKit7ProfileC6genderSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)gender", + "mangledName": "$s12FBSDKCoreKit7ProfileC6genderSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isLimited", + "printedName": "isLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)isLimited", + "mangledName": "$s12FBSDKCoreKit7ProfileC9isLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)isLimited", + "mangledName": "$s12FBSDKCoreKit7ProfileC9isLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_current", + "printedName": "_current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)_current", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)_current", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)set_current:", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC8_currentACSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isUpdatedWithAccessTokenChange", + "printedName": "isUpdatedWithAccessTokenChange", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)isUpdatedWithAccessTokenChange", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)isUpdatedWithAccessTokenChange", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvgZ", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)setIsUpdatedWithAccessTokenChange:", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDateACSS_SSSgA3K10Foundation0L0VSgAL0N0VSgtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDate05imageL05email9friendIDs8birthday8ageRange8hometown8location6genderACSS_SSSgA3S10Foundation0L0VSgAT0N0VSgAwSSaySSGSgAZSo012FBSDKUserAgeU0CSgSo13FBSDKLocationCSgA6_AStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDate05imageL05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimitedACSS_SSSgA3T10Foundation0L0VSgAU0N0VSgAxTSaySSGSgA_So012FBSDKUserAgeU0CSgSo13FBSDKLocationCSgA7_ATSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "enableUpdatesOnAccessTokenChange", + "printedName": "enableUpdatesOnAccessTokenChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)enableUpdatesOnAccessTokenChange:", + "mangledName": "$s12FBSDKCoreKit7ProfileC32enableUpdatesOnAccessTokenChangeyySbFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "enableUpdatesOnAccessTokenChange:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)init", + "mangledName": "$s12FBSDKCoreKit7ProfileCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "PictureMode", + "printedName": "PictureMode", + "children": [ + { + "kind": "Var", + "name": "square", + "printedName": "square", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO6squareyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO6squareyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "normal", + "printedName": "normal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO6normalyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO6normalyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "album", + "printedName": "album", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5albumyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5albumyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "small", + "printedName": "small", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5smallyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5smallyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "large", + "printedName": "large", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5largeyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5largeyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.PictureMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueAESgSu_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfilePictureMode", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "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": "Function", + "name": "imageURL", + "printedName": "imageURL(forMode:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)imageURLForPictureMode:size:", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL7forMode4size10Foundation0E0VSgAC07PictureG0O_So6CGSizeVtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "imageURLForPictureMode:size:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageURL", + "printedName": "getImageURL(profileID:pictureMode:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)getImageURLWithProfileID:pictureMode:size:", + "mangledName": "$s12FBSDKCoreKit7ProfileC11getImageURL9profileID11pictureMode4size10Foundation0F0VSgSS_AC07PictureJ0OSo6CGSizeVtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadCurrentProfile", + "printedName": "loadCurrentProfile(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.Profile?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)loadCurrentProfileWithCompletion:", + "mangledName": "$s12FBSDKCoreKit7ProfileC011loadCurrentC010completionyyACSg_s5Error_pSgtcSg_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "loadCurrentProfileWithCompletion:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadProfile", + "printedName": "loadProfile(accessToken:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.Profile?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)loadProfileWithAccessToken:completion:", + "mangledName": "$s12FBSDKCoreKit7ProfileC04loadC011accessToken10completionySo011FBSDKAccessF0CSg_yACSg_s5Error_pSgtcSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeGraphRequestParameters", + "printedName": "makeGraphRequestParameters(token:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)makeGraphRequestParametersWithToken:", + "mangledName": "$s12FBSDKCoreKit7ProfileC26makeGraphRequestParameters5tokenSDyS2SGSo16FBSDKAccessTokenCSg_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "current", + "printedName": "current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)currentProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "currentProfile", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)currentProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "currentProfile", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)setCurrentProfile:", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "setCurrentProfile:", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC7currentACSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "fetchCachedProfile", + "printedName": "fetchCachedProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Self?", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)fetchCachedProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC011fetchCachedC0ACXDSgyFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "fetchCachedProfile", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "profileUserDefaultsKey", + "printedName": "profileUserDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)profileUserDefaultsKey", + "mangledName": "$s12FBSDKCoreKit7ProfileC22profileUserDefaultsKeySSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isFromExtension": true, + "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:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)profileUserDefaultsKey", + "mangledName": "$s12FBSDKCoreKit7ProfileC22profileUserDefaultsKeySSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)supportsSecureCoding", + "mangledName": "$s12FBSDKCoreKit7ProfileC20supportsSecureCodingSbvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)supportsSecureCoding", + "mangledName": "$s12FBSDKCoreKit7ProfileC20supportsSecureCodingSbvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithCoder:", + "mangledName": "$s12FBSDKCoreKit7ProfileC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)encodeWithCoder:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6encode4withySo7NSCoderC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO6userIDyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO6userIDyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "firstName", + "printedName": "firstName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9firstNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9firstNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO10middleNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO10middleNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "lastName", + "printedName": "lastName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8lastNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8lastNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO4nameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO4nameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "linkURL", + "printedName": "linkURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO7linkURLyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO7linkURLyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "refreshDate", + "printedName": "refreshDate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11refreshDateyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11refreshDateyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8imageURLyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8imageURLyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO5emailyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO5emailyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "friendIDs", + "printedName": "friendIDs", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9friendIDsyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9friendIDsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "isLimited", + "printedName": "isLimited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9isLimitedyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9isLimitedyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "birthday", + "printedName": "birthday", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8birthdayyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8birthdayyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "ageRange", + "printedName": "ageRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8ageRangeyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8ageRangeyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "hometown", + "printedName": "hometown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8hometownyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8hometownyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8locationyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8locationyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO6genderyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO6genderyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBSDKCoreKit", + "implicit": 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:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10DeliveringpvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10DeliveringpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlHoster", + "printedName": "urlHoster", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenProvider:dataStore:graphRequestFactory:notificationCenter:settings:urlHoster:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProvider9dataStore19graphRequestFactory18notificationCenter8settings9urlHosterAESo011FBSDKAccessG9Providing_pXp_So19FBSDKDataPersisting_pSo010FBSDKGraphlM0_pSo25_FBSDKNotificationPosting_So0X10DeliveringpAA16SettingsProtocol_pSo15FBSDKURLHosting_ptcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProvider9dataStore19graphRequestFactory18notificationCenter8settings9urlHosterAESo011FBSDKAccessG9Providing_pXp_So19FBSDKDataPersisting_pSo010FBSDKGraphlM0_pSo25_FBSDKNotificationPosting_So0X10DeliveringpAA16SettingsProtocol_pSo15FBSDKURLHosting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfile", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ProfileProviding", + "printedName": "ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfilePictureViewState", + "printedName": "ProfilePictureViewState", + "children": [ + { + "kind": "Var", + "name": "profileID", + "printedName": "profileID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "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:12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "scale", + "printedName": "scale", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV5scale14CoreFoundation7CGFloatVvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV5scale12CoreGraphics7CGFloatVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "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": "s:12FBSDKCoreKit23ProfilePictureViewStateV5scale14CoreFoundation7CGFloatVvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV5scale12CoreGraphics7CGFloatVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pictureMode", + "printedName": "pictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "imageShouldFit", + "printedName": "imageShouldFit", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profileID:size:scale:pictureMode:imageShouldFit:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV9profileID4size5scale11pictureMode14imageShouldFitACSS_So6CGSizeV14CoreFoundation7CGFloatVAA0C0C0dL0OSbtcfc", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileID4size5scale11pictureMode14imageShouldFitACSS_So6CGSizeV12CoreGraphics7CGFloatVAA0C0C0dL0OSbtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileProviding", + "printedName": "ProfileProviding", + "children": [ + { + "kind": "Var", + "name": "current", + "printedName": "current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cpy)currentProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "objc_name": "currentProfile", + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)currentProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)setCurrentProfile:", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvsZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "fetchCachedProfile", + "printedName": "fetchCachedProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)fetchCachedProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP011fetchCachedC0AA0C0CSgyFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKProfileProviding", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProtectedModeManager", + "printedName": "ProtectedModeManager", + "children": [ + { + "kind": "Var", + "name": "isEnabled", + "printedName": "isEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC9isEnabled013_23E3C687B8F4H18C50A3A25F390F8C518LLSbvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC9isEnabled013_23E3C687B8F4H18C50A3A25F390F8C518LLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "standardParametersDefault", + "printedName": "standardParametersDefault", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC25standardParametersDefault013_23E3C687B8F4I18C50A3A25F390F8C518LLShySSGvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC25standardParametersDefault013_23E3C687B8F4I18C50A3A25F390F8C518LLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "standardParameters", + "printedName": "standardParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18standardParameters013_23E3C687B8F4H18C50A3A25F390F8C518LLShySSGvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18standardParameters013_23E3C687B8F4H18C50A3A25F390F8C518LLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)enable", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEvents.Name?", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)processParameters:eventName:", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC17processParameters_9eventNameSDySo022FBSDKAppEventParameterI0aypGSgAI_So0jkI0aSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:eventName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtectedModeManager", + "printedName": "FBSDKCoreKit.ProtectedModeManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)init", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProtectedModeManager", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginTooltipError", + "printedName": "LoginTooltipError", + "children": [ + { + "kind": "Var", + "name": "missingTooltipText", + "printedName": "missingTooltipText", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.LoginTooltipError.Type) -> FBSDKCoreKit.LoginTooltipError", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.LoginTooltipError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO07missingD4TextyA2CmF", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO07missingD4TextyA2CmF", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + }, + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17LoginTooltipErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO", + "moduleName": "FBSDKCoreKit", + "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": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConfigurationProvider", + "printedName": "ServerConfigurationProvider", + "children": [ + { + "kind": "Var", + "name": "loggingToken", + "printedName": "loggingToken", + "children": [ + { + "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:12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvp", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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:12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvg", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit27ServerConfigurationProviderC29shouldUseSafariViewController13forDialogNameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC29shouldUseSafariViewController13forDialogNameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadServerConfiguration", + "printedName": "loadServerConfiguration(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKLoginTooltip", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip", + "usr": "c:objc(cs)FBSDKLoginTooltip" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit27ServerConfigurationProviderC04loadcD010completionyySo17FBSDKLoginTooltipCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC04loadcD010completionyySo17FBSDKLoginTooltipCSg_s5Error_pSgtcSg_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProvider", + "printedName": "FBSDKCoreKit.ServerConfigurationProvider", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider(im)init", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AdSupport", + "printedName": "AdSupport", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "Settings", + "printedName": "Settings", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(cpy)sharedSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "sharedSettings", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(cm)sharedSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sdkVersion", + "printedName": "sdkVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)sdkVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC10sdkVersionSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "sdkVersion", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)sdkVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC10sdkVersionSSvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "sdkVersion", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultGraphAPIVersion", + "printedName": "defaultGraphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)defaultGraphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC22defaultGraphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)defaultGraphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC22defaultGraphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jpegCompressionQuality", + "printedName": "jpegCompressionQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)JPEGCompressionQuality", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "JPEGCompressionQuality", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)JPEGCompressionQuality", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setJPEGCompressionQuality:", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22jpegCompressionQuality14CoreFoundation7CGFloatVvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "autoLogAppEventsEnabled", + "printedName": "autoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)autoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)autoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAutoLogAppEventsEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAutoLogAppEventsEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAutoLogAppEventsEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAutoLogAppEventsEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isAutoLogAppEventsEnabled", + "printedName": "_isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codelessDebugLogEnabled", + "printedName": "codelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "codelessDebugLogEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "codelessDebugLogEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setCodelessDebugLogEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isCodelessDebugLogEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isCodelessDebugLogEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsCodelessDebugLogEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isCodelessDebugLogEnabled", + "printedName": "_isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDCollectionEnabled", + "printedName": "advertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "advertiserIDCollectionEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserIDCollectionEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAdvertiserIDCollectionEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserIDCollectionEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserIDCollectionEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsAdvertiserIDCollectionEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isAdvertiserIDCollectionEnabled", + "printedName": "_isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skAdNetworkReportEnabled", + "printedName": "skAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)skAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)skAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setSkAdNetworkReportEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSKAdNetworkReportEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSKAdNetworkReportEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsSKAdNetworkReportEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isEventDataUsageLimited", + "printedName": "isEventDataUsageLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEventDataUsageLimited", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEventDataUsageLimited", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsEventDataUsageLimited:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsEventDataUsageLimited:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseCachedValuesForExpensiveMetadata", + "printedName": "shouldUseCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseCachedValuesForExpensiveMetadata", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseCachedValuesForExpensiveMetadata", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setShouldUseCachedValuesForExpensiveMetadata:", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setShouldUseCachedValuesForExpensiveMetadata:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isGraphErrorRecoveryEnabled", + "printedName": "isGraphErrorRecoveryEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isGraphErrorRecoveryEnabled", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "isGraphErrorRecoveryEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsGraphErrorRecoveryEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setIsGraphErrorRecoveryEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)appID", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appID", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)appID", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "appID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAppID:", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAppID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC5appIDSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appURLSchemeSuffix", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "appURLSchemeSuffix", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAppURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAppURLSchemeSuffix:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_appURLSchemeSuffix", + "printedName": "_appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_appURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "clientToken", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "clientToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setClientToken:", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setClientToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC11clientTokenSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_clientToken", + "printedName": "_clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_clientToken:", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC12_clientTokenSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "displayName", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "displayName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDisplayName:", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDisplayName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC11displayNameSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_displayName", + "printedName": "_displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_displayName:", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC12_displayNameSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "facebookDomainPart", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "facebookDomainPart", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setFacebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setFacebookDomainPart:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_facebookDomainPart", + "printedName": "_facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_facebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIVersion", + "printedName": "graphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIVersion", + "declAttributes": [ + "Final", + "ObjC", + "Lazy", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "graphAPIVersion", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setGraphAPIVersion:", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setGraphAPIVersion:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC15graphAPIVersionSSvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "userAgentSuffix", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "userAgentSuffix", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setUserAgentSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setUserAgentSuffix:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabled", + "printedName": "advertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "advertiserTrackingEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAdvertiserTrackingEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserTrackingEnabled", + "printedName": "isAdvertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserTrackingEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserTrackingEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsAdvertiserTrackingEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertisingTrackingStatus", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertisingTrackingStatus", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertisingTrackingStatus:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0VvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isDataProcessingRestricted", + "printedName": "isDataProcessingRestricted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isDataProcessingRestrictedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isDataProcessingRestricted", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isDataProcessingRestrictedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isDataProcessingRestricted", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "persistableDataProcessingOptions", + "printedName": "persistableDataProcessingOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit8SettingsC32persistableDataProcessingOptionsSDySSypGSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "persistableDataProcessingOptions", + "declAttributes": [ + "Final", + "ObjC", + "Lazy", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit8SettingsC32persistableDataProcessingOptionsSDySSypGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "persistableDataProcessingOptions", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDataProcessingOptions:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24setDataProcessingOptionsyySaySSGSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDataProcessingOptions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:country:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDataProcessingOptions:country:state:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24setDataProcessingOptions_7country5stateySaySSGSg_s5Int32VAJtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDataProcessingOptions:country:state:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "loggingBehaviors", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "loggingBehaviors", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setLoggingBehaviors:", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setLoggingBehaviors:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enableLoggingBehavior", + "printedName": "enableLoggingBehavior(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)enableLoggingBehavior:", + "mangledName": "$s12FBSDKCoreKit8SettingsC21enableLoggingBehavioryySo012FBSDKLoggingF0aF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableLoggingBehavior", + "printedName": "disableLoggingBehavior(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)disableLoggingBehavior:", + "mangledName": "$s12FBSDKCoreKit8SettingsC22disableLoggingBehavioryySo012FBSDKLoggingF0aF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "shouldUseTokenOptimizations", + "printedName": "shouldUseTokenOptimizations", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseTokenOptimizations", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseTokenOptimizations", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setShouldUseTokenOptimizations:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setShouldUseTokenOptimizations:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isSetATETimeExceedsInstallTime", + "printedName": "isSetATETimeExceedsInstallTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit8SettingsC30isSetATETimeExceedsInstallTimeSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "isSetATETimeExceedsInstallTime", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit8SettingsC30isSetATETimeExceedsInstallTimeSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSetATETimeExceedsInstallTime", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isATETimeSufficientlyDelayed", + "printedName": "isATETimeSufficientlyDelayed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit8SettingsC28isATETimeSufficientlyDelayedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isATETimeSufficientlyDelayed", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit8SettingsC28isATETimeSufficientlyDelayedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isATETimeSufficientlyDelayed", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)installTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC16installTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "installTimestamp", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)installTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC16installTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "installTimestamp", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabledTimestamp", + "printedName": "advertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabledTimestamp", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabledTimestamp", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParamValue", + "printedName": "graphAPIDebugParamValue", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC23graphAPIDebugParamValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "graphAPIDebugParamValue", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC23graphAPIDebugParamValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParamValue", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParameterValue", + "printedName": "graphAPIDebugParameterValue", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC27graphAPIDebugParameterValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParameterValue", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC27graphAPIDebugParameterValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParameterValue", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)init", + "mangledName": "$s12FBSDKCoreKit8SettingsCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "recordInstall", + "printedName": "recordInstall()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)recordInstall", + "mangledName": "$s12FBSDKCoreKit8SettingsC13recordInstallyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "recordInstall", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordSetAdvertiserTrackingEnabled", + "printedName": "recordSetAdvertiserTrackingEnabled()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)recordSetAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC34recordSetAdvertiserTrackingEnabledyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logWarnings", + "printedName": "logWarnings()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)logWarnings", + "mangledName": "$s12FBSDKCoreKit8SettingsC11logWarningsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logWarnings", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIfSDKSettingsChanged", + "printedName": "logIfSDKSettingsChanged()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)logIfSDKSettingsChanged", + "mangledName": "$s12FBSDKCoreKit8SettingsC23logIfSDKSettingsChangedyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logIfSDKSettingsChanged", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistedStringProperty", + "printedName": "PersistedStringProperty", + "children": [ + { + "kind": "Var", + "name": "persistenceKey", + "printedName": "persistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovp", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovg", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backingKeyPath", + "printedName": "backingKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(persistenceKey:backingKeyPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + }, + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKey07backingH4PathAeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSSSgGtcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKey07backingH4PathAeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSSSgGtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "getPersistedStringProperty", + "printedName": "getPersistedStringProperty(_:)", + "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": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC26getPersistedStringPropertyySSSgAC0efG0VF", + "mangledName": "$s12FBSDKCoreKit8SettingsC26getPersistedStringPropertyySSSgAC0efG0VF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPersistedStringProperty", + "printedName": "setPersistedStringProperty(_:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + }, + { + "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:12FBSDKCoreKit8SettingsC26setPersistedStringProperty_2toyAC0efG0V_SSSgtF", + "mangledName": "$s12FBSDKCoreKit8SettingsC26setPersistedStringProperty_2toyAC0efG0V_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistedBooleanValue", + "printedName": "PersistedBooleanValue", + "children": [ + { + "kind": "Var", + "name": "persistenceKey", + "printedName": "persistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backingKeyPath", + "printedName": "backingKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultValue", + "printedName": "defaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 2, + "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:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(persistenceKey:backingKeyPath:defaultValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + }, + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKey07backingH4Path07defaultF0AeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSbSgGSbtcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKey07backingH4Path07defaultF0AeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSbSgGSbtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "getPersistedBooleanProperty", + "printedName": "getPersistedBooleanProperty(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC27getPersistedBooleanPropertyySbAC0eF5ValueVF", + "mangledName": "$s12FBSDKCoreKit8SettingsC27getPersistedBooleanPropertyySbAC0eF5ValueVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPersistedBooleanProperty", + "printedName": "setPersistedBooleanProperty(_:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC27setPersistedBooleanProperty_2toyAC0eF5ValueV_SbtF", + "mangledName": "$s12FBSDKCoreKit8SettingsC27setPersistedBooleanProperty_2toyAC0eF5ValueV_SbtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistenceKey", + "printedName": "PersistenceKey", + "children": [ + { + "kind": "Var", + "name": "urlSchemeSuffix", + "printedName": "urlSchemeSuffix", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO15urlSchemeSuffixyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO15urlSchemeSuffixyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO11clientTokenyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO11clientTokenyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO11displayNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO11displayNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "domainPart", + "printedName": "domainPart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO10domainPartyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO10domainPartyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25isAutoLogAppEventsEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25isAutoLogAppEventsEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO31isAdvertiserIDCollectionEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO31isAdvertiserIDCollectionEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25isCodelessDebugLogEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25isCodelessDebugLogEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO16loggingBehaviorsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO16loggingBehaviorsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "appID", + "printedName": "appID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO5appIDyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO5appIDyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "jpegCompressionQuality", + "printedName": "jpegCompressionQuality", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO22jpegCompressionQualityyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO22jpegCompressionQualityyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO26isSKAdNetworkReportEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO26isSKAdNetworkReportEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25advertisingTrackingStatusyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25advertisingTrackingStatusyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "limitEventAndDataUsage", + "printedName": "limitEventAndDataUsage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO22limitEventAndDataUsageyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO22limitEventAndDataUsageyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "useCachedValuesForExpensiveMetadata", + "printedName": "useCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO35useCachedValuesForExpensiveMetadatayA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO35useCachedValuesForExpensiveMetadatayA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "useTokenOptimizations", + "printedName": "useTokenOptimizations", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO21useTokenOptimizationsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO21useTokenOptimizationsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "dataProcessingOptions", + "printedName": "dataProcessingOptions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO21dataProcessingOptionsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO21dataProcessingOptionsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "bitmask", + "printedName": "bitmask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO7bitmaskyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO7bitmaskyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO16installTimestampyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO16installTimestampyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "setAdvertiserTrackingEnabledTimestamp", + "printedName": "setAdvertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO37setAdvertiserTrackingEnabledTimestampyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO37setAdvertiserTrackingEnabledTimestampyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 18 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "appEventsConfigurationProvider", + "printedName": "appEventsConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appEventsConfigurationProvider:dataStore:eventLogger:infoDictionaryProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProvider9dataStore11eventLogger014infoDictionaryI0AESo08FBSDKAppgH9Providing_p_So19FBSDKDataPersisting_pSo17FBSDKEventLogging_pSo09FBSDKInfooQ0_ptcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProvider9dataStore11eventLogger014infoDictionaryI0AESo08FBSDKAppgH9Providing_p_So19FBSDKDataPersisting_pSo17FBSDKEventLogging_pSo09FBSDKInfooQ0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "validateConfiguration", + "printedName": "validateConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)validateConfiguration", + "mangledName": "$s12FBSDKCoreKit8SettingsC21validateConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "unconfiguredDebugMessage", + "printedName": "unconfiguredDebugMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(cpy)unconfiguredDebugMessage", + "mangledName": "$s12FBSDKCoreKit8SettingsC24unconfiguredDebugMessageSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isFromExtension": true, + "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:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(cm)unconfiguredDebugMessage", + "mangledName": "$s12FBSDKCoreKit8SettingsC24unconfiguredDebugMessageSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKSettings", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SettingsProtocol", + "printedName": "SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP" + }, + { + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SettingsProtocol", + "printedName": "SettingsProtocol", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)appID", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)appID", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAppID:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)clientToken", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)clientToken", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setClientToken:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setUserAgentSuffix:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "sdkVersion", + "printedName": "sdkVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)sdkVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP10sdkVersionSSvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)sdkVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP10sdkVersionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)displayName", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)displayName", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDisplayName:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setFacebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setLoggingBehaviors:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAppURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isDataProcessingRestricted", + "printedName": "isDataProcessingRestricted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isDataProcessingRestrictedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isDataProcessingRestrictedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isAutoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isAutoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codelessDebugLogEnabled", + "printedName": "codelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDCollectionEnabled", + "printedName": "advertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isSetATETimeExceedsInstallTime", + "printedName": "isSetATETimeExceedsInstallTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP30isSetATETimeExceedsInstallTimeSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP30isSetATETimeExceedsInstallTimeSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isATETimeSufficientlyDelayed", + "printedName": "isATETimeSufficientlyDelayed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP28isATETimeSufficientlyDelayedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP28isATETimeSufficientlyDelayedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isSKAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isSKAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertisingTrackingStatusSo016FBSDKAdvertisingfG0Vvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertisingTrackingStatusSo016FBSDKAdvertisingfG0Vvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)installTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16installTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)installTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16installTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabledTimestamp", + "printedName": "advertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEventDataUsageLimited", + "printedName": "isEventDataUsageLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsEventDataUsageLimited:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseTokenOptimizations", + "printedName": "shouldUseTokenOptimizations", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setShouldUseTokenOptimizations:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIVersion", + "printedName": "graphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setGraphAPIVersion:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isGraphErrorRecoveryEnabled", + "printedName": "isGraphErrorRecoveryEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsGraphErrorRecoveryEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParamValue", + "printedName": "graphAPIDebugParamValue", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23graphAPIDebugParamValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23graphAPIDebugParamValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParameterValue", + "printedName": "graphAPIDebugParameterValue", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27graphAPIDebugParameterValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27graphAPIDebugParameterValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabled", + "printedName": "advertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserTrackingEnabled", + "printedName": "isAdvertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseCachedValuesForExpensiveMetadata", + "printedName": "shouldUseCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setShouldUseCachedValuesForExpensiveMetadata:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "persistableDataProcessingOptions", + "printedName": "persistableDataProcessingOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP32persistableDataProcessingOptionsSDySSypGSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP32persistableDataProcessingOptionsSDySSypGSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDataProcessingOptions:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP24setDataProcessingOptionsyySaySSGSgF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:country:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDataProcessingOptions:country:state:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP24setDataProcessingOptions_7country5stateySaySSGSg_s5Int32VAJtF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSettings", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DialogConfigurationName", + "printedName": "DialogConfigurationName", + "children": [ + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO7messageSSvpZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO7messageSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit23DialogConfigurationNameO7messageSSvgZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO7messageSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO5shareSSvpZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO5shareSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit23DialogConfigurationNameO5shareSSvgZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO5shareSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareDialogConfiguration", + "printedName": "ShareDialogConfiguration", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialogConfiguration", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationVACycfc", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationVACycfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "defaultShareMode", + "printedName": "defaultShareMode", + "children": [ + { + "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:12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "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:12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "shouldUseNativeDialog", + "printedName": "shouldUseNativeDialog(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV015shouldUseNativeD003forD4NameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV015shouldUseNativeD003forD4NameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV29shouldUseSafariViewController03forD4NameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV29shouldUseSafariViewController03forD4NameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderAESo011FBSDKServerE9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderAESo011FBSDKServerE9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "synchronized", + "printedName": "synchronized(_:closure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() throws -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit12synchronized_7closureyyXl_yyKXEtKF", + "mangledName": "$s12FBSDKCoreKit12synchronized_7closureyyXl_yyKXEtKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Rethrows", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TokenCache", + "printedName": "TokenCache", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessToken", + "printedName": "accessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "accessToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "accessToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAccessToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "authenticationToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "authenticationToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAuthenticationToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCache", + "printedName": "FBSDKCoreKit.TokenCache", + "usr": "s:12FBSDKCoreKit10TokenCacheC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10TokenCacheCACycfc", + "mangledName": "$s12FBSDKCoreKit10TokenCacheCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keychainStore", + "printedName": "keychainStore", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:keychainStore:dataStore:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settings13keychainStore04dataI0AeA16SettingsProtocol_p_So013FBSDKKeychainI0_pSo19FBSDKDataPersisting_ptcfc", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settings13keychainStore04dataI0AeA16SettingsProtocol_p_So013FBSDKKeychainI0_pSo19FBSDKDataPersisting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit10TokenCacheC", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_AEMReporterProtocol", + "printedName": "_AEMReporterProtocol", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)enable", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP6enableyyFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordAndUpdate", + "printedName": "recordAndUpdate(event:currency:value:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)recordAndUpdateEvent:currency:value:parameters:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP15recordAndUpdate5event8currency5value10parametersySS_SSSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "objc_name": "recordAndUpdateEvent:currency:value:parameters:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConversionFilteringEnabled", + "printedName": "setConversionFilteringEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setConversionFilteringEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP29setConversionFilteringEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCatalogMatchingEnabled", + "printedName": "setCatalogMatchingEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setCatalogMatchingEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP25setCatalogMatchingEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAdvertiserRuleMatchInServerEnabled", + "printedName": "setAdvertiserRuleMatchInServerEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP37setAdvertiserRuleMatchInServerEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handle", + "printedName": "handle(_:)", + "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": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)handle:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP6handleyy10Foundation3URLVSgFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKAEMReporter", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_AccessTokenExpirer", + "printedName": "_AccessTokenExpirer", + "children": [ + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(py)notificationCenter", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)notificationCenter", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(notificationCenter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpirer", + "printedName": "FBSDKCoreKit._AccessTokenExpirer", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)initWithNotificationCenter:", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterACSo25_FBSDKNotificationPosting_So0H10Deliveringp_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "checkAccessTokenExpirationDate", + "printedName": "checkAccessTokenExpirationDate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)checkAccessTokenExpirationDate", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC05checkcD14ExpirationDateyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "timerDidFire", + "printedName": "timerDidFire()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)timerDidFire", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC12timerDidFireyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpirer", + "printedName": "FBSDKCoreKit._AccessTokenExpirer", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)init", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "_FBSDKAccessTokenExpirer", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_AccessTokenExpiring", + "printedName": "_AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring", + "mangledName": "$s12FBSDKCoreKit20_AccessTokenExpiringP" + }, + { + "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": "_AccessTokenExpiring", + "printedName": "_AccessTokenExpiring", + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring", + "mangledName": "$s12FBSDKCoreKit20_AccessTokenExpiringP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "_FBSDKAccessTokenExpiring", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AuthenticationServices", + "printedName": "AuthenticationServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SafariServices", + "printedName": "SafariServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPI", + "printedName": "_BridgeAPI", + "children": [ + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIResponseFactory", + "printedName": "bridgeAPIResponseFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeProvider", + "printedName": "appURLSchemeProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pendingRequest", + "printedName": "pendingRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pendingRequestCompletionBlock", + "printedName": "pendingRequestCompletionBlock", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pendingURLOpener", + "printedName": "pendingURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSession", + "printedName": "authenticationSession", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSessionCompletionHandler", + "printedName": "authenticationSessionCompletionHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSessionState", + "printedName": "authenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0OvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0OvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isExpectingBackground", + "printedName": "isExpectingBackground", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "safariViewController", + "printedName": "safariViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isDismissingSafariViewController", + "printedName": "isDismissingSafariViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isActive", + "printedName": "isActive", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6sharedACvpZ", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6sharedACvgZ", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logger:urlOpener:bridgeAPIResponseFactory:appURLSchemeProvider:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + }, + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + }, + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6logger9urlOpener24bridgeAPIResponseFactory20appURLSchemeProvider05errorJ0ACSo11FBSDKLoggerC_So22FBSDKInternalURLOpener_pAA0cI8Creating_pSo08FBSDKAppL9Providing_pSo010FBSDKErrorR0_ptcfc", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6logger9urlOpener24bridgeAPIResponseFactory20appURLSchemeProvider05errorJ0ACSo11FBSDKLoggerC_So22FBSDKInternalURLOpener_pAA0cI8Creating_pSo08FBSDKAppL9Providing_pSo010FBSDKErrorR0_ptcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bridgeAPIRequestCompletionBlock", + "printedName": "bridgeAPIRequestCompletionBlock(request:completion:)", + "children": [ + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC31bridgeAPIRequestCompletionBlock7request10completionySb_s5Error_pSgtcSo011FBSDKBridgeF0_p_ySo0L11APIResponseCctF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC31bridgeAPIRequestCompletionBlock7request10completionySb_s5Error_pSgtcSo011FBSDKBridgeF0_p_ySo0L11APIResponseCctF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURLWithAuthenticationSession", + "printedName": "openURLWithAuthenticationSession(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32openURLWithAuthenticationSession3urly10Foundation3URLV_tF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32openURLWithAuthenticationSession3urly10Foundation3URLV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSessionCompletionHandler", + "printedName": "setSessionCompletionHandler(calling:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC27setSessionCompletionHandler7callingyySb_s5Error_pSgtc_tF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC27setSessionCompletionHandler7callingyySb_s5Error_pSgtc_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearSession", + "printedName": "clearSession()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12clearSessionyyF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12clearSessionyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewControllerDidDisappear", + "printedName": "viewControllerDidDisappear(_:animated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ContainerViewController", + "printedName": "FBSDKCoreKit._ContainerViewController", + "usr": "c:objc(cs)FBSDKContainerViewController" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI(im)viewControllerDidDisappear:animated:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26viewControllerDidDisappear_8animatedySo018FBSDKContainerViewF0C_SbtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "viewControllerDidDisappear:animated:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleBridgeAPIResponse", + "printedName": "handleBridgeAPIResponse(url:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit10_BridgeAPIC06handleC11APIResponse3url17sourceApplicationSb10Foundation3URLV_SSSgtF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC06handleC11APIResponse3url17sourceApplicationSb10Foundation3URLV_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelBridgeRequest", + "printedName": "cancelBridgeRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC06cancelC7RequestyyF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC06cancelC7RequestyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI(im)init", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPICACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "applicationWillResignActive", + "printedName": "applicationWillResignActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationWillResignActive:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC27applicationWillResignActiveyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationWillResignActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationDidBecomeActive:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26applicationDidBecomeActiveyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationDidBecomeActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29applicationDidEnterBackgroundyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationDidEnterBackground:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC11application_4open17sourceApplication10annotationSbSo13UIApplicationC_10Foundation3URLVSSSgypSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:didFinishLaunchingWithOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)application:didFinishLaunchingWithOptions:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC11application_29didFinishLaunchingWithOptionsSbSo13UIApplicationC_SDySo0k6LaunchJ3KeyaypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:didFinishLaunchingWithOptions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "open", + "printedName": "open(_:sender:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + }, + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openURL:sender:handler:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC4open_6sender7handlery10Foundation3URLV_So15FBSDKURLOpening_pSgySb_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openURL:sender:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "open", + "printedName": "open(_:useSafariViewController:from:completionBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openBridgeAPIRequest:useSafariViewController:fromViewController:completionBlock:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC4open_23useSafariViewController4from15completionBlockySo21FBSDKBridgeAPIRequest_p_SbSo06UIViewI0CSgySo0M11APIResponseCctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openBridgeAPIRequest:useSafariViewController:fromViewController:completionBlock:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURLWithSafariViewController", + "printedName": "openURLWithSafariViewController(url:sender:from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "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": "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openURLWithSafariViewController:sender:fromViewController:handler:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC31openURLWithSafariViewController3url6sender4from7handlery10Foundation3URLV_So15FBSDKURLOpening_pSgSo06UIViewI0CSgySb_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openURLWithSafariViewController:sender:fromViewController:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "safariViewControllerDidFinish", + "printedName": "safariViewControllerDidFinish(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)safariViewControllerDidFinish:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29safariViewControllerDidFinishyySo08SFSafarifG0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "safariViewControllerDidFinish:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentationAnchor", + "printedName": "presentationAnchor(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIWindow", + "printedName": "UIKit.UIWindow", + "usr": "c:objc(cs)UIWindow" + }, + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationSession", + "printedName": "AuthenticationServices.ASWebAuthenticationSession", + "usr": "c:objc(cs)ASWebAuthenticationSession" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)presentationAnchorForWebAuthenticationSession:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "presentationAnchorForWebAuthenticationSession:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "_BridgeAPIProtocolNativeV1", + "children": [ + { + "kind": "Var", + "name": "appScheme", + "printedName": "appScheme", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)appScheme", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)appScheme", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataLengthThreshold", + "printedName": "dataLengthThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)dataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19dataLengthThresholdSuvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)dataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19dataLengthThresholdSuvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shouldIncludeAppIcon", + "printedName": "shouldIncludeAppIcon", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)shouldIncludeAppIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C20shouldIncludeAppIconSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)shouldIncludeAppIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C20shouldIncludeAppIconSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pasteboard", + "printedName": "pasteboard", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)pasteboard", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10pasteboardSo15FBSDKPasteboard_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)pasteboard", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10pasteboardSo15FBSDKPasteboard_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultMaxBase64DataLengthThreshold", + "printedName": "defaultMaxBase64DataLengthThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(cpy)defaultMaxBase64DataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C35defaultMaxBase64DataLengthThresholdSuvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(cm)defaultMaxBase64DataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C35defaultMaxBase64DataLengthThresholdSuvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appIcon", + "printedName": "appIcon", + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)appIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C7appIconSo7UIImageCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)appIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C7appIconSo7UIImageCSgvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appScheme:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)initWithAppScheme:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeACSSSg_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppScheme:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appScheme:pasteboard:dataLengthThreshold:shouldIncludeAppIcon:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + }, + { + "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": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appScheme10pasteboard19dataLengthThreshold20shouldIncludeAppIconACSSSg_So15FBSDKPasteboard_pSgSuSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "requestURL", + "printedName": "requestURL(actionID:scheme:methodName:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)requestURLWithActionID:scheme:methodName:parameters:error:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10requestURL8actionID6scheme10methodName10parameters10Foundation0H0VSS_S2SSDySSypGtKF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requestURLWithActionID:scheme:methodName:parameters:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "responseParameters", + "printedName": "responseParameters(actionID:queryParameters:cancelled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutablePointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutablePointer", + "printedName": "Swift.UnsafeMutablePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjCBool", + "printedName": "ObjectiveC.ObjCBool", + "usr": "s:10ObjectiveC8ObjCBoolV" + } + ], + "usr": "s:Sp" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)responseParametersForActionID:queryParameters:cancelled:error:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C18responseParameters8actionID05queryH09cancelledSDySSypGSS_AHSpy10ObjectiveC8ObjCBoolVGSgtKF", + "moduleName": "FBSDKCoreKit", + "objc_name": "responseParametersForActionID:queryParameters:cancelled:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)init", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1CACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bundle", + "printedName": "bundle", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationDeliverer", + "printedName": "notificationDeliverer", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:bundle:notificationDeliverer:internalUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactory6bundle21notificationDeliverer15internalUtilityAESo18FBSDKErrorCreating_p_So28FBSDKInfoDictionaryProviding_pSo27FBSDKNotificationDelivering_pSo013FBSDKInternalO0_ptcfc", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactory6bundle21notificationDeliverer15internalUtilityAESo18FBSDKErrorCreating_p_So28FBSDKInfoDictionaryProviding_pSo27FBSDKNotificationDelivering_pSo013FBSDKInternalO0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKBridgeAPIProtocolNativeV1", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIRequestFactory", + "printedName": "_BridgeAPIRequestFactory", + "children": [ + { + "kind": "Function", + "name": "bridgeAPIRequest", + "printedName": "bridgeAPIRequest(with:scheme:methodName:parameters:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "FBSDKBridgeAPIProtocolType", + "printedName": "FBSDKCoreKit.FBSDKBridgeAPIProtocolType", + "usr": "c:@E@FBSDKBridgeAPIProtocolType" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory(im)bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryC06bridgeD04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeD0_pSgSo0N15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIRequestFactory", + "printedName": "FBSDKCoreKit._BridgeAPIRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory(im)init", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKBridgeAPIRequestFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIResponseFactory", + "printedName": "_BridgeAPIResponseFactory", + "children": [ + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:responseURL:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponseCancelled", + "printedName": "createResponseCancelled(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25_BridgeAPIResponseFactoryC23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIResponseFactory", + "printedName": "FBSDKCoreKit._BridgeAPIResponseFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory(im)init", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BridgeAPIResponseCreating", + "printedName": "BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_DialogConfigurationMapBuilder", + "printedName": "_DialogConfigurationMapBuilder", + "children": [ + { + "kind": "Function", + "name": "buildDialogConfigurationMap", + "printedName": "buildDialogConfigurationMap(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : FBSDKCoreKit._DialogConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "_DialogConfiguration", + "printedName": "FBSDKCoreKit._DialogConfiguration", + "usr": "c:objc(cs)FBSDKDialogConfiguration" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder(im)buildDialogConfigurationMapWithRawConfigurations:", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderC05buildcdE04fromSDySSSo011FBSDKDialogD0CGSaySDySSypGG_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "buildDialogConfigurationMapWithRawConfigurations:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilder", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder(im)init", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKDialogConfigurationMapBuilder", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ErrorFactory", + "printedName": "_ErrorFactory", + "children": [ + { + "kind": "Function", + "name": "error", + "printedName": "error(code:userInfo:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)errorWithCode:userInfo:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC5error4code8userInfo7message010underlyingC0s0C0_pSi_SDySSypGSgSSSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "errorWithCode:userInfo:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(domain:code:userInfo:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)errorWithDomain:code:userInfo:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC5error6domain4code8userInfo7message010underlyingC0s0C0_pSS_SiSDySSypGSgSSSgsAJ_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "errorWithDomain:code:userInfo:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidArgumentError", + "printedName": "invalidArgumentError(name:value:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)invalidArgumentErrorWithName:value:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC015invalidArgumentC04name5value7message010underlyingC0s0C0_pSS_ypSgSSSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "invalidArgumentErrorWithName:value:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidArgumentError", + "printedName": "invalidArgumentError(domain:name:value:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)invalidArgumentErrorWithDomain:name:value:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC015invalidArgumentC06domain4name5value7message010underlyingC0s0C0_pSS_SSypSgSSSgsAJ_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "invalidArgumentErrorWithDomain:name:value:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requiredArgumentError", + "printedName": "requiredArgumentError(name:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)requiredArgumentErrorWithName:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC016requiredArgumentC04name7message010underlyingC0s0C0_pSS_SSSgsAH_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requiredArgumentErrorWithName:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requiredArgumentError", + "printedName": "requiredArgumentError(domain:name:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)requiredArgumentErrorWithDomain:name:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC016requiredArgumentC06domain4name7message010underlyingC0s0C0_pSS_S2SSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requiredArgumentErrorWithDomain:name:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unknownError", + "printedName": "unknownError(message:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)unknownErrorWithMessage:userInfo:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC07unknownC07message8userInfos0C0_pSSSg_SDySSypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "unknownErrorWithMessage:userInfo:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reportError", + "printedName": "reportError(code:domain:message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC06reportC04code6domain7messageySi_S2SSgtF", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC06reportC04code6domain7messageySi_S2SSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorFactory", + "printedName": "FBSDKCoreKit._ErrorFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)init", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "reporter", + "printedName": "reporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvp", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvg", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvs", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvM", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterAESo19FBSDKErrorReporting_p_tcfc", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterAESo19FBSDKErrorReporting_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKErrorFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_FBCloseIcon", + "printedName": "_FBCloseIcon", + "children": [ + { + "kind": "Function", + "name": "image", + "printedName": "image(size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)imageWithSize:", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC5image4sizeSo7UIImageCSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:primaryColor:secondaryColor:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)imageWithSize:primaryColor:secondaryColor:scale:", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC5image4size12primaryColor09secondaryH05scaleSo7UIImageCSgSo6CGSizeV_So7UIColorCAO12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FBCloseIcon", + "printedName": "FBSDKCoreKit._FBCloseIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)init", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKCloseIcon", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_FBLogo", + "printedName": "_FBLogo", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit7_FBLogoC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FBLogo", + "printedName": "FBSDKCoreKit._FBLogo", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo(im)init", + "mangledName": "$s12FBSDKCoreKit7_FBLogoCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo", + "mangledName": "$s12FBSDKCoreKit7_FBLogoC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKLogo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_FeatureManager", + "printedName": "_FeatureManager", + "children": [ + { + "kind": "Var", + "name": "featureManagerPrefix", + "printedName": "featureManagerPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(py)featureManagerPrefix", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07featureD6PrefixSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)featureManagerPrefix", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07featureD6PrefixSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(cpy)shared", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(cm)shared", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEnabled", + "printedName": "isEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)isEnabled:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC9isEnabledySbSo12FBSDKFeatureVF", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEnabled:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "check", + "printedName": "check(_:completionBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + }, + { + "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:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)checkFeature:completionBlock:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC5check_15completionBlockySo12FBSDKFeatureV_ySbctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "checkFeature:completionBlock:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableFeature", + "printedName": "disableFeature(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)disableFeature:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07disableC0yySo12FBSDKFeatureVF", + "moduleName": "FBSDKCoreKit", + "objc_name": "disableFeature:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "storageKey", + "printedName": "storageKey(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)storageKeyFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC10storageKey3forSSSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkGateKeeper", + "printedName": "checkGateKeeper(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)checkGateKeeperFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC15checkGateKeeper3forSbSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "defaultStatus", + "printedName": "defaultStatus(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)defaultStatusFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC13defaultStatus3forSbSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParentFeature", + "printedName": "getParentFeature(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SDKFeature?", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC09getParentC03forSo12FBSDKFeatureVSgAG_tF", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC09getParentC03forSo12FBSDKFeatureVSgAG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "featureName", + "printedName": "featureName(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)featureNameFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC11featureName3forSSSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)init", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "store", + "printedName": "store", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(gateKeeperManager:settings:store:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD08settings5storeAESo09FBSDKGateH8Managing_pXp_AA16SettingsProtocol_pSo19FBSDKDataPersisting_ptcfc", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD08settings5storeAESo09FBSDKGateH8Managing_pXp_AA16SettingsProtocol_pSo19FBSDKDataPersisting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKFeatureManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_HumanSilhouetteIcon", + "printedName": "_HumanSilhouetteIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_HumanSilhouetteIcon", + "printedName": "FBSDKCoreKit._HumanSilhouetteIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon(im)init", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKHumanSilhouetteIcon", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_MeasurementEvent", + "printedName": "_MeasurementEvent", + "children": [ + { + "kind": "Function", + "name": "postNotification", + "printedName": "postNotification(eventName:arguments:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent(im)postNotificationForEventName:args:", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventC16postNotification9eventName9argumentsySS_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "postNotificationForEventName:args:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MeasurementEvent", + "printedName": "FBSDKCoreKit._MeasurementEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent(im)init", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKMeasurementEvent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_PaymentObserver", + "printedName": "_PaymentObserver", + "children": [ + { + "kind": "Var", + "name": "isObservingTransactions", + "printedName": "isObservingTransactions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvs", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvM", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "paymentQueue", + "printedName": "paymentQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestorFactory", + "printedName": "requestorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(paymentQueue:paymentProductRequestorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserver", + "printedName": "FBSDKCoreKit._PaymentObserver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + }, + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)initWithPaymentQueue:paymentProductRequestorFactory:", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueue0E23ProductRequestorFactoryACSo09SKPaymentF0C_So012FBSDKPaymentgH8Creating_ptcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithPaymentQueue:paymentProductRequestorFactory:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startObservingTransactions", + "printedName": "startObservingTransactions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)startObservingTransactions", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC26startObservingTransactionsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "startObservingTransactions", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopObservingTransactions", + "printedName": "stopObservingTransactions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)stopObservingTransactions", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC25stopObservingTransactionsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "stopObservingTransactions", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserver", + "printedName": "FBSDKCoreKit._PaymentObserver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)init", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "paymentQueue", + "printedName": "paymentQueue(_:updatedTransactions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[StoreKit.SKPaymentTransaction]", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)paymentQueue:updatedTransactions:", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueue_19updatedTransactionsySo09SKPaymentF0C_SaySo0I11TransactionCGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "paymentQueue:updatedTransactions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleTransaction", + "printedName": "handleTransaction(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC17handleTransactionyySo09SKPaymentF0CF", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC17handleTransactionyySo09SKPaymentF0CF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKPaymentObserver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_PaymentProductRequestorFactory", + "printedName": "_PaymentProductRequestorFactory", + "children": [ + { + "kind": "Function", + "name": "createRequestor", + "printedName": "createRequestor(transaction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PaymentProductRequestor", + "printedName": "FBSDKCoreKit.PaymentProductRequestor", + "usr": "c:objc(cs)FBSDKPaymentProductRequestor" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory(im)createRequestorWithTransaction:", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC06createE011transactionSo012FBSDKPaymentdE0CSo20SKPaymentTransactionC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createRequestorWithTransaction:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorFactory", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory(im)init", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "store", + "printedName": "store", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loggerFactory", + "printedName": "loggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "productsRequestFactory", + "printedName": "productsRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appStoreReceiptProvider", + "printedName": "appStoreReceiptProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:eventLogger:gateKeeperManager:store:loggerFactory:productsRequestFactory:appStoreReceiptProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + }, + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settings11eventLogger17gateKeeperManager5store06loggerF0015productsRequestF023appStoreReceiptProviderAeA16SettingsProtocol_p_So17FBSDKEventLogging_pSo09FBSDKGateM8Managing_pXpSo19FBSDKDataPersisting_pSo21__FBSDKLoggerCreating_pSo013FBSDKProductsR8Creating_pSo08FBSDKApptU9Providing_ptcfc", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settings11eventLogger17gateKeeperManager5store06loggerF0015productsRequestF023appStoreReceiptProviderAeA16SettingsProtocol_p_So17FBSDKEventLogging_pSo09FBSDKGateM8Managing_pXpSo19FBSDKDataPersisting_pSo21__FBSDKLoggerCreating_pSo013FBSDKProductsR8Creating_pSo08FBSDKApptU9Providing_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKPaymentProductRequestorFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_RestrictiveEventFilter", + "printedName": "_RestrictiveEventFilter", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(py)eventName", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventNameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)eventName", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventNameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "restrictiveParameters", + "printedName": "restrictiveParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(py)restrictiveParameters", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC21restrictiveParametersSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)restrictiveParameters", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC21restrictiveParametersSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventName:restrictiveParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_RestrictiveEventFilter", + "printedName": "FBSDKCoreKit._RestrictiveEventFilter", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)initWithEventName:restrictiveParameters:", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventName21restrictiveParametersACSS_SDySSypGtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEventName:restrictiveParameters:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_RestrictiveEventFilter", + "printedName": "FBSDKCoreKit._RestrictiveEventFilter", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)init", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKRestrictiveEventFilter", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_SKAdNetworkEvent", + "printedName": "_SKAdNetworkEvent", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(py)eventName", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC9eventNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)eventName", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC9eventNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(py)values", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)values", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)setValues:", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvM", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "_SKAdNetworkEvent", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)initWithJSON:", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC4jsonACSgSDySSypG_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithJSON:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_SKAdNetworkEvent", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)init", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKSKAdNetworkEvent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_ViewImpressionLogger", + "printedName": "_ViewImpressionLogger", + "children": [ + { + "kind": "Var", + "name": "impressionTrackers", + "printedName": "impressionTrackers", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cpy)impressionTrackers", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)impressionTrackers", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)setImpressionTrackers:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(py)eventName", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameSo013FBSDKAppEventG0avp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)eventName", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameSo013FBSDKAppEventG0avg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "trackedImpressions", + "printedName": "trackedImpressions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(py)trackedImpressions", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)trackedImpressions", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)setTrackedImpressions:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)initWithEventName:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameACSo013FBSDKAppEventG0a_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEventName:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "retrieveLogger", + "printedName": "retrieveLogger(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)retrieveLoggerWith:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC08retrieveE04withACSo17FBSDKAppEventNamea_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC29applicationDidEnterBackgroundyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logImpression", + "printedName": "logImpression(withIdentifier:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)logImpressionWithIdentifier:parameters:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC03logD014withIdentifier10parametersySS_SDySo26FBSDKAppEventParameterNameaypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logImpressionWithIdentifier:parameters:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)init", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationDeliverer", + "printedName": "notificationDeliverer", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tokenWallet", + "printedName": "tokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(graphRequestFactory:eventLogger:notificationDeliverer:tokenWallet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactory05eventE021notificationDeliverer11tokenWalletAESo010FBSDKGraphiJ0_p_So17FBSDKEventLogging_pSo27FBSDKNotificationDelivering_pSo25FBSDKAccessTokenProviding_pXptcfc", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactory05eventE021notificationDeliverer11tokenWalletAESo010FBSDKGraphiJ0_p_So17FBSDKEventLogging_pSo27FBSDKNotificationDelivering_pSo25FBSDKAccessTokenProviding_pXptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKViewImpressionLogger", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_WebDialog", + "printedName": "_WebDialog", + "children": [ + { + "kind": "Var", + "name": "shouldDeferVisibility", + "printedName": "shouldDeferVisibility", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)shouldDeferVisibility", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)shouldDeferVisibility", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setShouldDeferVisibility:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKCoreKit.WebDialogDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)delegate", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.WebDialogDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebDialogDelegate", + "printedName": "FBSDKCoreKit.WebDialogDelegate", + "usr": "c:objc(pl)FBSDKWebDialogDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)delegate", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.WebDialogDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebDialogDelegate", + "printedName": "FBSDKCoreKit.WebDialogDelegate", + "usr": "c:objc(pl)FBSDKWebDialogDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setDelegate:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)name", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)name", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setName:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC4nameSSvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "webViewFrame", + "printedName": "webViewFrame", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)webViewFrame", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webViewFrame", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setWebViewFrame:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)parameters", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)parameters", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setParameters:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "backgroundView", + "printedName": "backgroundView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)backgroundView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)backgroundView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setBackgroundView:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dialogView", + "printedName": "dialogView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)dialogView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)dialogView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setDialogView:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)path", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)path", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setPath:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC4pathSSSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:parameters:webViewFrame:path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)initWithName:parameters:webViewFrame:path:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4name10parameters12webViewFrame4pathACSS_SDyS2SGSgSo6CGRectVSSSgtcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)initWithName:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)show", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4showyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addObservers", + "printedName": "addObservers()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)addObservers", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12addObserversyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deviceOrientationDidChangeNotification", + "printedName": "deviceOrientationDidChangeNotification(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)deviceOrientationDidChangeNotification:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC38deviceOrientationDidChangeNotificationyy10Foundation0I0VF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeObservers", + "printedName": "removeObservers()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)removeObservers", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC15removeObserversyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)cancel", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC6cancelyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "complete", + "printedName": "complete(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)completeWith:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8complete4withySDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismiss", + "printedName": "dismiss(animated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)dismissWithAnimated:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC7dismiss8animatedySb_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fail", + "printedName": "fail(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)failWith:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4fail4withys5Error_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateURL", + "printedName": "generateURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)generateURLAndReturnError:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC11generateURL10Foundation0F0VyKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showWebView", + "printedName": "showWebView()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)showWebView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC04showC4ViewyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationFrameForOrientation", + "printedName": "applicationFrameForOrientation()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)applicationFrameForOrientation", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC30applicationFrameForOrientationSo6CGRectVyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateView", + "printedName": "updateView(scale:alpha:animationDuration:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "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:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)updateViewWithScale:alpha:animationDuration:completion:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10updateView5scale5alpha17animationDuration10completiony12CoreGraphics7CGFloatV_AKSdySbcSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)init", + "mangledName": "$s12FBSDKCoreKit10_WebDialogCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "webDialogView", + "printedName": "webDialogView(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogView:didCompleteWithResults:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD4View_22didCompleteWithResultsySo08FBSDKWebdF0C_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogView:didCompleteWithResults:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogView", + "printedName": "webDialogView(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogView:didFailWithError:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD4View_16didFailWithErrorySo08FBSDKWebdF0C_s0J0_ptF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogView:didFailWithError:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogViewDidCancel", + "printedName": "webDialogViewDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogViewDidCancel:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD13ViewDidCancelyySo08FBSDKWebdF0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogViewDidCancel:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogViewDidFinishLoad", + "printedName": "webDialogViewDidFinishLoad(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogViewDidFinishLoad:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD17ViewDidFinishLoadyySo08FBSDKWebdF0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogViewDidFinishLoad:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "windowFinder", + "printedName": "windowFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:windowFinder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactory12windowFinderAESo18FBSDKErrorCreating_p_So19_FBSDKWindowFinding_ptcfc", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactory12windowFinderAESo18FBSDKErrorCreating_p_So19_FBSDKWindowFinding_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKWebDialog", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_WebViewFactory", + "printedName": "_WebViewFactory", + "children": [ + { + "kind": "Function", + "name": "createWebView", + "printedName": "createWebView(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebView", + "printedName": "FBSDKCoreKit.WebView", + "usr": "c:objc(pl)FBSDKWebView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory(im)createWebViewWithFrame:", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryC06createcD05frameSo08FBSDKWebD0_pSo6CGRectV_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createWebViewWithFrame:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewFactory", + "printedName": "FBSDKCoreKit._WebViewFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory(im)init", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKWebViewFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AccessToken", + "printedName": "AccessToken", + "children": [ + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "expiredPermissions", + "printedName": "expiredPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hasGranted", + "printedName": "hasGranted(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "declKind": "Func", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE10hasGrantedySbAC10PermissionOF", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE10hasGrantedySbAC10PermissionOF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAccessToken", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAccessToken", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ASWebAuthenticationSession", + "printedName": "ASWebAuthenticationSession", + "declKind": "Class", + "usr": "c:objc(cs)ASWebAuthenticationSession", + "moduleName": "AuthenticationServices", + "isOpen": true, + "intro_iOS": "12.0", + "objc_name": "ASWebAuthenticationSession", + "declAttributes": [ + "Available", + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "AuthenticationSessionProtocol", + "printedName": "AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Comparable", + "printedName": "Comparable", + "children": [ + { + "kind": "Function", + "name": "fb_clamped", + "printedName": "fb_clamped(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ClosedRange", + "printedName": "Swift.ClosedRange<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SN" + } + ], + "declKind": "Func", + "usr": "s:SL12FBSDKCoreKitE10fb_clamped2toxSNyxG_tF", + "mangledName": "$sSL12FBSDKCoreKitE10fb_clamped2toxSNyxG_tF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:SL", + "mangledName": "$sSL", + "moduleName": "Swift", + "genericSig": "<τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AEMReporter", + "printedName": "AEMReporter", + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter", + "mangledName": "$s8FBAEMKit11AEMReporterC", + "moduleName": "FBAEMKit", + "objc_name": "FBAEMReporter", + "declAttributes": [ + "Final", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_AEMReporterProtocol", + "printedName": "_AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP" + }, + { + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLink.swift", + "kind": "StringLiteral", + "offset": 396, + "length": 7, + "value": "\"FBSDKCoreKit.AppLink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10839, + "length": 17, + "value": "\"outputURLScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10884, + "length": 11, + "value": "\"outputURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10923, + "length": 11, + "value": "\"sourceURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10963, + "length": 12, + "value": "\"sourceHost\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11006, + "length": 14, + "value": "\"sourceScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11046, + "length": 9, + "value": "\"success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11078, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11108, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11175, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11204, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 609, + "length": 17, + "value": "\"FBSDKCoreKit.AppLinkNavigation\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 671, + "length": 5, + "value": "\"url\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 708, + "length": 14, + "value": "\"app_store_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 751, + "length": 10, + "value": "\"app_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 5, + "value": "\"web\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 810, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 840, + "length": 8, + "value": "\"iphone\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 871, + "length": 6, + "value": "\"ipad\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 910, + "length": 17, + "value": "\"should_fallback\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 954, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 493, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 493, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 318, + "length": 29, + "value": "\"FBSDKCoreKit.AppLinkResolverRequestBuilder\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkTarget.swift", + "kind": "StringLiteral", + "offset": 419, + "length": 13, + "value": "\"FBSDKCoreKit.AppLinkTarget\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 908, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 954, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 1141, + "length": 31, + "value": "\"com.facebook.sdk.kits.bitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18010, + "length": 15, + "value": "\"fb_al_inbound\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18059, + "length": 17, + "value": "\"fb_auto_applink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18210, + "length": 11, + "value": "\"targetURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18257, + "length": 15, + "value": "\"targetURLHost\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18312, + "length": 19, + "value": "\"referralTargetURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18365, + "length": 13, + "value": "\"referralURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18416, + "length": 17, + "value": "\"referralAppName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18464, + "length": 10, + "value": "\"inputURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18511, + "length": 16, + "value": "\"inputURLScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18567, + "length": 19, + "value": "\"core_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18631, + "length": 20, + "value": "\"login_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18700, + "length": 24, + "value": "\"marketing_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18773, + "length": 24, + "value": "\"messenger_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18843, + "length": 21, + "value": "\"places_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18909, + "length": 20, + "value": "\"share_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18971, + "length": 17, + "value": "\"tv_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 19024, + "length": 15, + "value": "\"SchemeWarning\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 369, + "length": 5, + "value": "\"aud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 398, + "length": 7, + "value": "\"email\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 427, + "length": 5, + "value": "\"exp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 461, + "length": 13, + "value": "\"family_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 502, + "length": 12, + "value": "\"given_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 5, + "value": "\"iat\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 563, + "length": 5, + "value": "\"iss\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 590, + "length": 5, + "value": "\"jti\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 624, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 660, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 690, + "length": 7, + "value": "\"nonce\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 723, + "length": 9, + "value": "\"picture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 754, + "length": 5, + "value": "\"sub\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 790, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 837, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 925, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 969, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1011, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1053, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1125, + "length": 14, + "value": "\"facebook.com\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1173, + "length": 15, + "value": "\".facebook.com\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 287, + "length": 25, + "value": "\"FBSDKCoreKit.AuthenticationTokenClaims\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BackgroundEventLogger.swift", + "kind": "StringLiteral", + "offset": 327, + "length": 37, + "value": "\"BGTaskSchedulerPermittedIdentifiers\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BackgroundEventLogger.swift", + "kind": "StringLiteral", + "offset": 1623, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13668, + "length": 74, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13700, + "length": 1, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13735, + "length": 5, + "value": "\"nil\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13741, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 444, + "length": 7, + "value": "\"event\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 529, + "length": 18, + "value": "\"deprecated_param\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 583, + "length": 21, + "value": "\"is_deprecated_event\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "BooleanLiteral", + "offset": 653, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "BooleanLiteral", + "offset": 1361, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1349, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1460, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "StringLiteral", + "offset": 1543, + "length": 4, + "value": "\"me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 32, + "value": "\"fb_mobile_achievement_unlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 24, + "value": "\"fb_mobile_activate_app\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 28, + "value": "\"fb_mobile_add_payment_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 23, + "value": "\"fb_mobile_add_to_cart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 27, + "value": "\"fb_mobile_add_to_wishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 33, + "value": "\"fb_mobile_complete_registration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 633, + "length": 24, + "value": "\"fb_mobile_content_view\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 30, + "value": "\"fb_mobile_initiated_checkout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 739, + "length": 26, + "value": "\"fb_mobile_level_achieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 20, + "value": "\"fb_mobile_purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 16, + "value": "\"fb_mobile_rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 856, + "length": 18, + "value": "\"fb_mobile_search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 897, + "length": 25, + "value": "\"fb_mobile_spent_credits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 31, + "value": "\"fb_mobile_tutorial_completion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 32, + "value": "\"fb_mobile_achievement_unlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 24, + "value": "\"fb_mobile_activate_app\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 28, + "value": "\"fb_mobile_add_payment_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 23, + "value": "\"fb_mobile_add_to_cart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 27, + "value": "\"fb_mobile_add_to_wishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 33, + "value": "\"fb_mobile_complete_registration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 633, + "length": 24, + "value": "\"fb_mobile_content_view\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 30, + "value": "\"fb_mobile_initiated_checkout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 739, + "length": 26, + "value": "\"fb_mobile_level_achieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 20, + "value": "\"fb_mobile_purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 16, + "value": "\"fb_mobile_rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 856, + "length": 18, + "value": "\"fb_mobile_search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 897, + "length": 25, + "value": "\"fb_mobile_spent_credits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 31, + "value": "\"fb_mobile_tutorial_completion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1036, + "length": 10, + "value": "\"_logTime\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1066, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 13, + "value": "\"_valueToSum\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1165, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1202, + "length": 17, + "value": "\"fb_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1241, + "length": 16, + "value": "\"fb_description\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1273, + "length": 10, + "value": "\"fb_level\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 21, + "value": "\"fb_max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 14, + "value": "\"fb_num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1393, + "length": 27, + "value": "\"fb_payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 24, + "value": "\"fb_registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 18, + "value": "\"fb_search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 12, + "value": "\"fb_success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 13, + "value": "\"fb_order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1620, + "length": 13, + "value": "\"fb_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1036, + "length": 10, + "value": "\"_logTime\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1066, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 13, + "value": "\"_valueToSum\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1165, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1202, + "length": 17, + "value": "\"fb_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1241, + "length": 16, + "value": "\"fb_description\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1273, + "length": 10, + "value": "\"fb_level\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 21, + "value": "\"fb_max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 14, + "value": "\"fb_num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1393, + "length": 27, + "value": "\"fb_payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 24, + "value": "\"fb_registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 18, + "value": "\"fb_search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 12, + "value": "\"fb_success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 13, + "value": "\"fb_order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1620, + "length": 13, + "value": "\"fb_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1988, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 13, + "value": "\"app_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2053, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2085, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2203, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2248, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2340, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2396, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2489, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2534, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2575, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1988, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 13, + "value": "\"app_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2053, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2085, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2203, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2248, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2340, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2396, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2489, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2534, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2575, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2754, + "length": 11, + "value": "\"user_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 10, + "value": "\"app_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2814, + "length": 13, + "value": "\"custom_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2850, + "length": 15, + "value": "\"custom_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2754, + "length": 11, + "value": "\"user_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 10, + "value": "\"app_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2814, + "length": 13, + "value": "\"custom_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2850, + "length": 15, + "value": "\"custom_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2962, + "length": 12, + "value": "\"event_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2994, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3027, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3078, + "length": 14, + "value": "\"content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3149, + "length": 18, + "value": "\"max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3186, + "length": 11, + "value": "\"num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3228, + "length": 24, + "value": "\"payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3281, + "length": 21, + "value": "\"registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 15, + "value": "\"search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3373, + "length": 10, + "value": "\"order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3400, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2962, + "length": 12, + "value": "\"event_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2994, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3027, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3078, + "length": 14, + "value": "\"content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3149, + "length": 18, + "value": "\"max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3186, + "length": 11, + "value": "\"num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3228, + "length": 24, + "value": "\"payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3281, + "length": 21, + "value": "\"registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 15, + "value": "\"search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3373, + "length": 10, + "value": "\"order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3400, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3516, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 13, + "value": "\"fb_login_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3588, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3624, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3664, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3751, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3805, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3843, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3899, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3946, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3992, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4037, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4078, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4148, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3516, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 13, + "value": "\"fb_login_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3588, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3624, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3664, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3751, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3805, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3843, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3899, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3946, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3992, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4037, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4078, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4148, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4234, + "length": 21, + "value": "\"AchievementUnlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4277, + "length": 13, + "value": "\"ActivateApp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4315, + "length": 16, + "value": "\"AddPaymentInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4351, + "length": 11, + "value": "\"AddToCart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4386, + "length": 15, + "value": "\"AddToWishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4432, + "length": 22, + "value": "\"CompleteRegistration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4476, + "length": 13, + "value": "\"ViewContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 18, + "value": "\"InitiateCheckout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4558, + "length": 15, + "value": "\"LevelAchieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4592, + "length": 10, + "value": "\"Purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4617, + "length": 6, + "value": "\"Rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4640, + "length": 8, + "value": "\"Search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4671, + "length": 14, + "value": "\"SpentCredits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4714, + "length": 20, + "value": "\"TutorialCompletion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4234, + "length": 21, + "value": "\"AchievementUnlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4277, + "length": 13, + "value": "\"ActivateApp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4315, + "length": 16, + "value": "\"AddPaymentInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4351, + "length": 11, + "value": "\"AddToCart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4386, + "length": 15, + "value": "\"AddToWishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4432, + "length": 22, + "value": "\"CompleteRegistration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4476, + "length": 13, + "value": "\"ViewContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 18, + "value": "\"InitiateCheckout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4558, + "length": 15, + "value": "\"LevelAchieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4592, + "length": 10, + "value": "\"Purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4617, + "length": 6, + "value": "\"Rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4640, + "length": 8, + "value": "\"Search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4671, + "length": 14, + "value": "\"SpentCredits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4714, + "length": 20, + "value": "\"TutorialCompletion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 15, + "value": "\"action_source\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4861, + "length": 18, + "value": "\"MobileAppInstall\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4906, + "length": 19, + "value": "\"install_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 15, + "value": "\"action_source\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4861, + "length": 18, + "value": "\"MobileAppInstall\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4906, + "length": 19, + "value": "\"install_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8628, + "length": 25, + "value": "\"data_processing_options\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8673, + "length": 33, + "value": "\"data_processing_options_country\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8724, + "length": 31, + "value": "\"data_processing_options_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8628, + "length": 25, + "value": "\"data_processing_options\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8673, + "length": 33, + "value": "\"data_processing_options_country\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8724, + "length": 31, + "value": "\"data_processing_options_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 10, + "value": "\"endpoint\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 12, + "value": "\"is_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 377, + "length": 12, + "value": "\"dataset_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 12, + "value": "\"access_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 10, + "value": "\"endpoint\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 12, + "value": "\"is_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 377, + "length": 12, + "value": "\"dataset_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 12, + "value": "\"access_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 22, + "value": "\"cloudbridge_settings\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 736, + "length": 20, + "value": "\"capi_gateway_queue\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "BooleanLiteral", + "offset": 849, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "BooleanLiteral", + "offset": 1029, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "Array", + "offset": 1083, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "IntegerLiteral", + "offset": 1163, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "StringLiteral", + "offset": 380, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 423, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 482, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "Array", + "offset": 518, + "length": 192, + "value": "[1009, 1004, 429, 503, 504]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "Array", + "offset": 977, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 485, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 569, + "length": 20, + "value": "\"oauth\/access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 12, + "value": "\"grant_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 654, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 689, + "length": 11, + "value": "\"client_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 728, + "length": 12, + "value": "\"expires_at\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 29, + "value": "\"data_access_expiration_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 841, + "length": 12, + "value": "\"permission\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 878, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 912, + "length": 9, + "value": "\"granted\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 948, + "length": 10, + "value": "\"declined\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 984, + "length": 9, + "value": "\"expired\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1077, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1082, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1087, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1159, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1164, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1211, + "length": 21, + "value": "\"fb_extend_sso_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1311, + "length": 16, + "value": "\"me\/permissions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1370, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/MACARuleMatchingManager.swift", + "kind": "BooleanLiteral", + "offset": 357, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/MACARuleMatchingManager.swift", + "kind": "Array", + "offset": 422, + "length": 262, + "value": "[\"event\", \"_locale\", \"_appVersion\", \"_deviceOS\", \"_platform\", \"_deviceModel\", \"_nativeAppID\", \"_nativeAppShortVersion\", \"_timezone\", \"_carrier\", \"_deviceOSTypeName\", \"_deviceOSVersion\", \"_remainingDiskGB\"]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7931, + "length": 16, + "value": "\"public_profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 15, + "value": "\"user_about_me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8060, + "length": 20, + "value": "\"user_actions.books\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8109, + "length": 21, + "value": "\"user_action.fitness\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8157, + "length": 20, + "value": "\"user_actions.music\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 19, + "value": "\"user_actions.news\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8249, + "length": 20, + "value": "\"user_actions.video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8292, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8338, + "length": 24, + "value": "\"user_education_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8383, + "length": 13, + "value": "\"user_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8424, + "length": 21, + "value": "\"user_games_activity\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8466, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8502, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8537, + "length": 12, + "value": "\"user_likes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8572, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8615, + "length": 21, + "value": "\"user_managed_groups\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8657, + "length": 13, + "value": "\"user_photos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8690, + "length": 12, + "value": "\"user_posts\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8730, + "length": 20, + "value": "\"user_relationships\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8784, + "length": 27, + "value": "\"user_relationship_details\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8842, + "length": 24, + "value": "\"user_religion_politics\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8893, + "length": 20, + "value": "\"user_tagged_places\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8934, + "length": 13, + "value": "\"user_videos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8969, + "length": 14, + "value": "\"user_website\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9009, + "length": 19, + "value": "\"user_work_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9060, + "length": 25, + "value": "\"read_custom_friendlists\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9108, + "length": 15, + "value": "\"read_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 32, + "value": "\"read_audience_network_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9221, + "length": 21, + "value": "\"read_page_mailboxes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9266, + "length": 17, + "value": "\"pages_show_list\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9308, + "length": 18, + "value": "\"pages_manage_cta\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 31, + "value": "\"pages_manage_instant_articles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9412, + "length": 10, + "value": "\"ads_read\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9441, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9475, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7931, + "length": 16, + "value": "\"public_profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 15, + "value": "\"user_about_me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8060, + "length": 20, + "value": "\"user_actions.books\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8109, + "length": 21, + "value": "\"user_action.fitness\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8157, + "length": 20, + "value": "\"user_actions.music\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 19, + "value": "\"user_actions.news\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8249, + "length": 20, + "value": "\"user_actions.video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8292, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8338, + "length": 24, + "value": "\"user_education_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8383, + "length": 13, + "value": "\"user_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8424, + "length": 21, + "value": "\"user_games_activity\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8466, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8502, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8537, + "length": 12, + "value": "\"user_likes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8572, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8615, + "length": 21, + "value": "\"user_managed_groups\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8657, + "length": 13, + "value": "\"user_photos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8690, + "length": 12, + "value": "\"user_posts\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8730, + "length": 20, + "value": "\"user_relationships\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8784, + "length": 27, + "value": "\"user_relationship_details\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8842, + "length": 24, + "value": "\"user_religion_politics\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8893, + "length": 20, + "value": "\"user_tagged_places\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8934, + "length": 13, + "value": "\"user_videos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8969, + "length": 14, + "value": "\"user_website\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9009, + "length": 19, + "value": "\"user_work_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9060, + "length": 25, + "value": "\"read_custom_friendlists\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9108, + "length": 15, + "value": "\"read_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 32, + "value": "\"read_audience_network_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9221, + "length": 21, + "value": "\"read_page_mailboxes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9266, + "length": 17, + "value": "\"pages_show_list\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9308, + "length": 18, + "value": "\"pages_manage_cta\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 31, + "value": "\"pages_manage_instant_articles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9412, + "length": 10, + "value": "\"ads_read\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9441, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9475, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 591, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 699, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 806, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 5, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 591, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 699, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 806, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 5, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2718, + "length": 7, + "value": "\"graph\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2748, + "length": 9, + "value": "\"picture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2857, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2857, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 292, + "length": 12, + "value": "\"MM\/dd\/yyyy\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5901, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5957, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6060, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6095, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6129, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5901, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5957, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6060, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6095, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6129, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6238, + "length": 4, + "value": "\"me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6275, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6316, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6378, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6404, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6439, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6473, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6505, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6378, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6404, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6439, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6473, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6505, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6725, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6744, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6763, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ProfileProviding.swift", + "kind": "StringLiteral", + "offset": 2627, + "length": 46, + "value": "\"com.facebook.sdk.FBSDKProfile.currentProfile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile.swift", + "kind": "BooleanLiteral", + "offset": 3836, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile.swift", + "kind": "StringLiteral", + "offset": 858, + "length": 7, + "value": "\"FBSDKCoreKit.Profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "BooleanLiteral", + "offset": 365, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "Array", + "offset": 426, + "length": 3246, + "value": "[\"_currency\", \"_valueToSum\", \"fb_availability\", \"fb_body_style\", \"fb_checkin_date\", \"fb_checkout_date\", \"fb_city\", \"fb_condition_of_vehicle\", \"fb_content_category\", \"fb_content_ids\", \"fb_content_name\", \"fb_content_type\", \"fb_contents\", \"fb_country\", \"fb_currency\", \"fb_delivery_category\", \"fb_departing_arrival_date\", \"fb_departing_departure_date\", \"fb_destination_airport\", \"fb_destination_ids\", \"fb_dma_code\", \"fb_drivetrain\", \"fb_exterior_color\", \"fb_fuel_type\", \"fb_hotel_score\", \"fb_interior_color\", \"fb_lease_end_date\", \"fb_lease_start_date\", \"fb_listing_type\", \"fb_make\", \"fb_mileage.unit\", \"fb_mileage.value\", \"fb_model\", \"fb_neighborhood\", \"fb_num_adults\", \"fb_num_children\", \"fb_num_infants\", \"fb_num_items\", \"fb_order_id\", \"fb_origin_airport\", \"fb_postal_code\", \"fb_predicted_ltv\", \"fb_preferred_baths_range\", \"fb_preferred_beds_range\", \"fb_preferred_neighborhoods\", \"fb_preferred_num_stops\", \"fb_preferred_price_range\", \"fb_preferred_star_ratings\", \"fb_price\", \"fb_property_type\", \"fb_region\", \"fb_returning_arrival_date\", \"fb_returning_departure_date\", \"fb_search_string\", \"fb_state_of_vehicle\", \"fb_status\", \"fb_suggested_destinations\", \"fb_suggested_home_listings\", \"fb_suggested_hotels\", \"fb_suggested_jobs\", \"fb_suggested_local_service_businesses\", \"fb_suggested_location_based_items\", \"fb_suggested_vehicles\", \"fb_transmission\", \"fb_travel_class\", \"fb_travel_end\", \"fb_travel_start\", \"fb_trim\", \"fb_user_bucket\", \"fb_value\", \"fb_vin\", \"fb_year\", \"lead_event_source\", \"predicted_ltv\", \"product_catalog_id\", \"app_user_id\", \"appVersion\", \"_eventName\", \"_eventName_md5\", \"_currency\", \"_implicitlyLogged\", \"_inBackground\", \"_isTimedEvent\", \"_logTime\", \"fb_order_id\", \"_session_id\", \"_ui\", \"_valueToSum\", \"_valueToUpdate\", \"_is_fb_codeless\", \"_is_suggested_event\", \"_fb_pixel_referral_id\", \"fb_pixel_id\", \"trace_id\", \"user_agent\", \"subscription_id\", \"predicted_ltv\", \"event_id\", \"_restrictedParams\", \"_onDeviceParams\", \"purchase_valid_result_type\", \"core_lib_included\", \"login_lib_included\", \"share_lib_included\", \"place_lib_included\", \"messenger_lib_included\", \"applinks_lib_included\", \"marketing_lib_included\", \"_codeless_action\", \"sdk_initialized\", \"billing_client_lib_included\", \"billing_service_lib_included\", \"user_data_keys\", \"device_push_token\", \"fb_mobile_pckg_fp\", \"fb_mobile_app_cert_hash\", \"aggregate_id\", \"anonymous_id\", \"campaign_ids\", \"fb_post_attachment\", \"receipt_data\", \"ad_type\", \"fb_content\", \"fb_content_id\", \"fb_content_type\", \"fb_currency\", \"fb_description\", \"fb_level\", \"fb_max_rating_value\", \"fb_num_items\", \"fb_order_id\", \"fb_payment_info_available\", \"fb_registration_method\", \"fb_search_string\", \"fb_success\", \"pm\", \"_audiencePropertyIds\", \"cs_maca\"]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "Array", + "offset": 3721, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 3661, + "length": 460, + "value": "\": Please set a value for FacebookAutoLogAppEventsEnabled. Set the flag to TRUE if you want to collect app install, app launch and in-app purchase events automatically. To request user consent before collecting data, set the flag value to FALSE, then change to TRUE once user consent is received. Learn more: https:\/\/developers.facebook.com\/docs\/app-events\/getting-started-app-events-ios#disable-auto-events.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 209, + "value": "\": You haven't set a value for FacebookAdvertiserIDCollectionEnabled. Set the flag to TRUE if you want to collect Advertiser ID for better advertising and analytics results.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4441, + "length": 250, + "value": "\": The value for FacebookAdvertiserIDCollectionEnabled is currently set to FALSE so you're sending app events without collecting Advertiser ID. This can affect the quality of your advertising and analytics results.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4842, + "length": 7, + "value": "\"usage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4897, + "length": 9, + "value": "\"initial\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4955, + "length": 10, + "value": "\"previous\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 5013, + "length": 9, + "value": "\"current\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2021, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2222, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2405, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 25, + "value": "\"FacebookUrlSchemeSuffix\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 340, + "length": 21, + "value": "\"FacebookClientToken\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 21, + "value": "\"FacebookDisplayName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 20, + "value": "\"FacebookDomainPart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 33, + "value": "\"FacebookAutoLogAppEventsEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 39, + "value": "\"FacebookAdvertiserIDCollectionEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 33, + "value": "\"FacebookCodelessDebugLogEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 703, + "length": 25, + "value": "\"FacebookLoggingBehavior\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 746, + "length": 15, + "value": "\"FacebookAppID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 796, + "length": 32, + "value": "\"FacebookJpegCompressionQuality\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 867, + "length": 34, + "value": "\"FacebookSKAdNetworkReportEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 939, + "length": 57, + "value": "\"com.facebook.sdk:FBSDKSettingsAdvertisingTrackingStatus\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 54, + "value": "\"com.facebook.sdk:FBSDKSettingsLimitEventAndDataUsage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 67, + "value": "\"com.facebook.sdk:FBSDKSettingsUseCachedValuesForExpensiveMetadata\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 53, + "value": "\"com.facebook.sdk.FBSDKSettingsUseTokenOptimizations\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 53, + "value": "\"com.facebook.sdk:FBSDKSettingsDataProcessingOptions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1394, + "length": 39, + "value": "\"com.facebook.sdk:FBSDKSettingsBitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKSettingsInstallTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1560, + "length": 69, + "value": "\"com.facebook.sdk:FBSDKSettingsSetAdvertiserTrackingEnabledTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 25, + "value": "\"FacebookUrlSchemeSuffix\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 340, + "length": 21, + "value": "\"FacebookClientToken\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 21, + "value": "\"FacebookDisplayName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 20, + "value": "\"FacebookDomainPart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 33, + "value": "\"FacebookAutoLogAppEventsEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 39, + "value": "\"FacebookAdvertiserIDCollectionEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 33, + "value": "\"FacebookCodelessDebugLogEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 703, + "length": 25, + "value": "\"FacebookLoggingBehavior\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 746, + "length": 15, + "value": "\"FacebookAppID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 796, + "length": 32, + "value": "\"FacebookJpegCompressionQuality\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 867, + "length": 34, + "value": "\"FacebookSKAdNetworkReportEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 939, + "length": 57, + "value": "\"com.facebook.sdk:FBSDKSettingsAdvertisingTrackingStatus\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 54, + "value": "\"com.facebook.sdk:FBSDKSettingsLimitEventAndDataUsage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 67, + "value": "\"com.facebook.sdk:FBSDKSettingsUseCachedValuesForExpensiveMetadata\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 53, + "value": "\"com.facebook.sdk.FBSDKSettingsUseTokenOptimizations\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 53, + "value": "\"com.facebook.sdk:FBSDKSettingsDataProcessingOptions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1394, + "length": 39, + "value": "\"com.facebook.sdk:FBSDKSettingsBitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKSettingsInstallTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1560, + "length": 69, + "value": "\"com.facebook.sdk:FBSDKSettingsSetAdvertiserTrackingEnabledTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "FloatLiteral", + "offset": 1347, + "length": 3, + "value": "0.9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 5615, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 6356, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 7159, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 7308, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "StringLiteral", + "offset": 12338, + "length": 5, + "value": "\"ldu\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 16945, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "StringLiteral", + "offset": 20579, + "length": 391, + "value": "\"As of v9.0, you must initialize the SDK prior to calling any methods or setting any properties. You can do this by calling `ApplicationDelegate.application(_:didFinishLaunchingWithOptions:)`. Learn more: https:\/\/developers.facebook.com\/docs\/ios\/getting-started. If no `UIApplication` instance is available, you can use `ApplicationDelegate.initializeSDK()`.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ShareDialogConfiguration.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ShareDialogConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 314, + "length": 52, + "value": "\"com.facebook.sdk.v4.FBSDKAccessTokenInformationKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 404, + "length": 60, + "value": "\"com.facebook.sdk.v4.FBSDKAccessTokenInformationKeychainKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 514, + "length": 60, + "value": "\"com.facebook.sdk.v9.FBSDKAuthenticationTokenInformationKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 620, + "length": 68, + "value": "\"com.facebook.sdk.v9.FBSDKAuthenticationTokenInformationKeychainKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 716, + "length": 11, + "value": "\"tokenUUID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 758, + "length": 14, + "value": "\"tokenEncoded\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/_AccessTokenExpirer.swift", + "kind": "StringLiteral", + "offset": 483, + "length": 19, + "value": "\"FBSDKCoreKit._AccessTokenExpirer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 682, + "length": 59, + "value": "\"com.apple.AuthenticationServices.WebAuthenticationSession\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 777, + "length": 11, + "value": "\"com.apple\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 8, + "value": "\"bridge\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1420, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1519, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1542, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 445, + "length": 10, + "value": "\"FBSDKCoreKit._BridgeAPI\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "IntegerLiteral", + "offset": 693, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "IntegerLiteral", + "offset": 700, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1417, + "length": 5, + "value": "\"png\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1486, + "length": 10, + "value": "\"isBase64\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1527, + "length": 14, + "value": "\"isPasteboard\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1563, + "length": 5, + "value": "\"tag\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 32, + "value": "\"fbAppBridgeType_jsonReadyValue\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 39, + "value": "\"com.facebook.Facebook.FBAppBridgeType\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 15, + "value": "\"CFBundleIcons\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1802, + "length": 21, + "value": "\"CFBundlePrimaryIcon\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1851, + "length": 19, + "value": "\"CFBundleIconFiles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1926, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1965, + "length": 16, + "value": "\"method_results\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 19, + "value": "\"completionGesture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2061, + "length": 8, + "value": "\"cancel\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2094, + "length": 8, + "value": "\"dialog\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2177, + "length": 11, + "value": "\"action_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2214, + "length": 10, + "value": "\"app_icon\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2250, + "length": 10, + "value": "\"app_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2289, + "length": 13, + "value": "\"sdk_version\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2360, + "length": 13, + "value": "\"bridge_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2398, + "length": 13, + "value": "\"method_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2466, + "length": 6, + "value": "\"code\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2497, + "length": 8, + "value": "\"domain\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2532, + "length": 11, + "value": "\"user_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 457, + "length": 26, + "value": "\"FBSDKCoreKit._BridgeAPIProtocolNativeV1\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 587, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 615, + "length": 5, + "value": "\"url\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 647, + "length": 10, + "value": "\"versions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 529, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 578, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKErrorDeveloperMessageKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 44, + "value": "\"com.facebook.sdk:FBSDKErrorArgumentNameKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 45, + "value": "\"com.facebook.sdk:FBSDKErrorArgumentValueKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/FeatureManager\/_FeatureManager.swift", + "kind": "StringLiteral", + "offset": 571, + "length": 51, + "value": "\"com.facebook.sdk:FBSDKFeatureManager.FBSDKFeature\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_MeasurementEvent.swift", + "kind": "StringLiteral", + "offset": 691, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_MeasurementEvent.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 12, + "value": "\"event_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/_PaymentObserver.swift", + "kind": "BooleanLiteral", + "offset": 594, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/_PaymentObserver.swift", + "kind": "StringLiteral", + "offset": 514, + "length": 16, + "value": "\"FBSDKCoreKit._PaymentObserver\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/_RestrictiveEventFilter.swift", + "kind": "StringLiteral", + "offset": 459, + "length": 23, + "value": "\"FBSDKCoreKit._RestrictiveEventFilter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 604, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 10, + "value": "\"currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 711, + "length": 8, + "value": "\"amount\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 453, + "length": 17, + "value": "\"FBSDKCoreKit._SKAdNetworkEvent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/UI\/_ViewImpressionLogger.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 21, + "value": "\"FBSDKCoreKit._ViewImpressionLogger\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "BooleanLiteral", + "offset": 507, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "FloatLiteral", + "offset": 785, + "length": 3, + "value": "0.2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "FloatLiteral", + "offset": 814, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 9, + "value": "\"display\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 913, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 948, + "length": 14, + "value": "\"redirect_uri\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 986, + "length": 8, + "value": "\"app_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1024, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1103, + "length": 7, + "value": "\"touch\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1139, + "length": 35, + "value": "\"ios-\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1173, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1200, + "length": 21, + "value": "\"fbconnect:\/\/success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 447, + "length": 10, + "value": "\"FBSDKCoreKit._WebDialog\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface new file mode 100644 index 00000000..18b26a58 --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface @@ -0,0 +1,685 @@ +// 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-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import AdSupport +import AuthenticationServices +import FBAEMKit +@_exported import FBSDKCoreKit +import FBSDKCoreKit_Basics +import Foundation +import SafariServices +import StoreKit +import Swift +import UIKit +import _Concurrency +import _StringProcessing +extension FBSDKCoreKit.AccessToken { + public var permissions: Swift.Set { + get + } + public var declinedPermissions: Swift.Set { + get + } + public var expiredPermissions: Swift.Set { + get + } + public func hasGranted(_ permission: FBSDKCoreKit.Permission) -> Swift.Bool +} +@objcMembers @objc(FBSDKAppLink) final public class AppLink : ObjectiveC.NSObject, FBSDKCoreKit._AppLinkProtocol { + @objc final public let sourceURL: Foundation.URL? + @objc final public let targets: [FBSDKCoreKit.AppLinkTargetProtocol] + @objc final public let webURL: Foundation.URL? + @objc final public var isBackToReferrer: Swift.Bool + @objc(initWithSourceURL:targets:webURL:) convenience public init(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLink. This method will be removed in future releases.\"") + @objc(appLinkWithSourceURL:targets:webURL:) public static func appLink(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?) -> FBSDKCoreKit._AppLinkProtocol + @objc(initWithSourceURL:targets:webURL:isBackToReferrer:) public init(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?, isBackToReferrer: Swift.Bool) + @objc deinit +} +@available(iOSApplicationExtension, unavailable, message: "Not available in app extension") +@objcMembers @objc(FBSDKAppLinkNavigation) final public class AppLinkNavigation : ObjectiveC.NSObject { + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `defaultResolver` instead.") + @nonobjc public static var `default`: FBSDKCoreKit.AppLinkResolving { + get + set + } + @objc(defaultResolver) public static var defaultResolver: FBSDKCoreKit.AppLinkResolving { + @objc get + @objc set + } + @objc final public let extras: [Swift.String : Any] + @objc final public let appLinkData: [Swift.String : Any] + @objc final public let appLink: FBSDKCoreKit.AppLink + @objc final public var navigationType: FBSDKCoreKit.AppLinkNavigationType { + @objc get + } + @objc(initWithAppLink:extras:appLinkData:) public init(appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any]) + @available(*, deprecated, message: "Please use init(appLink:extras:appLinkData:) to instantiate an `AppLinkNavigation`.\nThis method will be removed in the next major version.\"") + @objc(initWithAppLink:extras:appLinkData:settings:) convenience public init(appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any], settings: FBSDKCoreKit.SettingsProtocol) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLinkNavigation. This method will be removed in future releases.\"") + @objc(navigationWithAppLink:extras:appLinkData:settings:) public static func navigation(with appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any], settings: FBSDKCoreKit.SettingsProtocol) -> FBSDKCoreKit.AppLinkNavigation + @objc(callbackAppLinkDataForAppWithName:url:) public static func callbackAppLinkData(forApp appName: Swift.String, url: Swift.String) -> [Swift.String : [Swift.String : Swift.String]] + @available(swift, obsoleted: 0.1) + @objc(navigate:) final public func navigate(error errorPointer: Foundation.NSErrorPointer) -> FBSDKCoreKit.AppLinkNavigationType + @nonobjc final public func navigate() throws -> FBSDKCoreKit.AppLinkNavigationType + @objc(resolveAppLink:handler:) public static func resolveAppLink(_ destination: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @objc(resolveAppLink:resolver:handler:) public static func resolveAppLink(_ destination: Foundation.URL, resolver: FBSDKCoreKit.AppLinkResolving, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @available(swift, obsoleted: 0.1) + @objc(navigateToAppLink:error:) public static func navigate(to appLink: FBSDKCoreKit.AppLink, errorPointer: Foundation.ErrorPointer) -> FBSDKCoreKit.AppLinkNavigationType + @nonobjc public static func navigate(to appLink: FBSDKCoreKit.AppLink) throws -> FBSDKCoreKit.AppLinkNavigationType + @objc(navigationTypeForLink:) public static func navigationType(for appLink: FBSDKCoreKit.AppLink) -> FBSDKCoreKit.AppLinkNavigationType + @objc(navigateToURL:handler:) public static func navigate(to destination: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkNavigationBlock) + @objc(navigateToURL:resolver:handler:) public static func navigate(to destination: Foundation.URL, resolver: FBSDKCoreKit.AppLinkResolving, handler: @escaping FBSDKCoreKit.AppLinkNavigationBlock) + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKAppLinkResolver) final public class AppLinkResolver : ObjectiveC.NSObject, FBSDKCoreKit.AppLinkResolving { + @objc final public func appLink(from url: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @objc @available(iOSApplicationExtension, unavailable, message: "Not available in app extension") + final public func appLinks(from urls: [Foundation.URL], handler: @escaping FBSDKCoreKit.AppLinksBlock) + @objc override dynamic public init() + @objc deinit +} +@objcMembers @objc(FBSDKAppLinkTarget) final public class AppLinkTarget : ObjectiveC.NSObject, FBSDKCoreKit.AppLinkTargetProtocol { + @objc final public let url: Foundation.URL? + @objc final public let appStoreId: Swift.String? + @objc final public let appName: Swift.String + @objc(initWithURL:appStoreId:appName:) public init(url: Foundation.URL?, appStoreId: Swift.String?, appName: Swift.String) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLinkTarget. This method will be removed in future releases.\"") + @objc(appLinkTargetWithURL:appStoreId:appName:) public static func appLinkTargetWithURL(url: Foundation.URL?, appStoreId: Swift.String?, appName: Swift.String) -> FBSDKCoreKit.AppLinkTarget + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKApplicationDelegate) final public class ApplicationDelegate : ObjectiveC.NSObject { + @objc(sharedInstance) public static var shared: FBSDKCoreKit.ApplicationDelegate { + get + } + @objc final public func initializeSDK() + @discardableResult + @objc(application:continueUserActivity:) final public func application(_ application: UIKit.UIApplication, continue userActivity: Foundation.NSUserActivity) -> Swift.Bool + @discardableResult + @objc(application:openURL:options:) final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, options: [UIKit.UIApplication.OpenURLOptionsKey : Any]) -> Swift.Bool + @discardableResult + @objc(application:openURL:sourceApplication:annotation:) final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc @discardableResult + final public func application(_ application: UIKit.UIApplication, didFinishLaunchingWithOptions launchOptions: [UIKit.UIApplication.LaunchOptionsKey : Any]? = nil) -> Swift.Bool + @objc final public func addObserver(_ observer: FBSDKCoreKit.FBSDKApplicationObserving) + @objc final public func removeObserver(_ observer: FBSDKCoreKit.FBSDKApplicationObserving) + @objc deinit +} +@_hasMissingDesignatedInitializers @objc(FBSDKAuthenticationTokenClaims) final public class AuthenticationTokenClaims : ObjectiveC.NSObject { + final public let jti: Swift.String + final public let iss: Swift.String + final public let aud: Swift.String + final public let nonce: Swift.String + final public let exp: Foundation.TimeInterval + final public let iat: Foundation.TimeInterval + final public let sub: Swift.String + final public let name: Swift.String? + final public let givenName: Swift.String? + final public let middleName: Swift.String? + final public let familyName: Swift.String? + final public let email: Swift.String? + final public let picture: Swift.String? + final public let userFriends: [Swift.String]? + final public let userBirthday: Swift.String? + final public let userAgeRange: [Swift.String : Foundation.NSNumber]? + final public let userHometown: [Swift.String : Swift.String]? + final public let userLocation: [Swift.String : Swift.String]? + final public let userGender: Swift.String? + final public let userLink: Swift.String? + @objc(initWithEncodedClaims:nonce:) convenience public init?(encodedClaims: Swift.String, nonce expectedNonce: Swift.String) + @objc deinit +} +@objc(FBSDKCAPIReporter) public protocol CAPIReporter { + @objc func enable() + @objc func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) + @objc func recordEvent(_ parameters: [Swift.String : Any]) +} +@_inheritsConvenienceInitializers @objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { + @objc public static let shared: FBSDKCoreKit._InternalURLOpener + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKIcon) open class FBIcon : ObjectiveC.NSObject { + @objc open func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, scale: CoreFoundation.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { + @objc @_Concurrency.MainActor(unsafe) final public var pictureMode: FBSDKCoreKit.Profile.PictureMode { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var profileID: Swift.String { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreFoundation.CGRect { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc override final public var contentMode: UIKit.UIView.ContentMode { + @objc get + @objc set + } + @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, profile: FBSDKCoreKit.Profile? = nil) + @objc(initWithProfile:) @_Concurrency.MainActor(unsafe) convenience public init(profile: FBSDKCoreKit.Profile? = nil) + @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreFoundation.CGRect) + @objc(initWithCoder:) @_Concurrency.MainActor(unsafe) required dynamic public init?(coder: Foundation.NSCoder) + @objc @_Concurrency.MainActor(unsafe) final public func setNeedsImageUpdate() + @objc deinit +} +public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager +public typealias CAPIGBlock = (Swift.Bool) -> Swift.Void +@objc @_inheritsConvenienceInitializers @objcMembers final public class FBSDKAppEventsCAPIManager : ObjectiveC.NSObject, FBSDKCoreKit.CAPIReporter { + @objc public static let shared: FBSDKCoreKit.FBSDKAppEventsCAPIManager + @objc override dynamic public init() + @objc final public func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) + @objc final public func enable() + @objc final public func recordEvent(_ parameters: [Swift.String : Any]) + @objc deinit +} +@objc @_inheritsConvenienceInitializers @objcMembers public class FBSDKTransformerGraphRequestFactory : ObjectiveC.NSObject { + @objc public static let shared: FBSDKCoreKit.FBSDKTransformerGraphRequestFactory + public var credentials: FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials? { + get + } + public struct CapiGCredentials { + public let accessKey: Swift.String + public let capiGatewayURL: Swift.String + public let datasetID: Swift.String + } + @objc override dynamic public init() + @objc public func configure(datasetID: Swift.String, url: Swift.String, accessKey: Swift.String) + @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any], userAgent: Swift.String) + @objc deinit +} +final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { + public init() + @objc final public func createKeychainStore(service: Swift.String, accessGroup: Swift.String?) -> FBSDKCoreKit.KeychainStoreProtocol + @objc deinit +} +@objc(FBSDKMACARuleMatching) public protocol MACARuleMatching { + @objc func enable() + @objc func processParameters(_ params: Foundation.NSDictionary?, event: Swift.String?) -> Foundation.NSDictionary? +} +public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { + case publicProfile + case userFriends + case email + case userAboutMe + case userActionsBooks + case userActionsFitness + case userActionsMusic + case userActionsNews + case userActionsVideo + case userBirthday + case userEducationHistory + case userEvents + case userGamesActivity + case userGender + case userHometown + case userLikes + case userLocation + case userManagedGroups + case userPhotos + case userPosts + case userRelationships + case userRelationshipDetails + case userReligionPolitics + case userTaggedPlaces + case userVideos + case userWebsite + case userWorkHistory + case readCustomFriendlists + case readInsights + case readAudienceNetworkInsights + case readPageMailboxes + case pagesShowList + case pagesManageCta + case pagesManageInstantArticles + case adsRead + case userLink + case userAgeRange + case custom(Swift.String) + public init(stringLiteral value: Swift.String) + public var name: Swift.String { + get + } + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: FBSDKCoreKit.Permission, b: FBSDKCoreKit.Permission) -> Swift.Bool + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public var hashValue: Swift.Int { + get + } +} +extension FBSDKCoreKit.Profile { + @objc(FBSDKProfilePictureMode) public enum PictureMode : Swift.UInt { + case square + case normal + case album + case small + case large + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreFoundation.CGSize) -> Foundation.URL? +} +extension FBSDKCoreKit.Profile { + @objc(loadCurrentProfileWithCompletion:) public static func loadCurrentProfile(completion: FBSDKCoreKit.ProfileBlock?) +} +extension FBSDKCoreKit.Profile : FBSDKCoreKit.ProfileProviding { + @objc(currentProfile) public static var current: FBSDKCoreKit.Profile? { + @objc get + @objc set + } + @objc public static func fetchCachedProfile() -> Self? +} +extension FBSDKCoreKit.Profile : Foundation.NSSecureCoding { + @objc public static var supportsSecureCoding: Swift.Bool { + @objc get + } + @objc convenience dynamic public init?(coder decoder: Foundation.NSCoder) + @objc final public func encode(with encoder: Foundation.NSCoder) +} +@objcMembers @objc(FBSDKProfile) final public class Profile : ObjectiveC.NSObject { + @objc final public let userID: FBSDKCoreKit.UserIdentifier + @objc final public let firstName: Swift.String? + @objc final public let middleName: Swift.String? + @objc final public let lastName: Swift.String? + @objc final public let name: Swift.String? + @objc final public let linkURL: Foundation.URL? + @objc final public let refreshDate: Foundation.Date + @objc final public let imageURL: Foundation.URL? + @objc final public let email: Swift.String? + @objc final public let friendIDs: [FBSDKCoreKit.UserIdentifier]? + @objc final public let birthday: Foundation.Date? + @objc final public let ageRange: FBSDKCoreKit.UserAgeRange? + @objc final public let hometown: FBSDKCoreKit.Location? + @objc final public let location: FBSDKCoreKit.Location? + @objc final public let gender: Swift.String? + @objc public static var isUpdatedWithAccessTokenChange: Swift.Bool { + @objc get + @objc set + } + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:) convenience public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String?, middleName: Swift.String?, lastName: Swift.String?, name: Swift.String?, linkURL: Foundation.URL?, refreshDate: Foundation.Date?) + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:) convenience public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String? = nil, middleName: Swift.String? = nil, lastName: Swift.String? = nil, name: Swift.String? = nil, linkURL: Foundation.URL? = nil, refreshDate: Foundation.Date? = Date(), imageURL: Foundation.URL? = nil, email: Swift.String? = nil, friendIDs: [FBSDKCoreKit.UserIdentifier]? = nil, birthday: Foundation.Date? = nil, ageRange: FBSDKCoreKit.UserAgeRange? = nil, hometown: FBSDKCoreKit.Location? = nil, location: FBSDKCoreKit.Location? = nil, gender: Swift.String? = nil) + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:) public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String?, middleName: Swift.String?, lastName: Swift.String?, name: Swift.String?, linkURL: Foundation.URL?, refreshDate: Foundation.Date?, imageURL: Foundation.URL?, email: Swift.String?, friendIDs: [FBSDKCoreKit.UserIdentifier]?, birthday: Foundation.Date?, ageRange: FBSDKCoreKit.UserAgeRange?, hometown: FBSDKCoreKit.Location?, location: FBSDKCoreKit.Location?, gender: Swift.String?, isLimited: Swift.Bool) + @available(*, deprecated, message: "This method is deprecated and will be removed in the next major release. Use `isUpdatedWithAccessTokenChange` instead.") + @objc(enableUpdatesOnAccessTokenChange:) public static func enableUpdatesOnAccessTokenChange(_ enabled: Swift.Bool) + @objc deinit +} +@objc(FBSDKProfileProviding) public protocol ProfileProviding { + @objc(currentProfile) static var current: FBSDKCoreKit.Profile? { get set } + @objc static func fetchCachedProfile() -> FBSDKCoreKit.Profile? +} +public typealias LoginTooltipBlock = (FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> Swift.Void +public enum LoginTooltipError : Swift.Error { + case missingTooltipText + public static func == (a: FBSDKCoreKit.LoginTooltipError, b: FBSDKCoreKit.LoginTooltipError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc @_inheritsConvenienceInitializers final public class ServerConfigurationProvider : ObjectiveC.NSObject { + final public var loggingToken: Swift.String? { + get + } + final public func shouldUseSafariViewController(forDialogName dialogName: Swift.String) -> Swift.Bool + final public func loadServerConfiguration(completion: FBSDKCoreKit.LoginTooltipBlock?) + @objc override dynamic public init() + @objc deinit +} +extension FBSDKCoreKit.Settings { + @objc final public func recordInstall() + @objc final public func logWarnings() + @objc final public func logIfSDKSettingsChanged() +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSettings) final public class Settings : ObjectiveC.NSObject, FBSDKCoreKit.SettingsProtocol, FBSDKCoreKit.SettingsLogging, FBSDKCoreKit._ClientTokenProviding { + @objc(sharedSettings) public static let shared: FBSDKCoreKit.Settings + @objc final public var sdkVersion: Swift.String { + @objc get + } + @objc final public var defaultGraphAPIVersion: Swift.String { + @objc get + } + @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreFoundation.CGFloat { + @objc get + @objc set + } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAutoLogAppEventsEnabled` instead.") + final public var autoLogAppEventsEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isAutoLogAppEventsEnabled: Swift.Bool { + @objc get + @objc set + } + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.") + @objc final public var codelessDebugLogEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isCodelessDebugLogEnabled: Swift.Bool { + @objc get + @objc set + } + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.") + @objc final public var advertiserIDCollectionEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isAdvertiserIDCollectionEnabled: Swift.Bool { + @objc get + @objc set + } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isSKAdNetworkReportEnabled` instead.") + final public var skAdNetworkReportEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isSKAdNetworkReportEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isEventDataUsageLimited: Swift.Bool { + @objc get + @objc set + } + @objc final public var shouldUseCachedValuesForExpensiveMetadata: Swift.Bool { + @objc get + @objc set + } + @objc final public var isGraphErrorRecoveryEnabled: Swift.Bool + @objc final public var appID: Swift.String? { + @objc get + @objc set + } + @objc final public var appURLSchemeSuffix: Swift.String? { + @objc get + @objc set + } + @objc final public var clientToken: Swift.String? { + @objc get + @objc set + } + @objc final public var displayName: Swift.String? { + @objc get + @objc set + } + @objc final public var facebookDomainPart: Swift.String? { + @objc get + @objc set + } + @objc final public var graphAPIVersion: Swift.String { + @objc get + @objc set + } + @objc final public var userAgentSuffix: Swift.String? + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.") + @objc final public var advertiserTrackingEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isAdvertiserTrackingEnabled: Swift.Bool { + @objc get + @objc set(isNewlyAllowed) + } + @objc final public var advertisingTrackingStatus: FBSDKCoreKit.AdvertisingTrackingStatus { + @objc get + @objc set + } + @objc final public var isDataProcessingRestricted: Swift.Bool { + @objc get + } + @objc final public var persistableDataProcessingOptions: [FBSDKCoreKit.DataProcessingOptionKey.RawValue : Any]? { + @objc get + } + @objc final public func setDataProcessingOptions(_ options: [Swift.String]?) + @objc final public func setDataProcessingOptions(_ options: [Swift.String]?, country: Swift.Int32, state: Swift.Int32) + @objc final public var loggingBehaviors: Swift.Set { + @objc get + @objc set + } + @objc final public func enableLoggingBehavior(_ loggingBehavior: FBSDKCoreKit.LoggingBehavior) + @objc final public func disableLoggingBehavior(_ loggingBehavior: FBSDKCoreKit.LoggingBehavior) + @objc final public var shouldUseTokenOptimizations: Swift.Bool { + @objc get + @objc set + } + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.") + @objc final public var isSetATETimeExceedsInstallTime: Swift.Bool { + @objc get + } + @objc final public var isATETimeSufficientlyDelayed: Swift.Bool { + @objc get + } + @objc final public var installTimestamp: Foundation.Date? { + @objc get + } + @objc final public var advertiserTrackingEnabledTimestamp: Foundation.Date? { + @objc get + } + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.") + @objc final public var graphAPIDebugParamValue: Swift.String? { + @objc get + } + @objc final public var graphAPIDebugParameterValue: Swift.String? { + @objc get + } + @objc override dynamic public init() + @objc deinit +} +@objc(FBSDKSettings) public protocol SettingsProtocol { + @objc var appID: Swift.String? { get set } + @objc var clientToken: Swift.String? { get set } + @objc var userAgentSuffix: Swift.String? { get set } + @objc var sdkVersion: Swift.String { get } + @objc var displayName: Swift.String? { get set } + @objc var facebookDomainPart: Swift.String? { get set } + @objc var loggingBehaviors: Swift.Set { get set } + @objc var appURLSchemeSuffix: Swift.String? { get set } + @objc var isDataProcessingRestricted: Swift.Bool { get } + @objc var isAutoLogAppEventsEnabled: Swift.Bool { get } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.") + var codelessDebugLogEnabled: Swift.Bool { get set } + @objc var isCodelessDebugLogEnabled: Swift.Bool { get set } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.") + var advertiserIDCollectionEnabled: Swift.Bool { get set } + @objc var isAdvertiserIDCollectionEnabled: Swift.Bool { get set } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.") + var isSetATETimeExceedsInstallTime: Swift.Bool { get } + @objc var isATETimeSufficientlyDelayed: Swift.Bool { get } + @objc var isSKAdNetworkReportEnabled: Swift.Bool { get } + @objc var advertisingTrackingStatus: FBSDKCoreKit.AdvertisingTrackingStatus { get } + @objc var installTimestamp: Foundation.Date? { get } + @objc var advertiserTrackingEnabledTimestamp: Foundation.Date? { get } + @objc var isEventDataUsageLimited: Swift.Bool { get set } + @objc var shouldUseTokenOptimizations: Swift.Bool { get set } + @objc var graphAPIVersion: Swift.String { get set } + @objc var isGraphErrorRecoveryEnabled: Swift.Bool { get set } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.") + var graphAPIDebugParamValue: Swift.String? { get } + @objc var graphAPIDebugParameterValue: Swift.String? { get } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.") + var advertiserTrackingEnabled: Swift.Bool { get set } + @objc var isAdvertiserTrackingEnabled: Swift.Bool { get set } + @objc var shouldUseCachedValuesForExpensiveMetadata: Swift.Bool { get set } + @objc var persistableDataProcessingOptions: [FBSDKCoreKit.DataProcessingOptionKey.RawValue : Any]? { get } + @objc func setDataProcessingOptions(_ options: [Swift.String]?) + @objc func setDataProcessingOptions(_ options: [Swift.String]?, country: Swift.Int32, state: Swift.Int32) +} +public enum DialogConfigurationName { + public static let message: Swift.String + public static let share: Swift.String +} +public struct ShareDialogConfiguration { + public init() + public var defaultShareMode: Swift.String? { + get + } + public func shouldUseNativeDialog(forDialogName dialogName: Swift.String) -> Swift.Bool + public func shouldUseSafariViewController(forDialogName dialogName: Swift.String) -> Swift.Bool +} +@objc(FBSDKAEMReporter) public protocol _AEMReporterProtocol { + @objc static func enable() + @objc(recordAndUpdateEvent:currency:value:parameters:) static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) + @objc static func setConversionFilteringEnabled(_ isEnabled: Swift.Bool) + @objc static func setCatalogMatchingEnabled(_ isEnabled: Swift.Bool) + @objc static func setAdvertiserRuleMatchInServerEnabled(_ isEnabled: Swift.Bool) + @objc static func handle(_ url: Foundation.URL?) +} +extension FBAEMKit.AEMReporter : FBSDKCoreKit._AEMReporterProtocol { +} +@objcMembers @objc(_FBSDKAccessTokenExpirer) final public class _AccessTokenExpirer : ObjectiveC.NSObject, FBSDKCoreKit._AccessTokenExpiring { + @objc public init(notificationCenter: FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering) + @objc deinit +} +@objc(_FBSDKAccessTokenExpiring) public protocol _AccessTokenExpiring { +} +@objc @_hasMissingDesignatedInitializers final public class _BridgeAPI : ObjectiveC.NSObject, FBSDKCoreKit.FBSDKApplicationObserving, FBSDKCoreKit.URLOpener, FBSDKCoreKit.BridgeAPIRequestOpening, FBSDKCoreKit._ContainerViewControllerDelegate, SafariServices.SFSafariViewControllerDelegate { + public static let shared: FBSDKCoreKit._BridgeAPI + @objc final public func viewControllerDidDisappear(_ viewController: FBSDKCoreKit._ContainerViewController, animated: Swift.Bool) + @objc deinit +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func applicationWillResignActive(_ application: UIKit.UIApplication?) + @objc final public func applicationDidBecomeActive(_ application: UIKit.UIApplication?) + @objc final public func applicationDidEnterBackground(_ application: UIKit.UIApplication?) + @objc final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func application(_ application: UIKit.UIApplication, didFinishLaunchingWithOptions launchOptions: [UIKit.UIApplication.LaunchOptionsKey : Any]? = nil) -> Swift.Bool +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func open(_ url: Foundation.URL, sender: FBSDKCoreKit.URLOpening?, handler: @escaping FBSDKCoreKit.SuccessBlock) + @objc final public func open(_ request: FBSDKCoreKit.BridgeAPIRequestProtocol, useSafariViewController: Swift.Bool, from fromViewController: UIKit.UIViewController?, completionBlock: @escaping FBSDKCoreKit.BridgeAPIResponseBlock) + @objc final public func openURLWithSafariViewController(url: Foundation.URL, sender: FBSDKCoreKit.URLOpening?, from fromViewController: UIKit.UIViewController?, handler: @escaping FBSDKCoreKit.SuccessBlock) +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func safariViewControllerDidFinish(_ safariViewController: SafariServices.SFSafariViewController) +} +@available(iOS 13, *) +extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPresentationContextProviding { + @objc final public func presentationAnchor(for session: AuthenticationServices.ASWebAuthenticationSession) -> AuthenticationServices.ASPresentationAnchor +} +@objcMembers @objc(FBSDKBridgeAPIProtocolNativeV1) final public class _BridgeAPIProtocolNativeV1 : ObjectiveC.NSObject, FBSDKCoreKit.BridgeAPIProtocol { + @objc(initWithAppScheme:) convenience public init(appScheme: Swift.String?) + @objc(initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:) public init(appScheme: Swift.String?, pasteboard: FBSDKCoreKit._Pasteboard?, dataLengthThreshold: Swift.UInt, shouldIncludeAppIcon: Swift.Bool) + @objc deinit + @objc final public func requestURL(actionID: Swift.String, scheme: Swift.String, methodName: Swift.String, parameters: [Swift.String : Any]) throws -> Foundation.URL + @objc final public func responseParameters(actionID: Swift.String, queryParameters: [Swift.String : Any], cancelled cancelledRef: Swift.UnsafeMutablePointer?) throws -> [Swift.String : Any] +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKBridgeAPIRequestFactory) final public class _BridgeAPIRequestFactory : ObjectiveC.NSObject, FBSDKCoreKit.BridgeAPIRequestCreating { + @objc final public func bridgeAPIRequest(with protocolType: FBSDKCoreKit.FBSDKBridgeAPIProtocolType, scheme: Swift.String, methodName: Swift.String?, parameters: [Swift.String : Any]?, userInfo: [Swift.String : Any]? = nil) -> FBSDKCoreKit.BridgeAPIRequestProtocol? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKDialogConfigurationMapBuilder) final public class _DialogConfigurationMapBuilder : ObjectiveC.NSObject, FBSDKCoreKit._DialogConfigurationMapBuilding { + @objc final public func buildDialogConfigurationMap(from rawConfigurations: [[Swift.String : Any]]) -> [Swift.String : FBSDKCoreKit._DialogConfiguration] + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objc(FBSDKErrorFactory) final public class _ErrorFactory : ObjectiveC.NSObject, FBSDKCoreKit.ErrorCreating { + @objc(errorWithCode:userInfo:message:underlyingError:) final public func error(code: Swift.Int, userInfo: [Swift.String : Any]? = nil, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(errorWithDomain:code:userInfo:message:underlyingError:) final public func error(domain: Swift.String, code: Swift.Int, userInfo: [Swift.String : Any]? = nil, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(invalidArgumentErrorWithName:value:message:underlyingError:) final public func invalidArgumentError(name: Swift.String, value: Any?, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(invalidArgumentErrorWithDomain:name:value:message:underlyingError:) final public func invalidArgumentError(domain: Swift.String, name: Swift.String, value: Any?, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(requiredArgumentErrorWithName:message:underlyingError:) final public func requiredArgumentError(name: Swift.String, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(requiredArgumentErrorWithDomain:name:message:underlyingError:) final public func requiredArgumentError(domain: Swift.String, name: Swift.String, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(unknownErrorWithMessage:userInfo:) final public func unknownError(message: Swift.String?, userInfo: [Swift.String : Any]? = nil) -> Swift.Error + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCloseIcon) final public class _FBCloseIcon : ObjectiveC.NSObject { + @objc final public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLogo) final public class _FBLogo : FBSDKCoreKit.FBIcon { + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKFeatureManager) final public class _FeatureManager : ObjectiveC.NSObject, FBSDKCoreKit.FeatureChecking, FBSDKCoreKit._FeatureDisabling { + @objc public static let shared: FBSDKCoreKit._FeatureManager + @objc final public func isEnabled(_ feature: FBSDKCoreKit.SDKFeature) -> Swift.Bool + @objc final public func check(_ feature: FBSDKCoreKit.SDKFeature, completionBlock: @escaping FBSDKCoreKit.FBSDKFeatureManagerBlock) + @objc final public func disableFeature(_ feature: FBSDKCoreKit.SDKFeature) + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKHumanSilhouetteIcon) final public class _HumanSilhouetteIcon : FBSDKCoreKit.FBIcon { + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKMeasurementEvent) final public class _MeasurementEvent : ObjectiveC.NSObject, FBSDKCoreKit._AppLinkEventPosting { + @objc(postNotificationForEventName:args:) final public func postNotification(eventName: Swift.String, arguments: [Swift.String : Any]) + @objc override dynamic public init() + @objc deinit +} +@objc(FBSDKPaymentObserver) final public class _PaymentObserver : ObjectiveC.NSObject, FBSDKCoreKit._PaymentObserving { + @objc(initWithPaymentQueue:paymentProductRequestorFactory:) public init(paymentQueue: StoreKit.SKPaymentQueue, paymentProductRequestorFactory: FBSDKCoreKit._PaymentProductRequestorCreating) + @objc(startObservingTransactions) final public func startObservingTransactions() + @objc(stopObservingTransactions) final public func stopObservingTransactions() + @objc deinit +} +extension FBSDKCoreKit._PaymentObserver : StoreKit.SKPaymentTransactionObserver { + @objc final public func paymentQueue(_ queue: StoreKit.SKPaymentQueue, updatedTransactions transactions: [StoreKit.SKPaymentTransaction]) +} +@_inheritsConvenienceInitializers @objc(FBSDKPaymentProductRequestorFactory) final public class _PaymentProductRequestorFactory : ObjectiveC.NSObject, FBSDKCoreKit._PaymentProductRequestorCreating { + @objc final public func createRequestor(transaction: StoreKit.SKPaymentTransaction) -> FBSDKCoreKit.PaymentProductRequestor + @objc override dynamic public init() + @objc deinit +} +@objcMembers @objc(FBSDKRestrictiveEventFilter) final public class _RestrictiveEventFilter : ObjectiveC.NSObject { + @objc final public let eventName: Swift.String + @objc final public let restrictiveParameters: [Swift.String : Any] + @objc(initWithEventName:restrictiveParameters:) public init(eventName: Swift.String, restrictiveParameters: [Swift.String : Any]) + @objc deinit +} +@objcMembers @objc(FBSDKSKAdNetworkEvent) final public class _SKAdNetworkEvent : ObjectiveC.NSObject { + @objc final public let eventName: Swift.String? + @objc final public var values: [Swift.String : Swift.Double]? + @objc(initWithJSON:) public init?(json: [Swift.String : Any]) + @objc deinit +} +@objcMembers @objc(FBSDKViewImpressionLogger) final public class _ViewImpressionLogger : ObjectiveC.NSObject, FBSDKCoreKit.ImpressionLogging { + @objc(initWithEventName:) public init(eventName: FBSDKCoreKit.AppEvents.Name) + @objc public static func retrieveLogger(with eventName: FBSDKCoreKit.AppEvents.Name) -> FBSDKCoreKit._ViewImpressionLogger + @objc final public func logImpression(withIdentifier identifier: Swift.String, parameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]?) + @objc deinit +} +@objcMembers @objc(FBSDKWebDialog) final public class _WebDialog : ObjectiveC.NSObject { + @objc final public var shouldDeferVisibility: Swift.Bool + @objc weak final public var delegate: FBSDKCoreKit.WebDialogDelegate? + @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreFoundation.CGRect = .zero, path: Swift.String? = nil) + @objc convenience public init(name: Swift.String) + @objc final public func show() + @objc deinit +} +extension FBSDKCoreKit._WebDialog : FBSDKCoreKit.WebDialogViewDelegate { + @objc final public func webDialogView(_ webDialogView: FBSDKCoreKit.FBWebDialogView, didCompleteWithResults results: [Swift.String : Any]) + @objc final public func webDialogView(_ webDialogView: FBSDKCoreKit.FBWebDialogView, didFailWithError error: Swift.Error) + @objc final public func webDialogViewDidCancel(_ webDialogView: FBSDKCoreKit.FBWebDialogView) + @objc final public func webDialogViewDidFinishLoad(_ webDialogView: FBSDKCoreKit.FBWebDialogView) +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKWebViewFactory) final public class _WebViewFactory : ObjectiveC.NSObject, FBSDKCoreKit._WebViewProviding { + @objc final public func createWebView(frame: CoreFoundation.CGRect) -> FBSDKCoreKit.WebView + @objc override dynamic public init() + @objc deinit +} +extension FBSDKCoreKit.Profile.PictureMode : Swift.Equatable {} +extension FBSDKCoreKit.Profile.PictureMode : Swift.Hashable {} +extension FBSDKCoreKit.Profile.PictureMode : Swift.RawRepresentable {} +extension FBSDKCoreKit.LoginTooltipError : Swift.Equatable {} +extension FBSDKCoreKit.LoginTooltipError : Swift.Hashable {} diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc similarity index 97% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc index c79091f4..afedcc7f 100644 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface similarity index 95% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface index 6795fb71..18b26a58 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import AdSupport import AuthenticationServices import FBAEMKit @@ -12,6 +13,7 @@ import StoreKit import Swift import UIKit import _Concurrency +import _StringProcessing extension FBSDKCoreKit.AccessToken { public var permissions: Swift.Set { get @@ -133,22 +135,20 @@ extension FBSDKCoreKit.AccessToken { @objc func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) @objc func recordEvent(_ parameters: [Swift.String : Any]) } -@_inheritsConvenienceInitializers @available(tvOS, unavailable) -@objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { +@_inheritsConvenienceInitializers @objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { @objc public static let shared: FBSDKCoreKit._InternalURLOpener @objc override dynamic public init() @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKIcon) open class FBIcon : ObjectiveC.NSObject { - @objc open func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? - @objc public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, scale: CoreGraphics.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? + @objc open func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, scale: CoreFoundation.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? @objc override dynamic public init() @objc deinit } -@_inheritsConvenienceInitializers @available(tvOS, unavailable) -@objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { @objc @_Concurrency.MainActor(unsafe) final public var pictureMode: FBSDKCoreKit.Profile.PictureMode { @objc get @objc set @@ -157,22 +157,23 @@ extension FBSDKCoreKit.AccessToken { @objc get @objc set } - @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreGraphics.CGRect { - @_Concurrency.MainActor(unsafe) @objc get - @_Concurrency.MainActor(unsafe) @objc set + @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreFoundation.CGRect { + @objc get + @objc set } @_Concurrency.MainActor(unsafe) @objc override final public var contentMode: UIKit.UIView.ContentMode { - @_Concurrency.MainActor(unsafe) @objc get - @_Concurrency.MainActor(unsafe) @objc set + @objc get + @objc set } - @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreGraphics.CGRect, profile: FBSDKCoreKit.Profile? = nil) + @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, profile: FBSDKCoreKit.Profile? = nil) @objc(initWithProfile:) @_Concurrency.MainActor(unsafe) convenience public init(profile: FBSDKCoreKit.Profile? = nil) - @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreGraphics.CGRect) + @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreFoundation.CGRect) @objc(initWithCoder:) @_Concurrency.MainActor(unsafe) required dynamic public init?(coder: Foundation.NSCoder) @objc @_Concurrency.MainActor(unsafe) final public func setNeedsImageUpdate() @objc deinit } public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager +public typealias CAPIGBlock = (Swift.Bool) -> Swift.Void @objc @_inheritsConvenienceInitializers @objcMembers final public class FBSDKAppEventsCAPIManager : ObjectiveC.NSObject, FBSDKCoreKit.CAPIReporter { @objc public static let shared: FBSDKCoreKit.FBSDKAppEventsCAPIManager @objc override dynamic public init() @@ -193,7 +194,7 @@ public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager } @objc override dynamic public init() @objc public func configure(datasetID: Swift.String, url: Swift.String, accessKey: Swift.String) - @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any]) + @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any], userAgent: Swift.String) @objc deinit } final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @@ -201,6 +202,10 @@ final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @objc final public func createKeychainStore(service: Swift.String, accessGroup: Swift.String?) -> FBSDKCoreKit.KeychainStoreProtocol @objc deinit } +@objc(FBSDKMACARuleMatching) public protocol MACARuleMatching { + @objc func enable() + @objc func processParameters(_ params: Foundation.NSDictionary?, event: Swift.String?) -> Foundation.NSDictionary? +} public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { case publicProfile case userFriends @@ -266,7 +271,7 @@ extension FBSDKCoreKit.Profile { get } } - @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreGraphics.CGSize) -> Foundation.URL? + @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreFoundation.CGSize) -> Foundation.URL? } extension FBSDKCoreKit.Profile { @objc(loadCurrentProfileWithCompletion:) public static func loadCurrentProfile(completion: FBSDKCoreKit.ProfileBlock?) @@ -347,7 +352,7 @@ extension FBSDKCoreKit.Settings { @objc final public var defaultGraphAPIVersion: Swift.String { @objc get } - @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreGraphics.CGFloat { + @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreFoundation.CGFloat { @objc get @objc set } @@ -518,7 +523,6 @@ public enum DialogConfigurationName { public static let message: Swift.String public static let share: Swift.String } -@available(tvOS, unavailable) public struct ShareDialogConfiguration { public init() public var defaultShareMode: Swift.String? { @@ -533,6 +537,7 @@ public struct ShareDialogConfiguration { @objc static func setConversionFilteringEnabled(_ isEnabled: Swift.Bool) @objc static func setCatalogMatchingEnabled(_ isEnabled: Swift.Bool) @objc static func setAdvertiserRuleMatchInServerEnabled(_ isEnabled: Swift.Bool) + @objc static func handle(_ url: Foundation.URL?) } extension FBAEMKit.AEMReporter : FBSDKCoreKit._AEMReporterProtocol { } @@ -595,12 +600,12 @@ extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPr @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCloseIcon) final public class _FBCloseIcon : ObjectiveC.NSObject { - @objc final public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? + @objc final public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? @objc override dynamic public init() @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLogo) final public class _FBLogo : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? @objc override dynamic public init() @objc deinit } @@ -613,7 +618,7 @@ extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPr @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKHumanSilhouetteIcon) final public class _HumanSilhouetteIcon : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? @objc override dynamic public init() @objc deinit } @@ -657,7 +662,7 @@ extension FBSDKCoreKit._PaymentObserver : StoreKit.SKPaymentTransactionObserver @objcMembers @objc(FBSDKWebDialog) final public class _WebDialog : ObjectiveC.NSObject { @objc final public var shouldDeferVisibility: Swift.Bool @objc weak final public var delegate: FBSDKCoreKit.WebDialogDelegate? - @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreGraphics.CGRect = .zero, path: Swift.String? = nil) + @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreFoundation.CGRect = .zero, path: Swift.String? = nil) @objc convenience public init(name: Swift.String) @objc final public func show() @objc deinit @@ -669,7 +674,7 @@ extension FBSDKCoreKit._WebDialog : FBSDKCoreKit.WebDialogViewDelegate { @objc final public func webDialogViewDidFinishLoad(_ webDialogView: FBSDKCoreKit.FBWebDialogView) } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKWebViewFactory) final public class _WebViewFactory : ObjectiveC.NSObject, FBSDKCoreKit._WebViewProviding { - @objc final public func createWebView(frame: CoreGraphics.CGRect) -> FBSDKCoreKit.WebView + @objc final public func createWebView(frame: CoreFoundation.CGRect) -> FBSDKCoreKit.WebView @objc override dynamic public init() @objc deinit } diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/module.modulemap b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/module.modulemap similarity index 73% rename from ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/module.modulemap rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/module.modulemap index f951cee0..0680aff1 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/module.modulemap +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Modules/module.modulemap @@ -6,6 +6,6 @@ framework module FBSDKCoreKit { } module FBSDKCoreKit.Swift { - header "FBSDKCoreKit-Swift.h" - requires objc + header "FBSDKCoreKit-Swift.h" + requires objc } diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Resources b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Resources deleted file mode 120000 index 953ee36f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Resources/Info.plist b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Resources/Info.plist similarity index 85% rename from ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Resources/Info.plist rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Resources/Info.plist index 79a84e9c..1706632b 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Resources/Info.plist +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Resources/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 21G115 + 22F82 CFBundleDevelopmentRegion en CFBundleExecutable @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 15.1.0 + 16.1.3 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 13F100 + 14C18 DTPlatformName macosx DTPlatformVersion - 12.3 + 13.1 DTSDKBuild - 21E226 + 22C55 DTSDKName - macosx12.3 + macosx13.1 DTXcode - 1341 + 1420 DTXcodeBuild - 13F100 + 14C18 LSMinimumSystemVersion 10.15 UIDeviceFamily diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/FBSDKCoreKit b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/FBSDKCoreKit deleted file mode 100755 index bdfe94ce..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/FBSDKCoreKit and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsConfiguring.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsConfiguring.h deleted file mode 100644 index 7ecffa81..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsConfiguring.h +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKAEMReporter; -@protocol FBSDKGateKeeperManaging; -@protocol FBSDKAppEventsConfigurationProviding; -@protocol FBSDKSourceApplicationTracking; -@protocol FBSDKServerConfigurationProviding; -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKFeatureChecking; -@protocol FBSDKDataPersisting; -@protocol FBSDKInternalUtility; -@protocol FBSDKLogging; -@protocol FBSDKSettings; -@protocol FBSDKPaymentObserving; -@protocol FBSDKTimeSpentRecording; -@protocol FBSDKAppEventsStatePersisting; -@protocol FBSDKAppEventsParameterProcessing; -@protocol FBSDKAppEventsParameterProcessing; -@protocol FBSDKATEPublisherCreating; -@protocol FBSDKAppEventsStateProviding; -@protocol FBSDKAdvertiserIDProviding; -@protocol FBSDKUserDataPersisting; -@protocol FBSDKLoggingNotifying; -@protocol FBSDKAppEventsUtility; -@protocol FBSDKAppEventDropDetermining; -@protocol FBSDKCAPIReporter; -@protocol FBSDKAppEventParametersExtracting; - -#if !TARGET_OS_TV -@protocol FBSDKEventProcessing; -@protocol FBSDKMetadataIndexing; -@protocol FBSDKAppEventsReporter; -@protocol FBSDKCodelessIndexing; -@protocol FBSDKSwizzling; -#endif - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsConfiguring) -@protocol FBSDKAppEventsConfiguring - -- (void) configureWithGateKeeperManager:(Class)gateKeeperManager - appEventsConfigurationProvider:(id)appEventsConfigurationProvider - serverConfigurationProvider:(id)serverConfigurationProvider - graphRequestFactory:(id)graphRequestFactory - featureChecker:(id)featureChecker - primaryDataStore:(id)primaryDataStore - logger:(Class)logger - settings:(id)settings - paymentObserver:(id)paymentObserver - timeSpentRecorder:(id)timeSpentRecorder - appEventsStateStore:(id)appEventsStateStore - eventDeactivationParameterProcessor:(id)eventDeactivationParameterProcessor - restrictiveDataFilterParameterProcessor:(id)restrictiveDataFilterParameterProcessor - atePublisherFactory:(id)atePublisherFactory - appEventsStateProvider:(id)appEventsStateProvider - advertiserIDProvider:(id)advertiserIDProvider - userDataStore:(id)userDataStore - appEventsUtility:(id)appEventsUtility - internalUtility:(id)internalUtility - capiReporter:(id)capiReporter -NS_SWIFT_NAME(configure(gateKeeperManager:appEventsConfigurationProvider:serverConfigurationProvider:graphRequestFactory:featureChecker:primaryDataStore:logger:settings:paymentObserver:timeSpentRecorder:appEventsStateStore:eventDeactivationParameterProcessor:restrictiveDataFilterParameterProcessor:atePublisherFactory:appEventsStateProvider:advertiserIDProvider:userDataStore:appEventsUtility:internalUtility:capiReporter:)); - -#if !TARGET_OS_TV - -// UNCRUSTIFY_FORMAT_OFF -- (void)configureNonTVComponentsWithOnDeviceMLModelManager:(id)modelManager - metadataIndexer:(id)metadataIndexer - skAdNetworkReporter:(nullable id)skAdNetworkReporter - codelessIndexer:(Class)codelessIndexer - swizzler:(Class)swizzler - aemReporter:(Class)aemReporter -NS_SWIFT_NAME(configureNonTVComponents(onDeviceMLModelManager:metadataIndexer:skAdNetworkReporter:codelessIndexer:swizzler:aemReporter:)); -// UNCRUSTIFY_FORMAT_ON - -#endif - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsDeviceInfo.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsDeviceInfo.h deleted file mode 100644 index 3ba4f7b8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsDeviceInfo.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsDeviceInfo) -@interface FBSDKAppEventsDeviceInfo : NSObject - -@property (class, nonnull, nonatomic, readonly) FBSDKAppEventsDeviceInfo *shared; - -@property (nullable, nonatomic, readonly) id settings; - -#if !DEBUG -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; -#endif - -- (void)configureWithSettings:(id)settings -NS_SWIFT_NAME(configure(settings:)); - -#if DEBUG -- (void)resetDependencies; -#endif - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsParameterProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsParameterProcessing.h deleted file mode 100644 index 8dad6f89..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsParameterProcessing.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsParameterProcessing) -@protocol FBSDKAppEventsParameterProcessing - -- (void)enable; -- (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters - eventName:(FBSDKAppEventName)eventName; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsUtilityProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsUtilityProtocol.h deleted file mode 100644 index 7997c1d6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKAppEventsUtilityProtocol.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsUtilityProtocol) -@protocol FBSDKAppEventsUtility - -@property (nonatomic, readonly) NSTimeInterval unixTimeNow; - -- (void)ensureOnMainThread:(NSString *)methodName className:(NSString *)className; -- (NSTimeInterval)convertToUnixTime:(nullable NSDate *)date; -- (BOOL)validateIdentifier:(nullable NSString *)identifier; -- (nullable NSString *)tokenStringToUseFor:(nullable FBSDKAccessToken *)token - loggingOverrideAppID:(nullable NSString *)loggingOverrideAppID; -- (NSString *)flushReasonToString:(FBSDKAppEventsFlushReason)flushReason; -- (void)saveCampaignIDs:(NSURL *)url; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCoreKit.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCoreKit.h deleted file mode 100644 index 23c96145..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKCoreKit.h +++ /dev/null @@ -1,208 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDeviceDialogView.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDeviceDialogView.h deleted file mode 100644 index e290e584..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDeviceDialogView.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeviceDialogViewDelegate) -@protocol FBSDKDeviceDialogViewDelegate; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -NS_SWIFT_NAME(FBDeviceDialogView) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@interface FBSDKDeviceDialogView : UIView - -@property (nonatomic, weak) id delegate; -@property (nonatomic, copy) NSString *confirmationCode; - -// override point for subclasses. -- (void)buildView; - -@end - -NS_SWIFT_NAME(DeviceDialogViewDelegate) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@protocol FBSDKDeviceDialogViewDelegate - -- (void)deviceDialogViewDidCancel:(FBSDKDeviceDialogView *)deviceDialogView; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDeviceInformationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDeviceInformationProviding.h deleted file mode 100644 index ec650cfa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDeviceInformationProviding.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_DeviceInformationProviding) -@protocol FBSDKDeviceInformationProviding - -@property (nonatomic, readonly) NSString *storageKey; -@property (nullable, nonatomic, readonly) NSString *encodedDeviceInfo; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDeviceViewControllerBase.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDeviceViewControllerBase.h deleted file mode 100644 index 9a08f5af..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKDeviceViewControllerBase.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if TARGET_OS_TV - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/* - An internal base class for device related flows. - - This is an internal API that should not be used directly and is subject to change. - */ -NS_SWIFT_NAME(FBDeviceViewControllerBase) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@interface FBSDKDeviceViewControllerBase : UIViewController -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKFeature.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKFeature.h deleted file mode 100644 index 3eabc556..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKFeature.h +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - FBSDKFeature enum - Defines features in SDK - - Sample: - FBSDKFeatureAppEvents = 0x00010000, - ^ ^ ^ ^ - | | | | - kit | | | - feature | | - sub-feature | - sub-sub-feature - 1st byte: kit - 2nd byte: feature - 3rd byte: sub-feature - 4th byte: sub-sub-feature - - @warning INTERNAL - DO NOT USE - */ -typedef NS_ENUM(NSUInteger, FBSDKFeature) { - FBSDKFeatureNone = 0x00000000, - // Features in CoreKit - /// Essential of CoreKit - FBSDKFeatureCore = 0x01000000, - /// App Events - FBSDKFeatureAppEvents = 0x01010000, - FBSDKFeatureCodelessEvents = 0x01010100, - FBSDKFeatureRestrictiveDataFiltering = 0x01010200, - FBSDKFeatureAAM = 0x01010300, - FBSDKFeaturePrivacyProtection = 0x01010400, - FBSDKFeatureSuggestedEvents = 0x01010401, - FBSDKFeatureIntelligentIntegrity = 0x01010402, - FBSDKFeatureModelRequest = 0x01010403, - FBSDKFeatureEventDeactivation = 0x01010500, - FBSDKFeatureSKAdNetwork = 0x01010600, - FBSDKFeatureSKAdNetworkConversionValue = 0x01010601, - FBSDKFeatureATELogging = 0x01010700, - FBSDKFeatureAEM = 0x01010800, - FBSDKFeatureAEMConversionFiltering = 0x01010801, - FBSDKFeatureAEMCatalogMatching = 0x01010802, - FBSDKFeatureAEMAdvertiserRuleMatchInServer = 0x01010803, - FBSDKFeatureAppEventsCloudbridge = 0x01010900, - /// Instrument - FBSDKFeatureInstrument = 0x01020000, - FBSDKFeatureCrashReport = 0x01020100, - FBSDKFeatureCrashShield = 0x01020101, - FBSDKFeatureErrorReport = 0x01020200, - - // Features in LoginKit - /// Essential of LoginKit - FBSDKFeatureLogin = 0x02000000, - - // Features in ShareKit - /// Essential of ShareKit - FBSDKFeatureShare = 0x03000000, - - // Features in GamingServicesKit - /// Essential of GamingServicesKit - FBSDKFeatureGamingServices = 0x04000000, -} NS_SWIFT_NAME(SDKFeature); - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef void (^FBSDKFeatureManagerBlock)(BOOL enabled); - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKServerConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKServerConfiguration.h deleted file mode 100644 index 41d52df5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Headers/FBSDKServerConfiguration.h +++ /dev/null @@ -1,143 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -// MARK: LoginKit - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameLogin; - -// MARK: ShareKit - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameAppInvite; - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameGameRequest; - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameGroup; - -// MARK: - - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT const NSInteger FBSDKServerConfigurationVersion; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef NS_OPTIONS(NSUInteger, FBSDKServerConfigurationSmartLoginOptions) { - FBSDKServerConfigurationSmartLoginOptionsUnknown = 0, - FBSDKServerConfigurationSmartLoginOptionsEnabled = 1 << 0, - FBSDKServerConfigurationSmartLoginOptionsRequireConfirmation = 1 << 1, -}; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ServerConfiguration) -@interface FBSDKServerConfiguration : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype) initWithAppID:(NSString *)appID - appName:(nullable NSString *)appName - loginTooltipEnabled:(BOOL)loginTooltipEnabled - loginTooltipText:(nullable NSString *)loginTooltipText - defaultShareMode:(nullable NSString *)defaultShareMode - advertisingIDEnabled:(BOOL)advertisingIDEnabled - implicitLoggingEnabled:(BOOL)implicitLoggingEnabled - implicitPurchaseLoggingEnabled:(BOOL)implicitPurchaseLoggingEnabled - codelessEventsEnabled:(BOOL)codelessEventsEnabled - uninstallTrackingEnabled:(BOOL)uninstallTrackingEnabled - dialogConfigurations:(nullable NSDictionary *)dialogConfigurations - dialogFlows:(nullable NSDictionary *)dialogFlows - timestamp:(nullable NSDate *)timestamp - errorConfiguration:(nullable FBSDKErrorConfiguration *)errorConfiguration - sessionTimeoutInterval:(NSTimeInterval)sessionTimeoutInterval - defaults:(BOOL)defaults - loggingToken:(nullable NSString *)loggingToken - smartLoginOptions:(FBSDKServerConfigurationSmartLoginOptions)smartLoginOptions - smartLoginBookmarkIconURL:(nullable NSURL *)smartLoginBookmarkIconURL - smartLoginMenuIconURL:(nullable NSURL *)smartLoginMenuIconURL - updateMessage:(nullable NSString *)updateMessage - eventBindings:(nullable NSArray *> *)eventBindings - restrictiveParams:(nullable NSDictionary *)restrictiveParams - AAMRules:(nullable NSDictionary *)AAMRules - suggestedEventsSetting:(nullable NSDictionary *)suggestedEventsSetting - NS_DESIGNATED_INITIALIZER; - -@property (nonatomic, readonly, getter = isAdvertisingIDEnabled, assign) BOOL advertisingIDEnabled; -@property (nonatomic, readonly, copy) NSString *appID; -@property (nullable, nonatomic, readonly, copy) NSString *appName; -@property (nonatomic, readonly, getter = isDefaults, assign) BOOL defaults; -@property (nullable, nonatomic, readonly, copy) NSString *defaultShareMode; -@property (nullable, nonatomic, readonly, strong) FBSDKErrorConfiguration *errorConfiguration; -@property (nonatomic, readonly, getter = isImplicitLoggingSupported, assign) BOOL implicitLoggingEnabled; -@property (nonatomic, readonly, getter = isImplicitPurchaseLoggingSupported, assign) BOOL implicitPurchaseLoggingEnabled; -@property (nonatomic, readonly, getter = isCodelessEventsEnabled, assign) BOOL codelessEventsEnabled; -@property (nonatomic, readonly, getter = isLoginTooltipEnabled, assign) BOOL loginTooltipEnabled; -@property (nonatomic, readonly, getter = isUninstallTrackingEnabled, assign) BOOL uninstallTrackingEnabled; -@property (nullable, nonatomic, readonly, copy) NSString *loginTooltipText; -@property (nullable, nonatomic, readonly, copy) NSDate *timestamp; -@property (nonatomic, assign) NSTimeInterval sessionTimeoutInterval; -@property (nullable, nonatomic, readonly, copy) NSString *loggingToken; -@property (nonatomic, readonly, assign) FBSDKServerConfigurationSmartLoginOptions smartLoginOptions; -@property (nullable, nonatomic, readonly, copy) NSURL *smartLoginBookmarkIconURL; -@property (nullable, nonatomic, readonly, copy) NSURL *smartLoginMenuIconURL; -@property (nullable, nonatomic, readonly, copy) NSString *updateMessage; -@property (nullable, nonatomic, readonly, copy) NSArray *> *eventBindings; -@property (nullable, nonatomic, readonly, copy) NSDictionary *restrictiveParams; -@property (nullable, nonatomic, readonly, copy) NSDictionary *AAMRules; -@property (nullable, nonatomic, readonly, copy) NSDictionary *suggestedEventsSetting; -@property (nonatomic, readonly) NSInteger version; - -- (nullable FBSDKDialogConfiguration *)dialogConfigurationForDialogName:(NSString *)dialogName; -- (BOOL)useNativeDialogForDialogName:(NSString *)dialogName; -- (BOOL)useSafariViewControllerForDialogName:(NSString *)dialogName; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/module.modulemap b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/module.modulemap deleted file mode 100644 index f951cee0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/A/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module FBSDKCoreKit { - umbrella header "FBSDKCoreKit.h" - - export * - module * { export * } -} - -module FBSDKCoreKit.Swift { - header "FBSDKCoreKit-Swift.h" - requires objc -} diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/Current b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/Current deleted file mode 120000 index 8c7e5a66..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index e9fd3068..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKCoreKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit deleted file mode 100644 index 38da0acc..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FBSDKCoreKit b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FBSDKCoreKit old mode 100755 new mode 100644 index 200556bc..f9f4ca73 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FBSDKCoreKit and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FBSDKCoreKit differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings deleted file mode 100644 index 84881da5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besoek %@ en voer die kode in wat hierbo vertoon word."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Om jou rekening te verbind, maak die Facebook-toepassing op jou mobiele toestel oop en kontroleer vir kennisgewings."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OF -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Goed"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Kanselleer"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Meld asseblief weer by hierdie toepassing aan om jou Facebook-rekening te herkoppel. "; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Goed"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Die bediener is tydelik besig, probeer asseblief weer."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Kanselleer"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Meld af"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Met Facebook aangemeld"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "As %@ aangemeld"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Meld aan"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Gaan voort met Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Meld met Facebook aan"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Meld af"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Toegang is nie na die Facebook-rekening verleen nie. Verifieer toestelinstellings."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kan nie aan Facebook koppel nie. Gaan jou netwerkverbinding na en probeer weer."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Jou Facebook-wagwoord het verander. Om jou wagwoord te bevestig, maak Instellings > Facebook oop en tik jou naam."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Die Facebook-rekening is nie op die toestel opgestel nie."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Jou rekening is nie bevestig nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Jy kan nie op die oomblik by toepassings aanmeld nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Jy is in beheer – kies watter inligting jy met toepassings wil deel."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Meld aan"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Stuur"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Deel"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nie jy nie?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bevestig aantekening"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Gaan voort as %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings deleted file mode 100644 index f67e1352..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "تفضل بزيارة %@ وإدخال الرمز الموضح أدناه."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "لربط حسابك، افتح تطبيق فيسبوك على جهازك المحمول ثم تفقد الإشعارات."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- أو -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "موافق"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "إلغاء"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "يرجى تسجيل الدخول إلى هذا التطبيق مرة أخرى لإعادة الاتصال بحساب فيسبوك."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "موافق"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "الخادم مشغول مؤقتًا، يرجى إعادة المحاولة."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "إلغاء"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "تسجيل الخروج"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "تم تسجيل الدخول بحساب فيسبوك"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "تم تسجيل الدخول باسم %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "تسجيل الدخول"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "متابعة بحساب فيسبوك"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "تسجيل الدخول بحساب فيسبوك"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "تسجيل الخروج"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "لم يتم منح إذن الوصول لحساب فيسبوك. تحقق من إعدادات الجهاز."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "تعذر الاتصال بفيسبوك. يُرجى التحقق من الاتصال بالإنترنت وإعادة المحاولة."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "تم تغيير كلمة سر فيسبوك الخاصة بك. لتأكيد كلمة السر، افتح الإعدادات > فيسبوك ثم اضغط على اسمك."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "لم تتم تهيئة حساب فيسبوك على الجهاز."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "لم يتم تأكيد حسابك. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "لا يمكنك تسجيل الدخول إلى التطبيقات حاليًا. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "أنت المتحكم - اختر المعلومات التي تريد مشاركتها مع التطبيقات."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "تسجيل الدخول"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "إرسال"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "مشاركة"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "لست أنت؟"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "تأكيد تسجيل الدخول"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "متابعة باسم %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings deleted file mode 100644 index 768fcdbb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ -এ যান এবং উপরে যে কোডটি দেখানো হয়েছে সেটি লিখুন।"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "আপনার অ্যাকাউন্টে সংযোগ করতে, আপনার মোবাইল ডিভাইসে Facebook অ্যাপটি খুলুন এবং বিজ্ঞপ্তি চেক করুন।"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- অথবা -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ঠিক আছে"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "বাতিল করুন"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "আপনার Facebook অ্যাকাউন্টটিতে পুনরায় সংযোগ করার জন্য অনুগ্রহ করে এই অ্যাপটিতে লগ ইন করুন৷"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ঠিক আছে"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "এই সার্ভারটি সাময়িকভাবে ব্যস্ত আছে, অনুগ্রহ করে পুনরায় চেষ্টা করুন৷"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "বাতিল করুন"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "লগ আউট করুন"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ব্যবহার করে লগ ইন করা হয়েছে"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ হিসাবে লগ ইন করা হয়েছে"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "লগ ইন করুন"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook এর সাথে চালিয়ে যান"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook -এর সাথে লগ ইন করুন"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "লগ আউট করুন"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook অ্যাকাউন্টটিতে অ্যাক্সেস করার অনুমতি নেই৷ ডিভাইস সেটিংস যাচাই করুন৷"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook-এ সংযোগ করা যাচ্ছে না৷ আপনার নেটওয়ার্ক সংযোগটি পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন৷"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "আপনার Facebook পাসওয়ার্ডটি পরিবর্তিত হয়েছে৷ আপনার পাসওয়ার্ডটি নিশ্চিত করতে, সেটিংস > Facebook খুলুন এবং আপনার নামটি ট্যাপ করুন৷"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook অ্যাকাউন্টটি এই ডিভাইসে কনফিগার করা যাযনি৷"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "আপনার অ্যাকাউন্টটি নিশ্চিত করা যায়নি৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "এই সময়ে আপনি অ্যাপসে লগ ইন করতে পারবেন না৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "আপনি নিয়ন্ত্রণে আছেন - অ্যাপ্সের সাথে আপনি যে তথ্য শেয়ার করতে চান তা বাছুন৷"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "লগ ইন করুন"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "পাঠান"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ভাগ করুন"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "আপনি নন?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "লগ ইন নিশ্চিত করুন"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ হিসেবে চালিয়ে যান"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings deleted file mode 100644 index c15549c4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Navštivte %@ a zadejte nahoře uvedený kód."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Účet si můžete připojit tak, že si na mobilním zařízení spustíte aplikaci Facebook a podíváte se do upozornění."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- NEBO -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Zrušit"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Pokud se chcete ke svému Facebook účtu znovu připojit, přihlaste se k této aplikaci ještě jednou."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server je dočasně zaneprázdněný, zkuste to znovu."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Zrušit"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odhlásit"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Přihlášen(a) přes Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Přihlášen(a) jako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Přihlásit"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Pokračovat přes Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Přihlásit se přes Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odhlásit"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook účtu nebylo oprávnění uděleno. Ověřte nastavení zařízení."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "K Facebooku se nedá připojit. Zkontrolujte připojení k síti a zkuste to znovu."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Vaše heslo na Facebook je změněné. Pokud chcete heslo potvrdit, přejděte do Nastavení > Facebook a klepněte na své jméno."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "V tomto zařízení není Facebook účet konfigurovaný."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet není potvrzený. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Do aplikací se v této chvíli přihlásit nemůžete. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Je jen na vás, které informace chcete s aplikacemi sdílet."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Přihlásit"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Odeslat"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Sdílet"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nejste to vy?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrdit přihlášení"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Pokračovat jako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings deleted file mode 100644 index a6d9ed40..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Gå til %@, og indtast den kode, der er angivet ovenfor."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Du kan tilknytte din konto ved at åbne Facebook-appen på din mobilenhed og tjekke notifikationerne."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuller"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Log på denne app igen for at genoprette forbindelsen til din Facebook-konto."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serveren er optaget i øjeblikket. Prøv igen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuller"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log af"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logget på med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logget på som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log på"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsæt med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log på med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log af"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Der er ikke blevet givet adgang til Facebook-kontoen. Kontrollér enhedsindstillingerne."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kunne ikke oprette forbindelse til Facebook. Kontrollér din netværksforbindelse, og prøv igen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Din Facebook-adgangskode er ændret. For at bekræfte din adgangskode skal du åbne Indstillinger > Facebook og trykke på dit navn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke blevet konfigureret på enheden."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Din konto er ikke bekræftet. Log på www.facebook.com, og følg instruktionerne."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge på apps på nuværende tidspunkt. Log på www.facebook.com, og følg instruktionerne."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du har styringen – vælg de oplysninger, som du vil dele med apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log på"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Del"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ikke dig?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekræft login"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsæt som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings deleted file mode 100644 index 1e470805..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besuche %@ und gib den oben angezeigten Code ein."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Um dein Konto zu verbinden, öffne die Facebook-App auf deinem Mobilgerät und prüfe, ob du Benachrichtigungen erhalten hast."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– ODER –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Abbrechen"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Melde dich bitte erneut bei dieser App an, um die Verbindung mit deinem Facebook-Konto wiederherzustellen."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Der Server ist vorübergehend beschäftigt. Bitte versuche es erneut."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Abbrechen"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Abmelden"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Über Facebook angemeldet"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Als %@ angemeldet"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Anmelden"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Mit Facebook fortfahren"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Über Facebook anmelden"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Abmelden"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Auf das Facebook-Konto wurde kein Zugriff erteilt. Überprüfe bitte die Geräteeinstellungen."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Verbindung zu Facebook kann nicht hergestellt werden. Bitte überprüfe deine Netzwerkverbindung und versuche es erneut."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Dein Facebook-Passwort hat sich geändert. Öffne „Einstellungen“ > „Facebook“ und tippe auf deinen Namen, um dein Passwort zu bestätigen."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Das Facebook-Konto wurde für dieses Gerät nicht konfiguriert."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Dein Konto wurde nicht bestätigt. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kannst dich zurzeit nicht bei Apps anmelden. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Es liegt ganz an dir – du kannst dir aussuchen, was du mit Apps teilen möchtest."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Anmelden"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Senden"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Teilen"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nicht du?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Login bestätigen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortfahren als %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings deleted file mode 100644 index 09ca6484..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Επισκεφτείτε τη διεύθυνση %@ και συμπληρώστε τον παραπάνω κωδικό."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Για να συνδεθείτε στο λογαριασμό σας, ανοίξτε την εφαρμογή Facebook στη φορητή συσκευή σας και ελέγξτε τις ειδοποιήσεις."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- Ή -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Άκυρο"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Συνδεθείτε ξανά σε αυτή την εφαρμογή για να συνδέσετε και πάλι το λογαριασμό σας στο Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Ο διακομιστής είναι προσωρινά απασχολημένος, προσπαθήστε ξανά."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Άκυρο"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Αποσύνδεση"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Έχει γίνει σύνδεση μέσω Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Έχει γίνει σύνδεση ως %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Σύνδεση"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Συνεχίστε με το Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Σύνδεση μέσω Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Αποσύνδεση"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Δεν έχει παραχωρηθεί πρόσβαση στο λογαριασμό Facebook. Επαληθεύστε τις ρυθμίσεις της συσκευής σας."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Δεν είναι δυνατή η σύνδεση στο Facebook. Ελέγξτε τη σύνδεση στο δίκτυο και προσπαθήστε ξανά."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ο κωδικός πρόσβασής σας στο Facebook άλλαξε. Για να επιβεβαιώσετε τον κωδικό σας, πηγαίνετε στις Ρυθμίσεις > Facebook και πατήστε το όνομά σας."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Ο λογαριασμός Facebook δεν έχει διαμορφωθεί στη συσκευή."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ο λογαριασμός σας δεν επιβεβαιώθηκε. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Προς το παρόν δεν μπορείτε να συνδεθείτε σε εφαρμογές. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Έχετε τον έλεγχο - επιλέξτε ποιες πληροφορίες θέλετε να κοινοποιούνται στις εφαρμογές."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Σύνδεση"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Αποστολή"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Κοινοποίηση"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Δεν είστε εσείς;"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Επιβεβαίωση σύνδεσης"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Συνέχεια ως %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings deleted file mode 100644 index c88ac076..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings deleted file mode 100644 index e36f841c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Visit %@ and enter the code shown above."; - -/* The 'or' string for smart login instructions */ -"DeviceLogin.SmartLogInOrLabel" = "-- OR --"; - -/* The string for smart login instructions */ -"DeviceLogin.SmartLogInPrompt" = "To connect your account, open the Facebook app on your mobile device and check for notifications."; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancel"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Please log in to this app again to reconnect your Facebook account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "The server is temporarily busy, please try again."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancel"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log out"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logged in using Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logged in as %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continue with Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log in with Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log out"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Access has not been granted to the Facebook account. Verify device settings."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Unable to connect to Facebook. Please check your network connection and try again."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Your Facebook password has changed. To confirm your password, open Settings > Facebook and tap your name."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "The Facebook account has not been configured on the device."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Your account is not confirmed. Please log in to www.facebook.com and follow the instructions given."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "You cannot log in to apps at this time. Please log in to www.facebook.com and follow the instructions given."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "You're in control – choose what information you want to share with apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log In"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Share"; - -/* The title for the alert when smart login requires confirmation */ -"SmartLogin.ConfirmationTitle" = "Confirm Login"; - -/* The format string to continue as for the alert when smart login requires confirmation */ -"SmartLogin.Continue" = "Continue as %@"; - -/* The cancel label for the alert when smart login requires confirmation */ -"SmartLogin.NotYou" = "Not you?"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings deleted file mode 100644 index 0c5ce879..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e ingresa el código que se muestra arriba."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Aceptar"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Inicia sesión de nuevo en esta aplicación para volver a conectarte a tu cuenta de Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Aceptar"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "El servidor está temporalmente ocupado. Vuelve a intentarlo."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Cerrar sesión"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Inicio de sesión"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Salir"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "No se concedió acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión a internet y vuelve a intentarlo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Cambió tu contraseña de Facebook. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "No se configuró la cuenta de Facebook en el dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no está confirmada. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tú decides: elige qué información quieres compartir con las aplicaciones."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Inicio de sesión"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartir"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "¿No eres tú?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings deleted file mode 100644 index 4ecd5d68..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e introduce el código que se muestra arriba."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Aceptar"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Vuelve a iniciar sesión en esta aplicación para volver a conectar tu cuenta de Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Aceptar"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "El servidor está ocupado temporalmente. Vuelve a intentarlo más tarde."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Salir"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Inicio de sesión"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Salir"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "No se ha otorgado acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión de red y vuelve a intentarlo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Tu contraseña de Facebook ha cambiado. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "La cuenta de Facebook no se ha configurado en el dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no se ha confirmado. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tú tienes el control: elige la información que quieres compartir con las aplicaciones."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Inicio de sesión"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartir"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "¿No eres tú?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings deleted file mode 100644 index f51fcaa6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Siirry osoitteeseen %@ ja kirjoita oheinen koodi sivulle."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Pääset liittämään käyttäjätilisi avaamalla Facebook-sovelluksen mobiililaitteellasi ja tarkistamalla ilmoitukset."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- TAI -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Peruuta"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Kirjaudu tähän sovellukseen uudelleen, jotta voit yhdistää Facebook-tilisi uudelleen."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Palvelin on tilapäisesti varattu, yritä uudelleen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Peruuta"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Kirjaudu ulos"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sisäänkirjautunut Facebookin avulla"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sisäänkirjautunut nimellä %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Kirjaudu sisään"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Jatka Facebook-tunnuksilla"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Kirjaudu sisään Facebookin avulla"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Kirjaudu ulos"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Pääsyä Facebook-tiliin ei ole myönnetty. Tarkista laiteasetukset."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Yhteyttä Facebookiin ei voi muodostaa. Tarkista verkkoyhteys ja yritä sitten uudelleen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-salasanasi on vaihdettu. Vahvista salasanasi avaamalla Asetukset > Facebook ja napauttamalla nimeäsi."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-tiliä ei ole määritetty laitteessa."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tiliäsi ei ole vahvistettu. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Et pysty kirjautumaan sovelluksiin tällä hetkellä. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Sinä voit valita, mitä tietoja jaat sovelluksille."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Kirjaudu sisään"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Lähetä"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Jaa"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Etkö tämä ole sinä?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Vahvista sisäänkirjautuminen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Jatka nimellä %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings deleted file mode 100644 index c72600b1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Pumunta sa %@ at ilagay ang code na ipinapakita sa itaas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para ikonekta ang iyong account, buksan ang Facebook app sa iyong cellphone at tumingin ng mga notification."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O KAYA -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Kanselahin"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Mangyaring mag-log in muli sa app na ito para ikonekta muli ang iyong Facebook account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Pansamantalang abala ang server, pakisubukan muli."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Kanselahin"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Mag-log Out"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Naka-log in gamit ang Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Naka-log in bilang si %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Mag-log in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Magatuloy sa Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Mag-log in sa pamamagitan ng Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Mag-log out"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Hindi binigyan ng access ang Facebook account. Beripikahin ang mga setting ng device."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Hindi nakakonekta sa Facebook. Tingnan ang iyong koneksyon sa network at subukan muli."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Nagbago ang iyong password sa Facebook. Para makumpirma ang iyong password, buksan ang Mga Setting > Facebook at i-tap ang iyong pangalan."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Hindi na-configure sa device ang Facebook account."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Hindi nakumpirma ang iyong account. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Hindi ka makakapag-log in sa mga app sa oras na ito. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Ikaw ang may kontrol - piliin kung anong impormasyon ang gusto mong ibahagi sa mga app."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Mag-log In"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Ipadala"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Ibahagi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Hindi ikaw?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "I-confirm ang Pag-log in"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Magpatuloy bilang %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings deleted file mode 100644 index f0511b2e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Consultez la page %@ et saisissez le code indiqué ci-dessus."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Pour connecter votre compte, lancez l’application Facebook sur votre appareil mobile et consultez les notifications."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OU -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuler"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Veuillez vous connecter à nouveau à cette application pour reconnecter votre compte Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Le serveur est temporairement occupé. Veuillez réessayer plus tard."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuler"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Déconnexion"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Connecté(e) à l’aide de Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Connecté(e) en tant que %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Connexion"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuer avec Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Connexion avec Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Déconnexion"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "L’accès au compte Facebook n’a pas été autorisé. Vérifiez les paramètres de l’appareil."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Connexion à Facebook impossible. Vérifiez votre connexion avant de réessayer."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Votre mot de passe Facebook a changé. Pour confirmer votre mot de passe, ouvrez Paramètres > Facebook et saisissez votre nom."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Le compte Facebook n’a pas été configuré sur l’appareil."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Votre compte n’est pas confirmé. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Vous ne pouvez pas vous connecter à des applications pour le moment. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Vous gardez le contrôle. Choisissez les informations que vous souhaitez partager avec les applications."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Connexion"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Envoyer"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Partager"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ce n’est pas vous ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmer la connexion"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuer en tant que %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings deleted file mode 100644 index 95bec7fb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ ની મુલાકાત લો અને ઉપર બતાવ્યા પ્રમાણે કોડ દાખલ કરો."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "તમારા એકાઉન્ટ સાથે જોડાવા માટે, તમારા મોબાઇલ ઉપકરણ પર Facebook એપ્લિકેશન ખોલો અને સૂચનો માટે તપાસો."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- અથવા -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ઠીક"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "રદ કરો"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "તમારા ફેસબુક ખાતાને ફરીથી કનેક્ટ કરવા માટે કૃપા કરીને આ એપ્લિકેશનમાં ફરી લૉગ ઇન કરો."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ઠીક"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "સર્વર અસ્થાયીરૂપે વ્યસ્ત છે, કૃપા કરીને ફરી પ્રયાસ કરો."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "રદ કરો"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "લૉગ આઉટ કરો"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "ફેસબુકનો ઉપયોગ કરીને લૉગ ઇન કરો"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ તરીકે લૉગ ઇન થયાં"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "લૉગ ઇન કરો"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook સાથે ચાલુ રાખો"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "ફેસબુક સાથે લૉગ ઇન કરો"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "લૉગ આઉટ કરો"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "ફેસબુક ખાતા પર ઍક્સેસ આપવામાં આવી નથી. ઉપકરણ સેટિંગ્સ ચકાસો"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "ફેસબુકથી કનેક્ટ કરવામાં અસમર્થ. તમારું નેટવર્ક કનેક્શન તપાસો અને ફરી પ્રયાસ કરો."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "તમારો ફેસબુક પાસવર્ડ બદલાઈ ગયો છે. તમારા પાસવર્ડની પુષ્ટિ કરવા માટે, સેટિંગ્સ > ફેસબુક ખોલો અને તમારા નામ પર ટૅપ કરો."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "ઉપકરણ પર ફેસબુક ખાતું કન્ફિગર કરવામાં આવ્યું નથી."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "તમારા ખાતાની પુષ્ટિ કરવામાં આવી નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "તમે આ સમયે એપ્લિકેશન્સમાં લૉગ ઇન કરી શકતાં નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "તમે નિયંત્રણ કરો છો - તમે એપ્લિકેશન્સ સાથે કઈ માહિતી શેર કરવા માંગો છો તે પસંદ કરો."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "લૉગ ઇન કરો"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "મોકલો"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "શેર કરો"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "તમે નહિ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "લૉગિનની પુષ્ટિ કરો"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ તરીકે ચાલુ રાખો"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings deleted file mode 100644 index be0f033b..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "בקר ב-%@ והזן את הקוד המופיע למעלה."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "כדי לחבר את החשבון שלך, פתח את אפליקציית פייסבוק במכשיר הנייד שלך ובדוק אם יש התראות."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- או -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "אישור"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ביטול"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "התחבר לאפליקציה זו שוב כדי לחבר מחדש את חשבון הפייסבוק שלך."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "אישור"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "השרת עמוס באופן זמני, נסה שוב."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ביטול"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "התנתק"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "מחובר באמצעות פייסבוק"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "מחובר בתור %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "התחבר"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "המשך עם פייסבוק"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "התחבר באמצעות פייסבוק"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "התנתק"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "לא הוענקה גישה לחשבון הפייסבוק. אמת את הגדרות המכשיר."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "לא ניתן להתחבר לפייסבוק. בדוק את החיבור שלך לרשת ונסה שוב."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "סיסמת הפייסבוק שלך השתנתה. כדי לאשר את הסיסמה, פתח את 'הגדרות' > 'פייסבוק' והקש על שמך."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "חשבון הפייסבוק לא הוגדר במכשיר."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "החשבון שלך לא אושר. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "לא ניתן להתחבר לאפליקציות כעת. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "אתה מחליט - בחר איזה מידע אתה רוצה לשתף עם אפליקציות."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "התחבר"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "שלח"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "שתף"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "לא אתה?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "אשר התחברות"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "המשך כ-%@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings deleted file mode 100644 index 16d49ea6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ पर जाएँ और ऊपर दिया गया कोड दर्ज करें."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "अपने खाते को कनेक्ट करने के लिए, अपने मोबाइल एप्लिकेशन में Facebook एप्लिकेशन खोलें और सूचनाओं के लिए जाँच करें."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- या -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ठीक"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "रद्द करें"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "अपने Facebook खाते से फिर से कनेक्ट होने के लिए कृपया इस एप्लिकेशन में फिर से लॉग इन करें."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ठीक"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "सर्वर अस्थायी रूप से व्यस्त है, कृपया फिर से कोशिश करें."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "रद्द करें"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "लॉग आउट करें"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook का उपयोग करके लॉग इन किया हुआ है"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ के रूप में लॉग इन किया हुआ है"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "लॉग इन करें"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook के साथ जारी रखें"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook से लॉग इन करें"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "लॉग आउट"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook खाते को एक्सेस नहीं दी गई है. डिवाइस सेटिंग सत्यापित करें."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook से कनेक्ट होने में असमर्थ. कृपया अपने नेटवर्क कनेक्शन की जाँच करें फिर से प्रयास करें."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "आपका Facebook पासवर्ड बदल गया है. अपना पासवर्ड कन्फ़र्म करने के लिए, सेटिंग > Facebook खोलें और अपना नाम टैप करें."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "डिवाइस पर Facebook खाता कॉन्फ़िगर नहीं किया गया है."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "आपका खाता कन्फ़र्म नहीं किया गया है. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "आप इस समय एप्लिकेशन में लॉग इन नहीं कर सकते. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "आप नियंत्रण में हैं - चुनें कि आप एप्लिकेशन से कौन-सी जानकारी साझा करना चाहते हैं."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "लॉग इन करें"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "भेजें"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "साझा करें"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "आप नहीं हैं?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "लॉग इन कन्फ़र्म करें"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ के रूप में जारी रखें"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings deleted file mode 100644 index 1a30854a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Posjetite adresu %@ i unesite gore prikazan kod."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Da biste povezali račun, otvorite aplikaciju Facebook na mobilnom uređaju i potražite obavijesti."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ILI -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "U redu"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Odustani"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Ponovo se prijavite u ovu aplikaciju kako biste se ponovo povezali s Facebook računom."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "U redu"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Poslužitelj je privremeno zauzet, pokušajte ponovo."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Odustani"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odjavi se"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Prijavljen putem Facebooka"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Prijavljen kao %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Prijavi se"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Nastavite s korištenjem Facebooka"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Prijava putem Facebooka"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odjavi se"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Pristup Facebook računu nije odobren. Provjerite postavke uređaja."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Povezivanje s Facebookom nije uspjelo. Provjerite mrežnu vezu i pokušajte ponovo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Promijenili ste lozinku za Facebook. Za potvrdu lozinke otvorite Postavke > Facebook i dodirnite svoje ime."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Na uređaju nije konfiguriran račun za Facebook."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Vaš račun nije potvrđen. Prijavite se na www.facebook.com i slijedite upute."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "U ovome trenutku prijava u aplikacije nije moguća. Prijavite se na www.facebook.com i slijedite upute."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Vi odlučujete – odaberite koje podatke želite dijeliti u aplikacijama."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Prijava"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Pošalji"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Dijeli"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "To niste vi?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrda prijave"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Nastavi kao %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings deleted file mode 100644 index 81a206e1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Keresd fel a %@ címet, és írd be a fent megjelenített kódot."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "A fiók hozzákapcsolásához nyisd meg a Facebook alkalmazást a mobilkészülékeden, és nézd meg az értesítéseket."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- VAGY -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Mégsem"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Kérjük, jelentkezz be újra ebbe az alkalmazásba, ha szeretnéd ismét összekapcsolni a Facebook-fiókoddal."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "A kiszolgáló átmenetileg foglalt, próbáld meg újra."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Mégsem"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Kijelentkezés"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Bejelentkezve a Facebook használatával"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Bejelentkezve %@ néven"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Bejelentkezés"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Folytatás a Facebookkal"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Bejelentkezés a Facebook használatával"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Kijelentkezés"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "A Facebook-fiókhoz nincs megadva a hozzáférés. Ellenőrizd az eszköz beállításait."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nem sikerült kapcsolódni a Facebookhoz. Ellenőrizd a hálózati kapcsolatot, majd próbáld meg újra."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-jelszavad megváltozott. A jelszó megerősítéséhez nyisd meg a Settings (Beállítások) > Facebook pontot, és koppints a nevedre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A készüléken nincs beállítva a Facebook-fiók."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A fiókod nincs megerősítve. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Jelenleg nem tudsz alkalmazásokba bejelentkezni. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "A döntés a kezedben van: kiválaszthatod, hogy milyen adatokat osztasz meg az alkalmazásokkal."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Bejelentkezés"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Küldés"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Megosztás"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nem te vagy az?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bejelentkezés megerősítése"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Folytatás mint %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings deleted file mode 100644 index da53d0d0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Kunjungi %@ dan masukkan kode yang ditampilkan di atas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akun Anda, buka aplikasi Facebook di perangkat seluler Anda dan periksa pemberitahuan."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Batal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Harap masuk ke aplikasi ini lagi untuk menghubungkan kembali akun Facebook Anda."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server untuk sementara sedang sibuk, harap coba lagi."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Batal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Keluar"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Masuk menggunakan Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Masuk sebagai %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Masuk"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Lanjutkan dengan Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Masuk menggunakan Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Keluar"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Akses belum diberikan ke akun Facebook. Verifikasi pengaturan perangkat."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Tidak dapat terhubung ke Facebook. Periksa koneksi jaringan dan coba lagi."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Kata sandi Facebook Anda telah diubah. Untuk mengonfirmasi kata sandi Anda, buka Pengaturan > Facebook, lalu ketuk nama Anda."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Akun Facebook belum dikonfigurasikan di perangkat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Akun Anda tidak dikonfirmasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Saat ini Anda tidak dapat masuk ke aplikasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Anda memegang kendali - pilih info yang ingin Anda bagikan dengan aplikasi."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Masuk"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Kirim"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Berbagi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Bukan Anda?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Konfirmasikan Masuk"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Lanjutkan sebagai %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings deleted file mode 100644 index 38915663..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e inserisci il codice mostrato sopra."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Per collegare il tuo account, apri l'app Facebook sul tuo dispositivo mobile e controlla se hai notifiche."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OPPURE -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annulla"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Effettua di nuovo l'accesso a questa applicazione per riconnettere il tuo account Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Il server è temporaneamente occupato, riprova."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annulla"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Esci"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Accesso effettuato tramite Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Accesso effettuato come %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Accedi"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continua con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Accedi con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Esci"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "All'account Facebook non è stato concesso l'accesso. Verifica le impostazioni del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Impossibile connettersi a Facebook. Controlla la tua connessione e riprova."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "La tua password di Facebook è stata modificata. Per confermare la password, apri Impostazioni > Facebook e tocca il tuo nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "L'account Facebook non è stato configurato nel dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Il tuo account non è stato verificato. Accedi a www.facebook.com e segui le istruzioni fornite."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Impossibile accedere alle applicazioni al momento. Accedi a www.facebook.com e segui le istruzioni fornite."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Il controllo è nelle tue mani: scegli quali informazioni condividere con le app."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Accedi"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Invia"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Condividi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Non sei tu?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Conferma l'accesso"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continua come %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings deleted file mode 100644 index c4922b5e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@にアクセスし、上に表示されているコードを入力してください。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "アカウントをリンクするには、お使いのモバイル機器でFacebookアプリを開き、お知らせをご確認ください。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- または -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "キャンセル"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "このアプリにもう一度ログインして、Facebookアカウントを再接続してください。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "サーバーが一時的にビジーです。もう一度お試しください。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "キャンセル"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ログアウト"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebookを使用してログイン中"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@としてログイン中"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ログイン"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebookで続ける"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebookでログイン"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ログアウト"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebookアカウントにアクセス権が与えられていません。デバイス設定を確認してください。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebookに接続できませんでした。ネットワーク接続を確認してもう一度お試しください。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebookパスワードが変更されています。パスワードを確認するには、[設定] > [Facebook]の順に開き、名前をタップしてください。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "デバイスにFacebookアカウントが構成されていません。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "アカウントが確認されません。www.facebook.comにログインし、表示される説明に従ってください。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "今はアプリにログインできません。www.facebook.comにログインし、表示される説明に従ってください。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "アプリと共有する情報をコントロールできます。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ログイン"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "送信"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "シェア"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "別のユーザーとしてログイン"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ログインの確認"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@として続行"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings deleted file mode 100644 index 9ecdac9d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings +++ /dev/null @@ -1,71 +0,0 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "ನಿಮ್ಮ ಸ್ಮಾರ್ಟ್‌ ಫೋನ್‌ ಅಥವಾ ಕಂಪ್ಯೂಟರ್‌ನಲ್ಲಿ %@ ಗೆ ಭೇಟಿ ನೀಡಿ ಮತ್ತು ಈ ಕೋಡ್‌ ಅನ್ನು ನಮೂದಿಸಿ:"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ಸರಿ"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ರದ್ದುಮಾಡು"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "ನಿಮ್ಮ Facebook ಖಾತೆಯನ್ನು ಮರುಸಂಪರ್ಕಗೊಳಿಸಲು ಈ ಅಪ್ಲಿಕೇಶನ್‌ನಲ್ಲಿ ಮತ್ತೊಮ್ಮೆ ಲಾಗಿನ್‌ ಮಾಡಿ."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ಸರಿ"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "ಸರ್ವರ್ ತಾತ್ಕಾಲಿಕವಾಗಿ ಕಾರ್ಯನಿರತವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ರದ್ದುಮಾಡು"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ಲಾಗ್‌ ಔಟ್‌"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ಬಳಸಿಕೊಂಡು ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ ರಂತೆ ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ಲಾಗ್‌ ಇನ್‌"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ಅನ್ನು ಮುಂದುವರಿಸಿ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ಮೂಲಕ ಲಾಗ್‌ ಇನ್‌ ಮಾಡಿ"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ಲಾಗ್‌ ಔಟ್‌"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ಖಾತೆಗೆ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಲಾಗಿಲ್ಲ. ಸಾಧನದ ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ಪರಿಶೀಲಿಸಿ."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook ಗೆ ಸಂಪರ್ಕಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನಿಮ್ಮ ನೆಟ್‌ವರ್ಕ್‌ ಸಂಪರ್ಕವನ್ನು ಪರಿಶೀಲಿಸಿ ಹಾಗೂ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "ನಿಮ್ಮ Facebook ಪಾಸ್‌ವರ್ಡ್‌ ಬದಲಿಸಲಾಗಿದೆ. ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್‌ ಖಚಿತಪಡಿಸಲು, ಸೆಟ್ಟಿಂಗ್‌ಗಳು > Facebook ತೆರೆಯಿರಿ ಮತ್ತು ನಿಮ್ಮ ಹೆಸರನ್ನು ಟ್ಯಾಪ್‌ ಮಾಡಿ."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook ಖಾತೆಯನ್ನು ಸಾಧನದಲ್ಲಿ ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿಲ್ಲ."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ದೃಢೀಕರಿಸಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ನೀವು ಈ ಸಮಯದಲ್ಲಿ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗೆ ಲಾಗಿನ್‌ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ನೀವು ನಿಯಂತ್ರಣದಲ್ಲಿರುವಿರಿ - ನೀವು ಅಪ್ಲಿಕೇಶನ್‌ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಹಂಚಿಕೊಳ್ಳಲು ಬಯಸುವ ವಿಷಯವನ್ನು ಆರಿಸಿ."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ಲಾಗ್‌ ಇನ್‌"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ಕಳುಹಿಸಿ"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ಹಂಚಿಕೊಳ್ಳಿ"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings deleted file mode 100644 index f7692eff..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@를 방문하여 위에 표시된 코드를 입력하세요."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "계정을 연결하려면 모바일 기기에서 Facebook 앱을 열고 알림을 확인하세요."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 또는 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "확인"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "취소"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Facebook 계정을 다시 연결하려면 이 앱에 다시 로그인하세요."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "확인"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "일시적으로 서버 사용량이 많아졌습니다. 다시 시도하세요."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "취소"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "로그아웃"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook 계정으로 로그인함"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@(으)로 로그인함"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "로그인"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook으로 계속"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook으로 로그인"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "로그아웃"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook 계정에 대한 액세스가 승인되지 않았습니다. 기기 설정을 확인하세요."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook에 연결할 수 없습니다. 네트워크 연결을 확인하고 다시 시도하세요."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook 비밀번호가 변경되었습니다. 비밀번호를 확인하려면 설정 > Facebook으로 이동하여 이름을 누르세요."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook 계정이 기기에 구성되어 있지 않습니다."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "계정이 확인되지 않았습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "현재 앱에 로그인할 수 없습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "원하는 정보를 선택하여 앱에 공유할 수 있습니다."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "로그인"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "보내기"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "공유하기"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "회원님이 아닌가요?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "로그인 확인"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@님으로 계속"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings deleted file mode 100644 index 8b9ead15..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ സന്ദർശിച്ച്‌ മുകളിൽ കാണിച്ച‌ കോഡ്‌ നൽകുക."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "നിങ്ങളുടെ അക്കൗണ്ട്‌ കണക്‌റ്റുചെയ്യാൻ, നിങ്ങളുടെ മൊബൈൽ ഉപകരണത്തിലെ Facebook ആപ്പ്‌ തുറന്ന്‌ അറിയിപ്പുകൾ പരിശോധിക്കുക."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- അല്ലെങ്കിൽ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ശരി"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "റദ്ദാക്കുക"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "നിങ്ങളുടെ Facebook അക്കൗണ്ടുമായി വീണ്ടും കണക്‌റ്റുചെയ്യുന്നതിന് ഈ ആപ്ലിക്കേഷനിൽ വീണ്ടും ലോഗിൻ ചെയ്യുക."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ശരി"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "സെർവർ താൽക്കാലികമായി തിരക്കിലാണ്, വീണ്ടും ശ്രമിക്കുക."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "റദ്ദാക്കുക"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്‌തു"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ എന്നതായി ലോഗിൻ ചെയ്‌തു"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ലോഗിൻ ചെയ്യുക"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ഉപയോഗിച്ച് തുടരുക"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook അക്കൗണ്ടിലേക്ക് ആക്‌സസ് നൽകിയിട്ടില്ല. ഉപകരണ ക്രമീകരണങ്ങൾ പരിശോധിച്ചുറപ്പിക്കുക."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook-ലേക്ക് കണക്‌റ്റുചെയ്യാനായില്ല. നിങ്ങളുടെ നെറ്റ്‌വർക്ക് കണക്ഷൻ പരിശോധിച്ച് വീണ്ടും ശ്രമിക്കുക."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "നിങ്ങളുടെ Facebook പാസ്‌വേഡ് മാറി. പാ‌സ്‌വേഡ് സ്ഥിരീകരിക്കുന്നതിന് ക്രമീകരണങ്ങൾ > Facebook എന്നത് തുറന്ന് പേര് ടാപ്പുചെയ്യുക."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "ഉപകരണത്തിൽ Facebook അക്കൗണ്ട് കോൺഫിഗർ ചെയ്‌തിട്ടില്ല."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "അക്കൗണ്ട് സ്ഥിരീകരിച്ചു. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "നിങ്ങൾക്ക് ഈ സമയം ആപ്ലിക്കേഷനുകളിലേക്ക് ലോഗിൻ ചെയ്യാനാവില്ല. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "നിങ്ങളുടെ നിയന്ത്രണത്തിലാണ് - നിങ്ങൾക്ക് ആപ്‌സുമായി ഏതെല്ലാം വിവരങ്ങൾ പങ്കിടണമെന്ന് തിരഞ്ഞെടുക്കുക."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ലോഗിൻ ചെയ്യുക"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "അയയ്‌ക്കുക"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "പങ്കിടൂ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "നിങ്ങൾ അല്ലേ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ലോഗിൻ സ്ഥിരീകരിക്കുക"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ആയി തുടരുക"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings deleted file mode 100644 index e857096c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ वर भेट द्या आणि वर दर्शवलेला कोड प्रविष्ट करा."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "तुमचे खाते कनेक्ट करण्यासाठी, तुमच्या मोबाईल उपकरणावर Facebook अॅप उघडा आणि सूचना तपासा."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- किंवा -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ठीक"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "रद्द करा"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "कृपया आपले फेसबुक खाते रीकनेक्ट करण्यासाठी या अनुप्रयोगावर पुन्हा लॉग इन करा."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ठीक"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "सर्व्हर तात्पुरता व्यस्त आहे, कृपया पुन्हा प्रयत्न करा."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "रद्द करा"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "लॉग आउट करा"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "फेसबुक वापरून लॉग इन केले"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ म्हणून लॉग इन केले"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "लॉग इन करा"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook सह चालू ठेवा"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "फेसबुकसह लॉग इन करा"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "लॉग आउट करा"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "फेसबुक खात्यावर प्रवेशास मंजूरी दिली गेली नाही. डिव्हाइस सेटिंग्ज सत्यापित करा."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "फेसबुकशी कनेक्ट करण्यात अक्षम. आपले नेटवर्क कनेक्शन तपासा आणि पुन्हा प्रयत्न करा."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "आपला फेसबुक पासवर्ड बदलला आहे. आपल्या पासवर्डची पुष्टी करण्यासाठी, सेटिंग्ज > फेसबुक उघडा आणि आपले नाव टॅप करा."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "डिव्हाइसवर फेसबुक खाते कॉन्फिगर केले गेले नाही."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "आपल्या खात्याची पुष्टी झाली नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "आपण यावेळी अनुप्रयोगांवर लॉग इन करू शकत नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "तुम्ही नियंत्रणात आहात - तुम्ही कोणती माहिती अॅपसह सामायिक करू इच्छिता ते निवडा."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "लॉग इन करा"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "पाठवा"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "सामायिक करा"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "तुम्ही नाही?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "लॉग इन पुष्टी करा"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ म्हणून चालू ठेवा"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings deleted file mode 100644 index 60b4cdb9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Lawati %@ dan masukkan kod yang ditunjukkan di atas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akaun anda, buka apl Facebook di peranti mudah alih anda dan semak pemberitahuan."; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Bukan anda?"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Batal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Sila log masuk ke aplikasi ini sekali lagi untuk menyambung semula akaun Facebook anda."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Pelayan ini sibuk buat sementara waktu, sila cuba lagi."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Batal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log Keluar"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Dilog masuk menggunakan Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Dilog masuk sebagai %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log masuk"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Teruskan dengan Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log masuk dengan Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log keluar"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Akses ke akaun Facebook tidak diberikan. Sahkan tetapan peranti."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Tidak dapat menyambung ke Facebook. Semak sambungan rangkaian anda dan cuba lagi."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Kata laluan Facebook anda telah ditukar. Untuk mengesahkan kata laluan anda, buka Tetapan > Facebook dan ketik nama anda."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Akaun Facebook masih belum dikonfigurasikan pada peranti."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Akaun anda tidak disahkan. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Anda tidak boleh log masuk ke aplikasi pada masa ini. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Anda yang mengawal - pilih maklumat yang anda ingin kongsi dengan apl."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log Masuk"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Hantar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Kongsi"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Sahkan Log Masuk"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Teruskan sebagai %@"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings deleted file mode 100644 index 3ebb66c3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Gå til %@, og oppgi koden som vises ovenfor."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Koble til kontoen din ved å åpne Facebook-appen på mobilenheten din og se etter varsler."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Avbryt"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Logg deg inn igjen på denne appen for å koble til Facebook-kontoen på nytt."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serveren er midlertidig opptatt. Prøv på nytt."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Avbryt"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Logg ut"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logget inn med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logget inn som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Logg inn"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsett med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Logg inn med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Logg ut"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Det er ikke gitt tilgang til Facebook-kontoen. Bekreft enhetsinnstillinger."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kunne ikke koble til Facebook. Kontroller nettverkstilkoblingen, og prøv på nytt."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-passordet ditt er endret. Bekreft passordet ditt ved å gå til Innstillinger > Facebook og trykke på navnet ditt."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke konfigurert på enheten."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Kontoen din er bekreftet. Logg deg inn på www.facebook.com, og følg instruksjonene."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge deg inn på apper for øyeblikket. Logg deg inn på www.facebook.com, og følg instruksjonene."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du bestemmer – velg hvilke opplysninger du vil dele med appene."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Logg inn"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Del"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ikke deg?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekreft innlogging"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsett som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings deleted file mode 100644 index 160654a4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Ga naar %@ en voer de bovenstaande code in."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Om je account te verbinden, open je de Facebook-app op je mobiele apparaat en controleer of je meldingen ziet."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OF -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuleren"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Meld je nogmaals aan bij deze app om verbinding te maken met je Facebook-account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "De server is tijdelijk niet beschikbaar. Probeer het opnieuw."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuleren"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Afmelden"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Aangemeld via Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Aangemeld als %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Aanmelden"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Doorgaan met Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Aanmelden met Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Afmelden"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Er is geen toegang verleend aan het Facebook-account. Verifieer de apparaatinstellingen."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Er kan geen verbinding worden gemaakt met Facebook. Controleer je netwerkverbinding en probeer het opnieuw."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Je Facebook-wachtwoord is gewijzigd. Open Instellingen > Facebook en tik op je naam om je wachtwoord te bevestigen."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Het Facebook-account is niet geconfigureerd op het apparaat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Je account is niet bevestigd. Meld je aan bij www.facebook.com en volg de instructies."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Je kunt je momenteel niet aanmelden bij apps. Meld je aan bij www.facebook.com en volg de instructies."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Jij hebt de controle. Kies welke informatie je met apps wilt delen."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Aanmelden"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Verzenden"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Delen"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ben jij dit niet?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Aanmelden bevestigen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Doorgaan als %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings deleted file mode 100644 index 07027466..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ ਵਿੱਚ ਜਾਓ ਅਤੇ ਉੱਤੇ ਦਿਖਾਏ ਗਏ ਕੋਡ ਨੂੰ ਦਾਖ਼ਲ ਕਰੋ।"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "ਆਪਣੇ ਖਾਤੇ ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਲਈ, ਆਪਣੀ ਮੋਬਾਈਲ ਡਿਵਾਈਸ 'ਤੇ Facebook ਐਪ ਨੂੰ ਖੋਲ੍ਹੋ ਅਤੇ ਸੂਚਨਾਵਾਂ ਨੂੰ ਦੇਖੋ।"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ਜਾਂ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ਠੀਕ"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ਰੱਦ ਕਰੋ"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੇ Facebook ਖਾਤੇ ਨਾਲ ਮੁੜ ਕਨੈਕਟ ਕਰਨ ਲਈ ਇਸ ਐਪ ਵਿੱਚ ਦੁਬਾਰਾ ਲੌਗ ਇਨ ਕਰੋ।"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ਠੀਕ"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "ਇਹ ਸਰਵਰ ਅਸਥਾਈ ਰੂਪ ਵਿੱਚ ਵਿਅਸਤ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ਰੱਦ ਕਰੋ"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ਦਾ ਉਪਯੋਗ ਕਰਕੇ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ ਵੱਜੋਂ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ਲੌਗ ਇਨ ਕਰੋ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ਦੇ ਨਾਲ ਜਾਰੀ ਰੱਖੋ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ਦੇ ਨਾਲ ਲੌਗ ਇਨ ਕਰੋ"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ਖਾਤੇ ਨੂੰ ਐਕਸੈਸ ਪ੍ਰਦਾਨ ਨਹੀਂ ਕੀਤੀ ਗਈ। ਡਿਵਾਈਸ ਸੈੱਟਿੰਗਜ਼ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਵਿੱਚ ਅਸਮਰਥਿਤ ਆਪਣੇ ਨੈੱਟਵਰਕ ਕਨੈਕਸ਼ਨ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "ਤੁਹਾਡੇ Facebook ਪਾਸਵਰਡ ਨੂੰ ਬਦਲ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਆਪਣੇ ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰਨ ਲਈ, ਸੈੱਟਿੰਗਜ਼ > Facebook ਖੋਲ੍ਹੋ ਅਤੇ ਆਪਣੇ ਨਾਂ ਨੂੰ ਟੈਪ ਕਰੋ।"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook ਖਾਤੇ ਨੂੰ ਡਿਵਾਈਸ 'ਤੇ ਕਨਫ਼ੀਗਰ ਨਹੀਂ ਕੀਤਾ ਗਿਆ ਹੈ।"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "ਤੁਹਾਡੇ ਖਾਤੇ ਦੀ ਪੁਸ਼ਟੀ ਨਹੀਂ ਕੀਤੀ ਗਈ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ਤੁਸੀਂ ਇਸ ਸਮੇਂ ਐਪ ਵਿੱਚ ਲੌਗ ਇਨ ਨਹੀਂ ਕਰ ਸਕਦੇ ਹੋ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ਤੁ\ਸੀਂ ਨਿਯੰਤਰਣ ਵਿੱਚ ਹੋ - ਉਹ ਜਾਣਕਾਰੀ ਚੁਣੋ ਜੋ ਤੁਸੀਂ ਐਪਸ ਦੇ ਨਾਲ ਸਾਂਝੀ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ।"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ਲੌਗ ਇਨ ਕਰੋ"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ਸਾਂਝਾ ਕਰੋ"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ਭੇਜੋ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "ਕੀ ਤੁਸੀਂ ਨਹੀਂ ਹੋ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ਲੌਗਇਨ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ਵੱਜੋਂ ਜਾਰੀ ਰੱਖੋ"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings deleted file mode 100644 index 5b0954f5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Wejdź na stronę %@ i wprowadź podany powyżej kod."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Aby połączyć konto, otwórz aplikację Facebook na urządzeniu mobilnym i sprawdź powiadomienia."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- LUB -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Anuluj"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Zaloguj się jeszcze raz do aplikacji, aby ponownie przyłączyć swoje konto na Facebooku."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serwer jest zajęty, spróbuj później."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Anuluj"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Wyloguj się"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Zalogowano przez Facebooka"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Zalogowano jako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Zaloguj się"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Kontynuuj za pośrednictwem Facebooka"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Zaloguj się przez Facebooka"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Wyloguj się"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Brak dostępu z tego konta na Facebooku. Sprawdź ustawienia urządzenia."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nie można połączyć się z Facebookiem. Sprawdź połączenie sieciowe i spróbuj ponownie."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Twoje hasło do Facebooka zostało zmienione. Aby potwierdzić hasło, otwórz Ustawienia > Facebook i dotknij swojego imienia i nazwiska."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Na tym urządzeniu nie skonfigurowano konta na Facebooku."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Konto niepotwierdzone. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Brak możliwości logowania się do aplikacji. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Masz pełną kontrolę – określ, jakie informacje chcesz udostępniać aplikacjom."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Zaloguj się"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Wyślij"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Udostępnij"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "To nie Ty?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potwierdź logowanie"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Kontynuuj jako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings deleted file mode 100644 index 6ff2c772..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Acesse %@ e introduza o código mostrado acima."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar sua conta, abra o aplicativo Facebook em seu dispositivo móvel e verifique se tem notificações."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– OU –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Entre nesse aplicativo novamente para reconectar sua conta do Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tente novamente."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Sair"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Você entrou usando o Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Conectado como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Entrar"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar com o Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Entrar com o Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Sair"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "O acesso à conta do Facebook não foi permitido. Verifique as configurações do dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Não foi possível se conectar ao Facebook. Verifique sua conexão de rede e tente novamente."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "A sua senha do Facebook foi alterada. Para confirmar a sua senha, abra Configurações > Facebook e toque no seu nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A sua conta não foi confirmada. Entre no site www.facebook.com e siga as instruções fornecidas."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Não é possível entrar em aplicativos neste momento. Entre no site www.facebook.com e siga as instruções fornecidas."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Você é quem controla — escolha quais informações você quer compartilhar com os aplicativos."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Entrar"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Envio"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartilhar"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Não é você?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirme o login"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continue como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings deleted file mode 100644 index 6648e115..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e introduz o código mostrado acima."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para ligares a tua conta, abre a app Facebook no teu dispositivo móvel e verifica se tens notificações."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– OU –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Volta a iniciar sessão nesta aplicação para te ligares novamente à tua conta do Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tenta novamente."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Terminar sessão"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Com sessão iniciada através do Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Com sessão iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Iniciar sessão"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar com o Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sessão com o Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Terminar a sessão"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "O acesso não foi concedido à conta do Facebook. Verificar as definições do dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Não é possível ligar ao Facebook. Verifica a tua ligação à rede e tenta novamente."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "A tua palavra-passe do Facebook foi alterada. Para confirmares a tua palavra-passe, abre as Definições > Facebook e toca no teu nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A tua conta não foi confirmada. Inicia sessão em www.facebook.com e segue as instruções indicadas."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Não podes iniciar sessão em aplicações neste momento. Inicia sessão em www.facebook.com e segue as instruções indicadas."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tens o controlo: escolhe a informação que pretendes partilhar com as apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Iniciar sessão"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Partilhar"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Não és tu?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar Início de Sessão"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings deleted file mode 100644 index 450a9cc8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Откройте страницу %@ и введите представленный выше код."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Чтобы подключить аккаунт, откройте приложение Facebook на мобильном устройстве и проверьте уведомления."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ИЛИ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Отменить"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Войдите в это приложение еще раз, чтобы повторно подключить ваш аккаунт Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Сервер временно загружен, повторите попытку."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Отменить"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Выход"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Выполнен вход с помощью Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Вы вошли как %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Вход"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Продолжить с Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Вход через Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Выход"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Аккаунту Facebook доступ не предоставлен. Проверьте настройки устройства."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Не удалось подключиться к Facebook. Проверьте сетевое подключение и повторите попытку."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ваш пароль Facebook изменен. Чтобы подтвердить пароль, откройте «Настройки» > Facebook и коснитесь вашего имени."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "На устройстве не настроен аккаунт Facebook."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ваш аккаунт не подтвержден. Войдите на сайт www.facebook.com и следуйте инструкциям."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Сейчас нельзя войти в приложения. Войдите на сайт www.facebook.com и следуйте инструкциям."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Вы сами выбираете, какой информацией поделиться с приложениями."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Вход в систему"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Отправить"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Поделиться"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Это не вы?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Подтвердить вход"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Продолжить как %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings deleted file mode 100644 index 859b9b3d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Navštívte stránku %@ a zadajte kód zobrazený vyššie."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Na pripojenie svojho účtu otvorte vo svojom mobilnom zariadení aplikáciu Facebook a skontrolujte upozornenia."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ALEBO -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Zrušiť"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Ak sa chcete znova pripojiť k svojmu účtu na Facebooku, prihláste sa znova do tejto aplikácie."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server je dočasne zaneprázdnený – skúste znova."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Zrušiť"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odhlásiť"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Prihlásený cez Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Prihlásený ako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Prihlásiť sa"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Pokračovať s Facebookom"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Prihlásiť sa cez Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odhlásiť sa"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Danému účtu na Facebooku nebol poskytnutý prístup. Skontrolujte nastavenia zariadenia."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nedá sa pripojiť k Facebooku. Skontrolujte svoje sieťové pripojenie a skúste znova."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Vaše heslo pre Facebook sa zmenilo. Na potvrdenie svojho hesla otvorte Nastavenia > Facebook a ťuknite na svoje meno."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Daný účet na Facebooku nebol nastavený v zariadení."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet nie je potvrdený. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Momentálne sa nemôžete prihlásiť do aplikácií. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Máte to pod kontrolou: vyberte, ktoré informácie chcete zdieľať s aplikáciami."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Prihlásenie sa"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Odoslať"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Zdieľať"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nie ste to vy?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrdiť prihlásenie"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Pokračovať ako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings deleted file mode 100644 index 69c80525..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besök %@ och ange koden som visas ovan."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Koppla ditt konto genom att öppna Facebook-appen på din mobila enhet och söka efter aviseringar."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Avbryt"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Logga in på den här appen igen om du vill ansluta ditt Facebook-konto på nytt."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Servern är upptagen för tillfället. Försök igen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Avbryt"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Logga ut"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Inloggad med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Inloggad som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Logga in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsätt med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Logga in med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Logga ut"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Du har inte fått tillgång till Facebook-kontot. Verifiera enhetsinställningar."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Det går inte att ansluta till Facebook. Kontrollera nätverksanslutningen och försök igen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ditt Facebook-lösenord har ändrats. Bekräfta lösenordet genom att öppna Inställningar > Facebook och skriva in ditt namn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-konto har inte konfigurerats på enheten."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ditt konto har inte bekräftats. Logga in på www.facebook.com och följ instruktionerna."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan inte logga in på appar för närvarande. Logga in på www.facebook.com och följ instruktionerna."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du bestämmer – välj vilken info du vill dela med appar."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Logga in"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Skicka"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Dela"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Inte du?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekräfta inloggning"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsätt som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings deleted file mode 100644 index ec117a9a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ என்பதற்குச் சென்று மேலே தெரியும் குறியீட்டை உள்ளிடவும்."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "உங்கள் கணக்குடன் இணைக்க, உங்கள் மொபைல் சாதனத்தில் Facebook பயன்பாட்டைத் திறந்து அறிவிப்புகளைப் பார்க்கவும்."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- அல்லது -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "சரி"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ரத்துசெய்"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "உங்கள் Facebook கணக்கில் மீண்டும் இணைய, இந்தப் பயன்பாட்டில் மீண்டும் உள்நுழையவும்."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "சரி"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "சேவையகம் தற்காலிகமாக பிஸியாக உள்ளது, மீண்டும் முயற்சிக்கவும்."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ரத்துசெய்"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "வெளியேறு"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook மூலம் உள்நுழையப்பட்டுள்ளது"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ இல் உள்நுழைந்துள்ளீர்கள்"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "உள்நுழைவு"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook இல் தொடரவும்"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook மூலம் உள்நுழையவும்"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "வெளியேறு"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook கணக்கிற்கு அணுகல் வழங்கப்படவில்லை. சாதன அமைப்புகளைச் சரிபார்க்கவும்."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook இல் இணைய முடியவில்லை. இணைய இணைப்பைச் சரிபார்த்து, மீண்டும் முயற்சிக்கவும்."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook கடவுச்சொல் மாற்றப்பட்டது. கடவுச்சொல்லை உறுதிசெய்ய, அமைப்புகள் > Facebook க்கு சென்று உங்கள் பெயரைத் தட்டவும்."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "சாதனத்தில் Facebook கணக்கு உள்ளமைக்கப்படவில்லை."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "உங்கள் கணக்கு உறுதிசெய்யப்படவில்லை. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "இப்போது பயன்பாடுகளில் உள்நுழைய முடியாது. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "பயன்பாடுகளில் எந்தத் தகவலைப் பகிர விரும்புகிறீர்கள் என்பதை நீங்கள் கட்டுப்படுத்தலாம்."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "உள்நுழைவு"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "அனுப்பு"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "பகிர்"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "நீங்கள் இல்லையா?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "உள்நுழைவை உறுதிப்படுத்தவும்"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ஆகத் தொடரவும்"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings deleted file mode 100644 index 0d0bbe0e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ లింక్‌ను సందర్శించి, ఎగువ చూపిన కోడ్‌ను నమోదు చేయండి."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "మీ ఖాతాను అనుసంధానించడానికి, మీ మొబైల్ పరికరంలో Facebook అనువర్తనాన్ని తెరిచి, నోటిఫికేషన్‌లను తనిఖీ చేయండి."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- లేదా -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ఒప్పుకుంటున్నాను"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "రద్దు చేయి"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "దయచేసి మీ Facebook ఖాతాను మళ్లీ కనెక్ట్ చేయడానికి ఈ అప్లికేషన్‌కు మళ్లీ లాగిన్ చేయండి."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ఒప్పుకుంటున్నాను"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "సర్వర్ తాత్కాలికంగా బిజీగా ఉంది, దయచేసి మళ్లీ ప్రయత్నించండి."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "రద్దు చేయి"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "లాగ్ అవుట్ చేయి"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ఉపయోగించి లాగిన్ చేసారు"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@గా లాగిన్ చేసారు"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "లాగిన్ చేయి"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebookతో కొనసాగించండి"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebookతో లాగిన్ చేయి"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "లాగ్ అవుట్ చేయి"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ఖాతాకు ప్రాప్యత మంజూరు చేయలేదు. పరికర సెట్టింగ్‌లను సరిచూడండి."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebookకి కనెక్ట్ చేయడం సాధ్యపడలేదు. మీ నెట్‌వర్క్ కనెక్షన్‌ను తనిఖీ చేసి, మళ్లీ ప్రయత్నించండి."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "మీ Facebook పాస్‌వర్డ్ మారింది. మీ పాస్‌వర్డ్‌ను నిర్ధారించడానికి, సెట్టింగ్‌లు > Facebook తెరిచి, మీ పేరు నొక్కండి."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "పరికరంలో Facebook ఖాతా కాన్ఫిగర్ చేయబడలేదు."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "మీ ఖాతా నిర్ధారించబడలేదు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ప్రస్తుతం మీరు అప్లికేషన్‌లకు లాగిన్ చేయలేరు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "మీకు నియంత్రణ ఉంది - మీరు అనువర్తనాలతో భాగస్వామ్యం చేయాలనుకునే సమాచారాన్ని ఎంచుకోండి."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "లాగిన్ చేయండి"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "పంపు"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "భాగస్వామ్యం చేయండి"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "మీరు కాదా?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "లాగిన్‌ను నిర్ధారించండి"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ వలె కొనసాగండి"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings deleted file mode 100644 index 3883ee8f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "ไปที่ %@ และใส่โค้ดที่แสดงด้านบน"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "หากต้องการเชื่อมต่อบัญชีผู้ใช้ของคุณ ให้เปิดแอพ Facebook บนอุปกรณ์มือถือของคุณและตรวจสอบการแจ้งเตือน"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- หรือ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ตกลง"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ยกเลิก"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "โปรดลงชื่อเข้าใช้แอพนี้อีกครั้งเพื่อเชื่อมต่อบัญชีผู้ใช้ Facebook ของคุณใหม่"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ตกลง"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "เซิร์ฟเวอร์ไม่พร้อมให้บริการชั่วคราว โปรดลองใหม่อีกครั้ง"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ยกเลิก"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ออกจากระบบ"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "เข้าสู่ระบบโดยใช้ Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "เข้าสู่ระบบในชื่อ %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "เข้าสู่ระบบ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "ดำเนินการต่อด้วย Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "เข้าสู่ระบบด้วย Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ออกจากระบบ"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "บัญชีผู้ใช้ Facebook ไม่ได้รับอนุญาตให้เข้าถึง ตรวจสอบการตั้งค่าของอุปกรณ์"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "ไม่สามารถเชื่อมต่อกับ Facebook ตรวจสอบการเชื่อมต่อเครือข่ายและลองอีกครั้ง"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "เปลี่ยนรหัสผ่าน Facebook ของคุณแล้ว เพื่อยืนยันรหัสผ่านของคุณ ให้เปิด การตั้งค่า > Facebook แล้วแตะชื่อของคุณ"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "บัญชีผู้ใช้ Facebook ไม่ได้รับการกำหนดค่าบนอุปกรณ์เครื่องนี้"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "บัญชีผู้ใช้ของคุณไม่ได้รับการยืนยัน โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "คุณไม่สามารถเข้าสู่ระบบของแอพได้ในตอนนี้ โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "คุณเป็นฝ่ายควบคุม โปรดเลือกข้อมูลที่คุณต้องการแชร์ด้วยแอพ"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "เข้าสู่ระบบ"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ส่ง"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "แชร์"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "หากไม่ใช่คุณ"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ยืนยันการเข้าสู่ระบบ"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "ดำเนินการต่อในชื่อ %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings deleted file mode 100644 index 51a5328d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ adresini ziyaret edin ve yukarıda görülen kodu girin."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Hesabınızı bağlamak için, mobil cihazınızda Facebook uygulamasını açın ve bildirimlerinizi kontrol edin."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- YA DA -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Tamam"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "İptal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Facebook hesabına yeniden bağlanmak için lütfen bu uygulamaya tekrar giriş yap."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Tamam"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Sunucu geçici olarak meşgul. Lütfen tekrar dene."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "İptal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Çıkış Yap"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ile giriş yapıldı"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ olarak giriş yapıldı"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Giriş yap"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ile Devam Et"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ile giriş yap"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Çıkış yap"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook hesabına erişim izni verilmedi. Cihaz ayarlarını doğrula."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook'a bağlanılamıyor. Ağ bağlantını kontrol edip tekrar dene."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook şifren değiştirildi. Şifreni onaylamak için Ayarlar > Facebook'u aç ve adına dokunun."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook hesabı cihaz üzerinde yapılandırılmadı."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Hesabın onaylanmadı. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Şu an için uygulamalara giriş yapamazsın. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Kontrol sende. Uygulamalarla paylaşmak istediğin bilgileri seç."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Giriş Yap"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Gönder"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Paylaş"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Sen değil misin?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Girişi Onayla"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ olarak devam et"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings deleted file mode 100644 index d0ddbc61..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Truy cập %@ và nhập mã hiển thị ở trên."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Để kết nối tài khoản của bạn, hãy mở ứng dụng Facebook trên thiết bị di động và kiểm tra thông báo."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- HOẶC -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Hủy"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Vui lòng đăng nhập lại vào ứng dụng này để kết nối lại tài khoản Facebook của bạn."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Máy chủ hiện đang bận, vui lòng thử lại sau."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Hủy"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Đăng xuất"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Đã đăng nhập bằng Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Đã đăng nhập với tư cách là"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Đăng nhập"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Tiếp tục với Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Đăng nhập bằng Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Đăng xuất"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Quyền truy cập chưa được cấp cho tài khoản Facebook. Xác minh thiết lập của thiết bị."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Không thể kết nối với Facebook. Vui lòng kiểm tra kết nối mạng của bạn và thử lại."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Mật khẩu Facebook của bạn đã thay đổi. Để xác nhận mật khẩu của bạn, hãy mở Thiết lập > Facebook và nhấn vào tên bạn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Tài khoản Facebook chưa được định cấu hình trên thiết bị."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tài khoản của bạn không được xác nhận. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Bạn không thể đăng nhập vào các ứng dụng lúc này. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Bạn đang có quyền kiểm soát - hãy chọn thông tin bạn muốn chia sẻ với ứng dụng."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Đăng nhập"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Gửi"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Chia sẻ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Không phải bạn?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Xác nhận đăng nhập"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Tiếp tục với tư cách %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings deleted file mode 100644 index 4273dc25..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "请访问 %@ 并输入上方显示的验证码。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "要关联你的帐户,请在移动设备上打开 Facebook 应用,并查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或者 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "确定"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "请再次登录此应用,以便重新连接您的 Facebook 帐户。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "确定"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "服务器暂时繁忙,请重试。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "退出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "已使用 Facebook 登录"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "已以 %@ 身份登录"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登录"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "继续使用 Facebook 登录"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登录"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "退出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "未授予该 Facebook 帐户访问权限。验证设备设置。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "无法连接到 Facebook。检查网络连接并重试。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密码已更改。要确认密码,请打开设置 > Facebook,并轻触您的姓名。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "未在设备上配置 Facebook 帐户。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帐户未确认。请登录 www.facebook.com,并按照提供的说明操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您此时不能登录应用。请登录 www.facebook.com,并按照提供的说明操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "一切任您掌控 — 选择您想通过应用分享的信息。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登录"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "发送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "不是你?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "确认登录"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以%@的身份继续"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings deleted file mode 100644 index 44f853db..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "前往 %@ 並輸入上方的程式碼。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "若要連結您的帳戶,請在您的流動裝置上開啟 Facebook 應用程式並查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "確定"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "請再次登入此應用程式以重新連接您的 Facebook 帳戶。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "確定"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "登出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "使用 Facebook 登入"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "以 %@ 身分登入"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登入"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "繼續使用 Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登入"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "登出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "沒有獲得 Facebook 帳戶的存取授權。確認裝置設定。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "無法與 Facebook 連線。請檢查網絡連線,然後再試一次。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經變更。要確認密碼,請開啟設定 > Facebook,然後點按您的名稱。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook 帳戶尚未在此裝置上設定。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帳戶尚未確認。請登入 www.facebook.com 並依據指示操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您現時無法登入應用程式。請登入 www.facebook.com 並依據指示操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "控制權在您 - 選擇您要與應用程式分享的資訊。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登入"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "傳送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "這不是您?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "確認登入"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以%@的身分繼續"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings deleted file mode 100644 index b97bd4aa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "請前往 %@ 並輸入上方顯示的代碼。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "若要連結帳號,請從行動裝置開啟 Facebook 應用程式,並查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "是"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "請重新登入此應用程式以重新連結您的 Facebook 帳號。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "是"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "登出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "已使用 Facebook 登入"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "以 %@ 身分登入"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登入"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "繼續使用 Facebook 帳號"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登入"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "登出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "尚未取得授權,無法存取 Facebook 帳號。請確認裝置設定。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "無法連線到 Facebook。請檢查網路連線,然後再試一次。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經更改。若要確認您的密碼,請開啟「設定」>「Facebook」,然後點按您的姓名。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "尚未透過裝置設定 Facebook 帳號。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帳號尚未確認。請登入 www.facebook.com,然後按照指示操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您目前無法登入應用程式。請登入 www.facebook.com,然後按照指示操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "您可以全盤掌控!選擇您想和應用程式分享的資訊內容。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登入"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "傳送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "這不是您?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "確認登入"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以 %@ 身分繼續"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAEMManager.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAEMManager.h new file mode 100644 index 00000000..e40489bd --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAEMManager.h @@ -0,0 +1,49 @@ +/* + * Copyright (c) Meta Platforms, Inc. and affiliates. + * All rights reserved. + * + * This source code is licensed under the license found in the + * LICENSE file in the root directory of this source tree. + */ + +#import + +#import + +@protocol FBSDKSwizzling; +@protocol FBSDKAEMReporter; +@protocol FBSDKAutoSetup; + +NS_ASSUME_NONNULL_BEGIN + +/** + Internal type exposed to facilitate transition to Swift. + API Subject to change or removal without warning. Do not use. + + @warning INTERNAL - DO NOT USE + */ +NS_SWIFT_NAME(_AEMManager) +@interface FBSDKAEMManager : NSObject + ++ (instancetype)new NS_UNAVAILABLE; +- (instancetype)init NS_UNAVAILABLE; + +/// The shared instance of AEMManager. +@property (class, nonatomic, readonly, strong) FBSDKAEMManager *shared; + +- (void)configureWithSwizzler:(nonnull Class)swizzler + aemReporter:(nonnull Class)aemReporter + eventLogger:(nonnull id)eventLogger + crashHandler:(nonnull id)crashHandler + featureChecker:(nonnull id)featureChecker + appEventsUtility:(nonnull id)appEventsUtility +NS_SWIFT_NAME(configure(swizzler:reporter:eventLogger:crashHandler:featureChecker:appEventsUtility:)); + +- (void)enableAutoSetup:(BOOL)proxyEnabled; + +- (void)logAutoSetupStatus:(BOOL)optin + source:(NSString *)source; + +@end + +NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h index 7ecffa81..9a4c3549 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h @@ -33,7 +33,7 @@ @protocol FBSDKAppEventDropDetermining; @protocol FBSDKCAPIReporter; @protocol FBSDKAppEventParametersExtracting; - +@protocol FBSDKMACARuleMatching; #if !TARGET_OS_TV @protocol FBSDKEventProcessing; @protocol FBSDKMetadataIndexing; @@ -73,7 +73,9 @@ NS_SWIFT_NAME(_AppEventsConfiguring) appEventsUtility:(id)appEventsUtility internalUtility:(id)internalUtility capiReporter:(id)capiReporter -NS_SWIFT_NAME(configure(gateKeeperManager:appEventsConfigurationProvider:serverConfigurationProvider:graphRequestFactory:featureChecker:primaryDataStore:logger:settings:paymentObserver:timeSpentRecorder:appEventsStateStore:eventDeactivationParameterProcessor:restrictiveDataFilterParameterProcessor:atePublisherFactory:appEventsStateProvider:advertiserIDProvider:userDataStore:appEventsUtility:internalUtility:capiReporter:)); + protectedModeManager:(id)protectedModeManager + macaRuleMatchingManager:(id)macaRuleMatchingManager +NS_SWIFT_NAME(configure(gateKeeperManager:appEventsConfigurationProvider:serverConfigurationProvider:graphRequestFactory:featureChecker:primaryDataStore:logger:settings:paymentObserver:timeSpentRecorder:appEventsStateStore:eventDeactivationParameterProcessor:restrictiveDataFilterParameterProcessor:atePublisherFactory:appEventsStateProvider:advertiserIDProvider:userDataStore:appEventsUtility:internalUtility:capiReporter:protectedModeManager:macaRuleMatchingManager:)); #if !TARGET_OS_TV diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h index 3ba4f7b8..36f32f40 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h @@ -24,6 +24,28 @@ NS_SWIFT_NAME(_AppEventsDeviceInfo) @property (nullable, nonatomic, readonly) id settings; +// Ephemeral data, may change during the lifetime of an app. We collect them in different +// 'group' frequencies - group1 may gets collected once every 30 minutes. + +// group1 +@property (nonatomic) NSString *carrierName; +@property (nonatomic) NSString *timeZoneAbbrev; +@property (nonatomic) unsigned long long remainingDiskSpaceGB; +@property (nonatomic) NSString *timeZoneName; + +// Persistent data, but we maintain it to make rebuilding the device info as fast as possible. +@property (nonatomic) NSString *bundleIdentifier; +@property (nonatomic) NSString *longVersion; +@property (nonatomic) NSString *shortVersion; +@property (nonatomic) NSString *sysVersion; +@property (nonatomic) NSString *machine; +@property (nonatomic) NSString *language; +@property (nonatomic) unsigned long long totalDiskSpaceGB; +@property (nonatomic) unsigned long long coreCount; +@property (nonatomic) CGFloat width; +@property (nonatomic) CGFloat height; +@property (nonatomic) CGFloat density; + #if !DEBUG - (instancetype)init NS_UNAVAILABLE; + (instancetype)new NS_UNAVAILABLE; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h index 8dad6f89..9f2408cb 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h @@ -24,7 +24,7 @@ NS_SWIFT_NAME(_AppEventsParameterProcessing) - (void)enable; - (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters - eventName:(FBSDKAppEventName)eventName; + eventName:(nullable FBSDKAppEventName)eventName; @end diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h index 7997c1d6..777a1b41 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h @@ -30,6 +30,7 @@ NS_SWIFT_NAME(_AppEventsUtilityProtocol) loggingOverrideAppID:(nullable NSString *)loggingOverrideAppID; - (NSString *)flushReasonToString:(FBSDKAppEventsFlushReason)flushReason; - (void)saveCampaignIDs:(NSURL *)url; +- (nullable NSString *)getCampaignIDs; @end diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAutoSetup.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAutoSetup.h new file mode 100644 index 00000000..3b0d60b7 --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAutoSetup.h @@ -0,0 +1,44 @@ +/* + * Copyright (c) Meta Platforms, Inc. and affiliates. + * All rights reserved. + * + * This source code is licensed under the license found in the + * LICENSE file in the root directory of this source tree. + */ + +#import + +@protocol FBSDKAEMReporter; +@protocol FBSDKAppEventsUtility; +@protocol FBSDKCrashHandler; +@protocol FBSDKEventLogging; +@protocol FBSDKFeatureDisabling; +@protocol FBSDKSwizzling; + +NS_ASSUME_NONNULL_BEGIN + +/** + Internal Type exposed to facilitate transition to Swift. + API Subject to change or removal without warning. Do not use. + + @warning INTERNAL - DO NOT USE + */ +NS_SWIFT_NAME(_AutoSetup) +@protocol FBSDKAutoSetup + +- (void)configureWithSwizzler:(nonnull Class)swizzler + aemReporter:(nonnull Class)aemReporter + eventLogger:(nonnull id)eventLogger + crashHandler:(nonnull id)crashHandler + featureChecker:(nonnull id)featureChecker + appEventsUtility:(nonnull id)appEventsUtility +NS_SWIFT_NAME(configure(swizzler:reporter:eventLogger:crashHandler:featureChecker:appEventsUtility:)); + +- (void)enableAutoSetup:(BOOL)proxyEnabled; + +- (void)logAutoSetupStatus:(BOOL)optin + source:(NSString *)source; + +@end + +NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h index c6d80fdf..2e763b48 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBSDKCOREKIT_SWIFT_H #define FBSDKCOREKIT_SWIFT_H #pragma clang diagnostic push @@ -23,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -183,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -193,11 +204,34 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import AuthenticationServices; +@import CoreFoundation; @import CoreGraphics; @import FBAEMKit; @import Foundation; @@ -209,6 +243,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -216,6 +251,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -224,8 +260,10 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; @class NSNumber; +@class NSURL; /// Internal Type exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. @@ -237,6 +275,7 @@ SWIFT_PROTOCOL_NAMED("_AEMReporterProtocol") + (void)setConversionFilteringEnabled:(BOOL)isEnabled; + (void)setCatalogMatchingEnabled:(BOOL)isEnabled; + (void)setAdvertiserRuleMatchInServerEnabled:(BOOL)isEnabled; ++ (void)handle:(NSURL * _Nullable)url; @end @@ -245,7 +284,6 @@ SWIFT_PROTOCOL_NAMED("_AEMReporterProtocol") -@class NSURL; @protocol FBSDKAppLinkTarget; /// Contains App Link metadata relevant for navigation on this device @@ -496,7 +534,7 @@ SWIFT_PROTOCOL_NAMED("CAPIReporter") /// Internal type exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. /// @warning INTERNAL - DO NOT USE -SWIFT_CLASS("_TtC12FBSDKCoreKit17CoreUIApplication") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_CLASS("_TtC12FBSDKCoreKit17CoreUIApplication") @interface CoreUIApplication : NSObject SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull shared;) + (id _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; @@ -523,7 +561,7 @@ enum FBSDKProfilePictureMode : NSUInteger; @class NSCoder; /// A view to display a profile picture. -SWIFT_CLASS_NAMED("FBProfilePictureView") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_CLASS_NAMED("FBProfilePictureView") @interface FBSDKProfilePictureView : UIView /// The mode for the receiver to determine the aspect ratio of the source image. @property (nonatomic) enum FBSDKProfilePictureMode pictureMode; @@ -572,7 +610,14 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKTransfo + (FBSDKTransformerGraphRequestFactory * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (void)configureWithDatasetID:(NSString * _Nonnull)datasetID url:(NSString * _Nonnull)url accessKey:(NSString * _Nonnull)accessKey; -- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters; +- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters userAgent:(NSString * _Nonnull)userAgent; +@end + + +SWIFT_PROTOCOL_NAMED("MACARuleMatching") +@protocol FBSDKMACARuleMatching +- (void)enable; +- (NSDictionary * _Nullable)processParameters:(NSDictionary * _Nullable)params event:(NSString * _Nullable)event SWIFT_WARN_UNUSED_RESULT; @end @class NSDate; @@ -954,10 +999,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKSetting /// @warning INTERNAL - DO NOT USE @property (nonatomic, copy) NSString * _Nullable userAgentSuffix; /// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. @property (nonatomic) BOOL advertiserTrackingEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.\n "); /// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. @property (nonatomic) BOOL isAdvertiserTrackingEnabled; /// Internal property exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. @@ -1339,6 +1382,9 @@ SWIFT_CLASS_NAMED("_WebViewFactory") - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif @@ -1346,7 +1392,7 @@ SWIFT_CLASS_NAMED("_WebViewFactory") #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBSDKCOREKIT_SWIFT_H #define FBSDKCOREKIT_SWIFT_H #pragma clang diagnostic push @@ -1369,11 +1415,20 @@ SWIFT_CLASS_NAMED("_WebViewFactory") # 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 @@ -1529,9 +1584,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -1539,11 +1596,34 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif @import AuthenticationServices; +@import CoreFoundation; @import CoreGraphics; @import FBAEMKit; @import Foundation; @@ -1555,6 +1635,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -1562,6 +1643,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -1570,8 +1652,10 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; @class NSNumber; +@class NSURL; /// Internal Type exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. @@ -1583,6 +1667,7 @@ SWIFT_PROTOCOL_NAMED("_AEMReporterProtocol") + (void)setConversionFilteringEnabled:(BOOL)isEnabled; + (void)setCatalogMatchingEnabled:(BOOL)isEnabled; + (void)setAdvertiserRuleMatchInServerEnabled:(BOOL)isEnabled; ++ (void)handle:(NSURL * _Nullable)url; @end @@ -1591,7 +1676,6 @@ SWIFT_PROTOCOL_NAMED("_AEMReporterProtocol") -@class NSURL; @protocol FBSDKAppLinkTarget; /// Contains App Link metadata relevant for navigation on this device @@ -1842,7 +1926,7 @@ SWIFT_PROTOCOL_NAMED("CAPIReporter") /// Internal type exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. /// @warning INTERNAL - DO NOT USE -SWIFT_CLASS("_TtC12FBSDKCoreKit17CoreUIApplication") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_CLASS("_TtC12FBSDKCoreKit17CoreUIApplication") @interface CoreUIApplication : NSObject SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull shared;) + (id _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; @@ -1869,7 +1953,7 @@ enum FBSDKProfilePictureMode : NSUInteger; @class NSCoder; /// A view to display a profile picture. -SWIFT_CLASS_NAMED("FBProfilePictureView") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_CLASS_NAMED("FBProfilePictureView") @interface FBSDKProfilePictureView : UIView /// The mode for the receiver to determine the aspect ratio of the source image. @property (nonatomic) enum FBSDKProfilePictureMode pictureMode; @@ -1918,7 +2002,14 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKTransfo + (FBSDKTransformerGraphRequestFactory * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; - (void)configureWithDatasetID:(NSString * _Nonnull)datasetID url:(NSString * _Nonnull)url accessKey:(NSString * _Nonnull)accessKey; -- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters; +- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters userAgent:(NSString * _Nonnull)userAgent; +@end + + +SWIFT_PROTOCOL_NAMED("MACARuleMatching") +@protocol FBSDKMACARuleMatching +- (void)enable; +- (NSDictionary * _Nullable)processParameters:(NSDictionary * _Nullable)params event:(NSString * _Nullable)event SWIFT_WARN_UNUSED_RESULT; @end @class NSDate; @@ -2300,10 +2391,8 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKSetting /// @warning INTERNAL - DO NOT USE @property (nonatomic, copy) NSString * _Nullable userAgentSuffix; /// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. @property (nonatomic) BOOL advertiserTrackingEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.\n "); /// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. @property (nonatomic) BOOL isAdvertiserTrackingEnabled; /// Internal property exposed to facilitate transition to Swift. /// API Subject to change or removal without warning. Do not use. @@ -2685,10 +2774,15 @@ SWIFT_CLASS_NAMED("_WebViewFactory") - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif #pragma clang diagnostic pop #endif +#else +#error unsupported Swift architecture #endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h index 23c96145..ae840ce9 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h @@ -13,6 +13,7 @@ #import #import #import +#import #import #import #import @@ -65,6 +66,7 @@ #import #import #import +#import #import #import #import @@ -84,9 +86,7 @@ #import #import #import -#import #import -#import #import #import #import diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h index 56befda2..f8b78981 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h @@ -6,5 +6,5 @@ * LICENSE file in the root directory of this source tree. */ -#define FBSDK_VERSION_STRING @"15.1.0" -#define FBSDK_DEFAULT_GRAPH_API_VERSION @"v15.0" +#define FBSDK_VERSION_STRING @"16.1.3" +#define FBSDK_DEFAULT_GRAPH_API_VERSION @"v16.0" diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceDialogView.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceDialogView.h deleted file mode 100644 index e290e584..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceDialogView.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeviceDialogViewDelegate) -@protocol FBSDKDeviceDialogViewDelegate; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -NS_SWIFT_NAME(FBDeviceDialogView) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@interface FBSDKDeviceDialogView : UIView - -@property (nonatomic, weak) id delegate; -@property (nonatomic, copy) NSString *confirmationCode; - -// override point for subclasses. -- (void)buildView; - -@end - -NS_SWIFT_NAME(DeviceDialogViewDelegate) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@protocol FBSDKDeviceDialogViewDelegate - -- (void)deviceDialogViewDidCancel:(FBSDKDeviceDialogView *)deviceDialogView; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h index ec650cfa..a2ce0e4d 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h @@ -19,6 +19,24 @@ NS_SWIFT_NAME(_DeviceInformationProviding) @property (nonatomic, readonly) NSString *storageKey; @property (nullable, nonatomic, readonly) NSString *encodedDeviceInfo; +// group1 +@property (nullable, nonatomic) NSString *carrierName; +@property (nullable, nonatomic) NSString *timeZoneAbbrev; +@property (nonatomic) unsigned long long remainingDiskSpaceGB; +@property (nullable, nonatomic) NSString *timeZoneName; + +// Persistent data, but we maintain it to make rebuilding the device info as fast as possible. +@property (nullable, nonatomic) NSString *bundleIdentifier; +@property (nullable, nonatomic) NSString *longVersion; +@property (nullable, nonatomic) NSString *shortVersion; +@property (nullable, nonatomic) NSString *sysVersion; +@property (nullable, nonatomic) NSString *machine; +@property (nullable, nonatomic) NSString *language; +@property (nonatomic) unsigned long long totalDiskSpaceGB; +@property (nonatomic) unsigned long long coreCount; +@property (nonatomic) CGFloat width; +@property (nonatomic) CGFloat height; +@property (nonatomic) CGFloat density; @end diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceViewControllerBase.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceViewControllerBase.h deleted file mode 100644 index 9a08f5af..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceViewControllerBase.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if TARGET_OS_TV - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/* - An internal base class for device related flows. - - This is an internal API that should not be used directly and is subject to change. - */ -NS_SWIFT_NAME(FBDeviceViewControllerBase) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@interface FBSDKDeviceViewControllerBase : UIViewController -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeature.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeature.h index 3eabc556..4be2fe0a 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeature.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeature.h @@ -46,6 +46,8 @@ typedef NS_ENUM(NSUInteger, FBSDKFeature) { FBSDKFeatureSuggestedEvents = 0x01010401, FBSDKFeatureIntelligentIntegrity = 0x01010402, FBSDKFeatureModelRequest = 0x01010403, + FBSDKFeatureProtectedMode = 0x01010404, + FBSDKFeatureMACARuleMatching = 0x01010405, FBSDKFeatureEventDeactivation = 0x01010500, FBSDKFeatureSKAdNetwork = 0x01010600, FBSDKFeatureSKAdNetworkConversionValue = 0x01010601, @@ -54,6 +56,8 @@ typedef NS_ENUM(NSUInteger, FBSDKFeature) { FBSDKFeatureAEMConversionFiltering = 0x01010801, FBSDKFeatureAEMCatalogMatching = 0x01010802, FBSDKFeatureAEMAdvertiserRuleMatchInServer = 0x01010803, + FBSDKFeatureAEMAutoSetup = 0x01010804, + FBSDKFeatureAEMAutoSetupProxy = 0x01010805, FBSDKFeatureAppEventsCloudbridge = 0x01010900, /// Instrument FBSDKFeatureInstrument = 0x01020000, diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h index e352b82e..1fc9c008 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h @@ -30,7 +30,7 @@ NS_SWIFT_NAME(_RestrictiveDataFilterManager) - (void)enable; - (void)processEvents:(NSArray *> *)events; - (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters - eventName:(FBSDKAppEventName)eventName; + eventName:(nullable FBSDKAppEventName)eventName; @end NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h index 41d52df5..54c40506 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h @@ -107,6 +107,7 @@ NS_SWIFT_NAME(_ServerConfiguration) restrictiveParams:(nullable NSDictionary *)restrictiveParams AAMRules:(nullable NSDictionary *)AAMRules suggestedEventsSetting:(nullable NSDictionary *)suggestedEventsSetting + protectedModeRules:(nullable NSDictionary *)protectedModeRules NS_DESIGNATED_INITIALIZER; @property (nonatomic, readonly, getter = isAdvertisingIDEnabled, assign) BOOL advertisingIDEnabled; @@ -132,6 +133,7 @@ NS_SWIFT_NAME(_ServerConfiguration) @property (nullable, nonatomic, readonly, copy) NSDictionary *restrictiveParams; @property (nullable, nonatomic, readonly, copy) NSDictionary *AAMRules; @property (nullable, nonatomic, readonly, copy) NSDictionary *suggestedEventsSetting; +@property (nullable, nonatomic, readonly, copy) NSDictionary *protectedModeRules; @property (nonatomic, readonly) NSInteger version; - (nullable FBSDKDialogConfiguration *)dialogConfigurationForDialogName:(NSString *)dialogName; diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Info.plist b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Info.plist index 8e1b86a5..101d2237 100644 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Info.plist and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Info.plist differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.abi.json b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 00000000..691d9251 --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,68791 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMNetworker", + "printedName": "AEMNetworker", + "children": [ + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerC17startGraphRequest04withE4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworker", + "printedName": "FBSDKCoreKit.AEMNetworker", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker(im)init", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventsStateFactory", + "printedName": "AppEventsStateFactory", + "children": [ + { + "kind": "Function", + "name": "createState", + "printedName": "createState(tokenString:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsState", + "printedName": "FBSDKCoreKit._AppEventsState", + "usr": "c:objc(cs)FBSDKAppEventsState" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC06createE011tokenString5appIDSo08FBSDKAppdE0CSS_SStF", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryC06createE011tokenString5appIDSo08FBSDKAppdE0CSS_SStF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createStateWithToken:appID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventsStateFactory", + "printedName": "FBSDKCoreKit.AppEventsStateFactory", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLink", + "printedName": "AppLink", + "children": [ + { + "kind": "Var", + "name": "sourceURL", + "printedName": "sourceURL", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)sourceURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL10Foundation0F0VSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "sourceURL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)sourceURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL10Foundation0F0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "sourceURL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targets", + "printedName": "targets", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)targets", + "mangledName": "$s12FBSDKCoreKit7AppLinkC7targetsSaySo08FBSDKAppD6Target_pGvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "targets", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)targets", + "mangledName": "$s12FBSDKCoreKit7AppLinkC7targetsSaySo08FBSDKAppD6Target_pGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "targets", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webURL", + "printedName": "webURL", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)webURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC6webURL10Foundation0F0VSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "webURL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)webURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC6webURL10Foundation0F0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "webURL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isBackToReferrer", + "printedName": "isBackToReferrer", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)backToReferrer", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "backToReferrer", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)isBackToReferrer", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "isBackToReferrer", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)setBackToReferrer:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvM", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sourceURL:targets:webURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)initWithSourceURL:targets:webURL:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL7targets03webF0AC10Foundation0F0VSg_SaySo08FBSDKAppD6Target_pGAJtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithSourceURL:targets:webURL:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "appLink", + "printedName": "appLink(sourceURL:targets:webURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkProtocol", + "printedName": "FBSDKCoreKit._AppLinkProtocol", + "usr": "c:objc(pl)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(cm)appLinkWithSourceURL:targets:webURL:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC03appD09sourceURL7targets03webG0So08FBSDKAppD0_p10Foundation0G0VSg_SaySo0jD6Target_pGALtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "appLinkWithSourceURL:targets:webURL:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sourceURL:targets:webURL:isBackToReferrer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)initWithSourceURL:targets:webURL:isBackToReferrer:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL7targets03webF016isBackToReferrerAC10Foundation0F0VSg_SaySo08FBSDKAppD6Target_pGAKSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithSourceURL:targets:webURL:isBackToReferrer:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)init", + "mangledName": "$s12FBSDKCoreKit7AppLinkCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink", + "mangledName": "$s12FBSDKCoreKit7AppLinkC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLink", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "AppLinkFactory", + "printedName": "AppLinkFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLink", + "printedName": "createAppLink(sourceURL:targets:webURL:isBackToReferrer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkProtocol", + "printedName": "FBSDKCoreKit._AppLinkProtocol", + "usr": "c:objc(pl)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC06createcD09sourceURL7targets03webH016isBackToReferrerSo08FBSDKAppD0_p10Foundation0H0VSg_SaySo0oD6Target_pGAMSbtF", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryC06createcD09sourceURL7targets03webH016isBackToReferrerSo08FBSDKAppD0_p10Foundation0H0VSg_SaySo0oD6Target_pGAMSbtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkWithSourceURL:targets:webURL:isBackToReferrer:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkFactory", + "printedName": "FBSDKCoreKit.AppLinkFactory", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkNavigation", + "printedName": "AppLinkNavigation", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "NonObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultResolver", + "printedName": "defaultResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cpy)defaultResolver", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "defaultResolver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)defaultResolver", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)setDefaultResolver:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extras", + "printedName": "extras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)extras", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC6extrasSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)extras", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC6extrasSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkData", + "printedName": "appLinkData", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)appLinkData", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD4DataSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)appLinkData", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD4DataSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLink", + "printedName": "appLink", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)appLink", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD0AA0cD0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)appLink", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD0AA0cD0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "navigationType", + "printedName": "navigationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)navigationType", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationTypeSo08FBSDKAppdeG0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)navigationType", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationTypeSo08FBSDKAppdeG0Vvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLink:extras:appLinkData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)initWithAppLink:extras:appLinkData:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD06extras0fD4DataAcA0cD0C_SDySSypGAItcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppLink:extras:appLinkData:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLink:extras:appLinkData:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)initWithAppLink:extras:appLinkData:settings:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD06extras0fD4Data8settingsAcA0cD0C_SDySSypGAjA16SettingsProtocol_ptcfc", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "initWithAppLink:extras:appLinkData:settings:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "navigation", + "printedName": "navigation(with:extras:appLinkData:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigationWithAppLink:extras:appLinkData:settings:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC10navigation4with6extras03appD4Data8settingsAcA0cD0C_SDySSypGAkA16SettingsProtocol_ptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "navigationWithAppLink:extras:appLinkData:settings:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "callbackAppLinkData", + "printedName": "callbackAppLinkData(forApp:url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Swift.String]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + }, + { + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)callbackAppLinkDataForAppWithName:url:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC08callbackcD4Data03forC03urlSDySSSDyS2SGGSS_SStFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "callbackAppLinkDataForAppWithName:url:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC8navigateSo08FBSDKAppdE4TypeVyKF", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigateSo08FBSDKAppdE4TypeVyKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resolveAppLink", + "printedName": "resolveAppLink(_:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)resolveAppLink:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC07resolvecD0_7handlery10Foundation3URLV_yAA0cD0CSg_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "resolveAppLink:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resolveAppLink", + "printedName": "resolveAppLink(_:resolver:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)resolveAppLink:resolver:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC07resolvecD0_8resolver7handlery10Foundation3URLV_So08FBSDKAppD9Resolving_pyAA0cD0CSg_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "resolveAppLink:resolver:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC8navigate2toSo08FBSDKAppdE4TypeVAA0cD0C_tKFZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2toSo08FBSDKAppdE4TypeVAA0cD0C_tKFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigationType", + "printedName": "navigationType(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigationTypeForLink:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationType3forSo08FBSDKAppdeG0VAA0cD0C_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigationTypeForLink:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigateToURL:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2to7handlery10Foundation3URLV_ySo08FBSDKAppdE4TypeV_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigateToURL:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:resolver:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigateToURL:resolver:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2to8resolver7handlery10Foundation3URLV_So08FBSDKAppD9Resolving_pySo0ldE4TypeV_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigateToURL:resolver:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appLinkURL", + "printedName": "appLinkURL(targetURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC03appD3URL06targetG010Foundation0G0VSgAH_tKF", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD3URL06targetG010Foundation0G0VSgAH_tKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postNavigateEventNotification", + "printedName": "postNavigateEventNotification(targetURL:error:navigationType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)postNavigateEventNotificationWithTargetURL:error:navigationType:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC29postNavigateEventNotification9targetURL5error14navigationTypey10Foundation0K0VSg_s5Error_pSgSo08FBSDKAppdeN0VtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigationType", + "printedName": "navigationType(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)navigationTypeFor:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationType3forSo08FBSDKAppdeG0VSaySo0iD6Target_pG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)init", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkEventPoster", + "printedName": "appLinkEventPoster", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkResolver", + "printedName": "appLinkResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:urlOpener:appLinkEventPoster:appLinkResolver:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settings9urlOpener03appD11EventPoster0kD8ResolverAeA16SettingsProtocol_p_So22FBSDKInternalURLOpener_pSo08FBSDKAppdL7Posting_pSo0sD9Resolving_ptcfc", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settings9urlOpener03appD11EventPoster0kD8ResolverAeA16SettingsProtocol_p_So22FBSDKInternalURLOpener_pSo08FBSDKAppdL7Posting_pSo0sD9Resolving_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkNavigation", + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkResolver", + "printedName": "AppLinkResolver", + "children": [ + { + "kind": "Var", + "name": "cachedAppLinks", + "printedName": "cachedAppLinks", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(py)cachedAppLinks", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)cachedAppLinks", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)setCachedAppLinks:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "appLink", + "printedName": "appLink(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)appLinkFromURL:handler:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC03appD04from7handlery10Foundation3URLV_yAA0cD0CSg_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "appLinkFromURL:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appLinks", + "printedName": "appLinks(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Foundation.URL : FBSDKCoreKit.AppLink], Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([Foundation.URL : FBSDKCoreKit.AppLink], Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Foundation.URL : FBSDKCoreKit.AppLink]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)appLinksFrom:handler:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC8appLinks4from7handlerySay10Foundation3URLVG_ySDyAiA0cD0CG_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAppLink", + "printedName": "buildAppLink(for:result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)buildAppLinkFor:result:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC05buildcD03for6resultAA0cD0C10Foundation3URLV_SDySSSDySSypGGtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolver", + "printedName": "FBSDKCoreKit.AppLinkResolver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)init", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "requestBuilder", + "printedName": "requestBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "clientTokenProvider", + "printedName": "clientTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(requestBuilder:clientTokenProvider:accessTokenProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + }, + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilder19clientTokenProvider06accesskL0AESo08FBSDKAppdE15RequestBuilding_p_So011FBSDKClientK9Providing_pSo011FBSDKAccesskR0_pXptcfc", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilder19clientTokenProvider06accesskL0AESo08FBSDKAppdE15RequestBuilding_p_So011FBSDKClientK9Providing_pSo011FBSDKAccesskR0_pXptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkResolver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkResolverRequestBuilder", + "printedName": "AppLinkResolverRequestBuilder", + "children": [ + { + "kind": "Var", + "name": "userInterfaceIdiom", + "printedName": "userInterfaceIdiom", + "children": [ + { + "kind": "TypeNominal", + "name": "UIUserInterfaceIdiom", + "printedName": "UIKit.UIUserInterfaceIdiom", + "usr": "c:@E@UIUserInterfaceIdiom" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiom33_D2EA324685EEF2BCFBEFEB3B7F7BA944LLSo06UIUseriJ0Vvp", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiom33_D2EA324685EEF2BCFBEFEB3B7F7BA944LLSo06UIUseriJ0Vvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userInterfaceIdiom:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolverRequestBuilder", + "printedName": "FBSDKCoreKit.AppLinkResolverRequestBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder" + }, + { + "kind": "TypeNominal", + "name": "UIUserInterfaceIdiom", + "printedName": "UIKit.UIUserInterfaceIdiom", + "hasDefaultArg": true, + "usr": "c:@E@UIUserInterfaceIdiom" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiomACSo06UIUseriJ0V_tcfc", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiomACSo06UIUseriJ0V_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "request", + "printedName": "request(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestProtocol", + "printedName": "FBSDKCoreKit.GraphRequestProtocol", + "usr": "c:objc(pl)FBSDKGraphRequest" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)requestForURLs:", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC7request3forSo010FBSDKGraphF0_pSay10Foundation3URLVG_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requestForURLs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getIdiomSpecificField", + "printedName": "getIdiomSpecificField()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)getIdiomSpecificField", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC21getIdiomSpecificFieldSSSgyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "getIdiomSpecificField", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolverRequestBuilder", + "printedName": "FBSDKCoreKit.AppLinkResolverRequestBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)init", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkTarget", + "printedName": "AppLinkTarget", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)URL", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10Foundation3URLVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "URL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)URL", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10Foundation3URLVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "URL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appStoreId", + "printedName": "appStoreId", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)appStoreId", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC10appStoreIdSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appStoreId", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)appStoreId", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC10appStoreIdSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "appStoreId", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appName", + "printedName": "appName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)appName", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC7appNameSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appName", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)appName", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC7appNameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "appName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)initWithURL:appStoreId:appName:", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10appStoreId0G4NameAC10Foundation3URLVSg_SSSgSStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithURL:appStoreId:appName:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "appLinkTargetWithURL", + "printedName": "appLinkTargetWithURL(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(cm)appLinkTargetWithURL:appStoreId:appName:", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC03appdE7WithURL3url0F7StoreId0F4NameAC10Foundation0H0VSg_SSSgSStFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "appLinkTargetWithURL:appStoreId:appName:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)init", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkTarget", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkTargetFactory", + "printedName": "AppLinkTargetFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLinkTarget", + "printedName": "createAppLinkTarget(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC06createcdE03url10appStoreId0I4NameSo08FBSDKAppdE0_p10Foundation3URLVSg_SSSgSStF", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryC06createcdE03url10appStoreId0I4NameSo08FBSDKAppdE0_p10Foundation3URLVSg_SSSgSStF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkTargetWithURL:appStoreId:appName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetFactory", + "printedName": "FBSDKCoreKit.AppLinkTargetFactory", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkURLFactory", + "printedName": "AppLinkURLFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLinkURL", + "printedName": "createAppLinkURL(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLProtocol", + "printedName": "FBSDKCoreKit._AppLinkURLProtocol", + "usr": "c:objc(pl)FBSDKAppLinkURL" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory(im)createAppLinkURLWithURL:", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryC06createcD3URL4withSo08FBSDKAppdG0_p10Foundation0G0V_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkURLWithURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkURLFactory", + "printedName": "FBSDKCoreKit.AppLinkURLFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory(im)init", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ApplicationDelegate", + "printedName": "ApplicationDelegate", + "children": [ + { + "kind": "Var", + "name": "applicationObservers", + "printedName": "applicationObservers", + "children": [ + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)applicationObservers", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationObservers", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setApplicationObservers:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "components", + "printedName": "components", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvp", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvg", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurator", + "printedName": "configurator", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvp", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvg", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAppLaunched", + "printedName": "isAppLaunched", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)isAppLaunched", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)isAppLaunched", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setIsAppLaunched:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "applicationState", + "printedName": "applicationState", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)applicationState", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationState", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setApplicationState:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0VvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(cpy)sharedInstance", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "sharedInstance", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(cm)sharedInstance", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)init", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(components:configurator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + }, + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + }, + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10components12configuratorAcA04CoreB10ComponentsC_AA0gB11Configuring_ptcfc", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10components12configuratorAcA04CoreB10ComponentsC_AA0gB11Configuring_ptcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "initializeSDK", + "printedName": "initializeSDK()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)initializeSDK", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13initializeSDKyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initializeSDK", + "printedName": "initializeSDK(launchOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)initializeSDKWithLaunchOptions:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13initializeSDK13launchOptionsySDySo019UIApplicationLaunchH3KeyaypGSg_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:continue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "NSUserActivity", + "printedName": "Foundation.NSUserActivity", + "usr": "c:objc(cs)NSUserActivity" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:continueUserActivity:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_8continueSbSo13UIApplicationC_So14NSUserActivityCtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:continueUserActivity:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.OpenURLOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenURLOptionsKey", + "printedName": "UIKit.UIApplication.OpenURLOptionsKey", + "usr": "c:@T@UIApplicationOpenURLOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:openURL:options:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:options:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_4open06sourceC010annotationSbSo13UIApplicationC_10Foundation3URLVSSSgypSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:didFinishLaunchingWithOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:didFinishLaunchingWithOptions:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_29didFinishLaunchingWithOptionsSbSo13UIApplicationC_SDySo0k6LaunchJ3KeyaypGSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC29applicationDidEnterBackgroundyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Notification?", + "children": [ + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationDidBecomeActive:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC26applicationDidBecomeActiveyy10Foundation12NotificationVSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationWillResignActive", + "printedName": "applicationWillResignActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationWillResignActive:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC27applicationWillResignActiveyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addObserver", + "printedName": "addObserver(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)addObserver:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11addObserveryySo25FBSDKApplicationObserving_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeObserver", + "printedName": "removeObserver(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)removeObserver:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC14removeObserveryySo25FBSDKApplicationObserving_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logSDKInitialize", + "printedName": "logSDKInitialize()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)logSDKInitialize", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16logSDKInitializeyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKApplicationDelegate", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "AuthenticationServices", + "printedName": "AuthenticationServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationSessionProtocol", + "printedName": "AuthenticationSessionProtocol", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:callbackURLScheme:completionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP3url17callbackURLScheme17completionHandlerx10Foundation3URLV_SSSgyAISg_s5Error_pSgtctcfc", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP3url17callbackURLScheme17completionHandlerx10Foundation3URLV_SSSgyAISg_s5Error_pSgtctcfc", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP5startSbyF", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP5startSbyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP6cancelyyF", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP6cancelyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "presentationContextProvider", + "printedName": "presentationContextProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvp", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "intro_iOS": "13.0", + "declAttributes": [ + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvg", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvs", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvM", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "intro_iOS": "13.0", + "declAttributes": [ + "Available" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationSessionState", + "printedName": "AuthenticationSessionState", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO4noneyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO4noneyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "started", + "printedName": "started", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO7startedyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO7startedyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "showAlert", + "printedName": "showAlert", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO9showAlertyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9showAlertyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "showWebBrowser", + "printedName": "showWebBrowser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO14showWebBrowseryA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO14showWebBrowseryA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "canceledBySystem", + "printedName": "canceledBySystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO16canceledBySystemyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO16canceledBySystemyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26AuthenticationSessionStateO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenClaims", + "printedName": "AuthenticationTokenClaims", + "children": [ + { + "kind": "Var", + "name": "jti", + "printedName": "jti", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iss", + "printedName": "iss", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aud", + "printedName": "aud", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exp", + "printedName": "exp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iat", + "printedName": "iat", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sub", + "printedName": "sub", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "givenName", + "printedName": "givenName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "familyName", + "printedName": "familyName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "picture", + "printedName": "picture", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userFriends", + "printedName": "userFriends", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvp", + "moduleName": "FBSDKCoreKit", + "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userBirthday", + "printedName": "userBirthday", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userAgeRange", + "printedName": "userAgeRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userHometown", + "printedName": "userHometown", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userLocation", + "printedName": "userLocation", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userGender", + "printedName": "userGender", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userLink", + "printedName": "userLink", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(encodedClaims:nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "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@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims(im)initWithEncodedClaims:nonce:", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC07encodedE05nonceACSgSS_SStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEncodedClaims:nonce:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jti:iss:aud:nonce:exp:iat:sub:name:givenName:middleName:familyName:email:picture:userFriends:userBirthday:userAgeRange:userHometown:userLocation:userGender:userLink:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "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 : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "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" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3jti3iss3aud5nonce3exp3iat3sub4name9givenName06middleO006familyO05email7picture11userFriends0T8Birthday0T8AgeRange0T8Hometown0T8Location0T6Gender0T4LinkACSS_S3SS2dS2SSgA5XSaySSGSgAXSDySSSo8NSNumberCGSgSDyS2SGSgA4_A2Xtcfc", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jti3iss3aud5nonce3exp3iat3sub4name9givenName06middleO006familyO05email7picture11userFriends0T8Birthday0T8AgeRange0T8Hometown0T8Location0T6Gender0T4LinkACSS_S3SS2dS2SSgA5XSaySSGSgAXSDySSSo8NSNumberCGSgSDyS2SGSgA4_A2Xtcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims(im)init", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAeA16SettingsProtocol_p_tcfc", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAeA16SettingsProtocol_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAuthenticationTokenClaims", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "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": "BackgroundEventLogger", + "printedName": "BackgroundEventLogger", + "children": [ + { + "kind": "Var", + "name": "isNewBackgroundRefresh", + "printedName": "isNewBackgroundRefresh", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvp", + "moduleName": "FBSDKCoreKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logBackgroundRefreshStatus", + "printedName": "logBackgroundRefreshStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBackgroundRefreshStatus", + "printedName": "UIKit.UIBackgroundRefreshStatus", + "usr": "c:@E@UIBackgroundRefreshStatus" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "moduleName": "FBSDKCoreKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogger", + "printedName": "FBSDKCoreKit.BackgroundEventLogger", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerVACycfc", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerVACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(infoDictionaryProvider:eventLogger:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProvider05eventE0AESo09FBSDKInfoI9Providing_p_So17FBSDKEventLogging_ptcfc", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProvider05eventE0AESo09FBSDKInfoI9Providing_p_So17FBSDKEventLogging_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BackgroundEventLogging", + "printedName": "BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "BackgroundEventLogging", + "printedName": "BackgroundEventLogging", + "children": [ + { + "kind": "Function", + "name": "logBackgroundRefreshStatus", + "printedName": "logBackgroundRefreshStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBackgroundRefreshStatus", + "printedName": "UIKit.UIBackgroundRefreshStatus", + "usr": "c:@E@UIBackgroundRefreshStatus" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BackgroundEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BridgeAPIResponseCreating", + "printedName": "BridgeAPIResponseCreating", + "children": [ + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:responseURL:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponseCancelled", + "printedName": "createResponseCancelled(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "CAPIReporter", + "printedName": "CAPIReporter", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)enable", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP6enableyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(factory:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)configureWithFactory:settings:", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP9configure7factory8settingsySo24FBSDKGraphRequestFactory_p_AA16SettingsProtocol_ptF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordEvent", + "printedName": "recordEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)recordEvent:", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP11recordEventyySDySSypGF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKCAPIReporter", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitComponents", + "printedName": "CoreKitComponents", + "children": [ + { + "kind": "Var", + "name": "accessTokenExpirer", + "printedName": "accessTokenExpirer", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDProvider", + "printedName": "advertiserIDProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemNetworker", + "printedName": "aemNetworker", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemReporter", + "printedName": "aemReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventParametersExtractor", + "printedName": "appEventParametersExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 5, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEvents", + "printedName": "appEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 6, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsConfigurationProvider", + "printedName": "appEventsConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 7, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsDropDeterminer", + "printedName": "appEventsDropDeterminer", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 8, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsStateProvider", + "printedName": "appEventsStateProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 9, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsStateStore", + "printedName": "appEventsStateStore", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 10, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsUtility", + "printedName": "appEventsUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 11, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkEventPoster", + "printedName": "appLinkEventPoster", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 12, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkFactory", + "printedName": "appLinkFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 13, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkResolver", + "printedName": "appLinkResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 14, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkTargetFactory", + "printedName": "appLinkTargetFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 15, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkURLFactory", + "printedName": "appLinkURLFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 16, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "atePublisherFactory", + "printedName": "atePublisherFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 17, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenWallet", + "printedName": "authenticationTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 18, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backgroundEventLogger", + "printedName": "backgroundEventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 19, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "capiReporter", + "printedName": "capiReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 20, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codelessIndexer", + "printedName": "codelessIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 21, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crashHandler", + "printedName": "crashHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 22, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crashObserver", + "printedName": "crashObserver", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 23, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataExtractor", + "printedName": "dataExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 24, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultDataStore", + "printedName": "defaultDataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 25, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deviceInformationProvider", + "printedName": "deviceInformationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 26, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dialogConfigurationMapBuilder", + "printedName": "dialogConfigurationMapBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 27, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorConfigurationProvider", + "printedName": "errorConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 28, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 29, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorReporter", + "printedName": "errorReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 30, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventDeactivationManager", + "printedName": "eventDeactivationManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 31, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 32, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "featureChecker", + "printedName": "featureChecker", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 33, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "featureExtractor", + "printedName": "featureExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 34, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileManager", + "printedName": "fileManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 35, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 36, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "getApplicationActivationNotifier", + "printedName": "getApplicationActivationNotifier", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 37, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestConnectionFactory", + "printedName": "graphRequestConnectionFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 38, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 39, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionLoggerFactory", + "printedName": "impressionLoggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 40, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 41, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "internalURLOpener", + "printedName": "internalURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 42, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 43, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 44, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggerFactory", + "printedName": "loggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 45, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macCatalystDeterminator", + "printedName": "macCatalystDeterminator", + "children": [ + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 46, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataIndexer", + "printedName": "metadataIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 47, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelManager", + "printedName": "modelManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 48, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 49, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "operatingSystemVersionComparer", + "printedName": "operatingSystemVersionComparer", + "children": [ + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 50, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paymentObserver", + "printedName": "paymentObserver", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 51, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "piggybackManager", + "printedName": "piggybackManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 52, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "profileSetter", + "printedName": "profileSetter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 53, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "restrictiveDataFilterManager", + "printedName": "restrictiveDataFilterManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 54, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rulesFromKeyProvider", + "printedName": "rulesFromKeyProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 55, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 56, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionDataTaskProvider", + "printedName": "sessionDataTaskProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 57, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 58, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "skAdNetworkReporter", + "printedName": "skAdNetworkReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 59, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "suggestedEventsIndexer", + "printedName": "suggestedEventsIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 60, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swizzler", + "printedName": "swizzler", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 61, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeSpentRecorder", + "printedName": "timeSpentRecorder", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 62, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokenCache", + "printedName": "tokenCache", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 63, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlHoster", + "printedName": "urlHoster", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 64, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlSessionProxyFactory", + "printedName": "urlSessionProxyFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 65, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userDataStore", + "printedName": "userDataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 66, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userIDProvider", + "printedName": "userIDProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 67, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webViewProvider", + "printedName": "webViewProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 68, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemManager", + "printedName": "aemManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 69, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "protectedModeManager", + "printedName": "protectedModeManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 70, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macaRuleMatchingManager", + "printedName": "macaRuleMatchingManager", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 71, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenExpirer:accessTokenWallet:advertiserIDProvider:aemNetworker:aemReporter:appEventParametersExtractor:appEvents:appEventsConfigurationProvider:appEventsDropDeterminer:appEventsStateProvider:appEventsStateStore:appEventsUtility:appLinkEventPoster:appLinkFactory:appLinkResolver:appLinkTargetFactory:appLinkURLFactory:atePublisherFactory:authenticationTokenWallet:backgroundEventLogger:capiReporter:codelessIndexer:crashHandler:crashObserver:dataExtractor:defaultDataStore:deviceInformationProvider:dialogConfigurationMapBuilder:errorConfigurationProvider:errorFactory:errorReporter:eventDeactivationManager:eventLogger:featureChecker:featureExtractor:fileManager:gateKeeperManager:getApplicationActivationNotifier:graphRequestConnectionFactory:graphRequestFactory:impressionLoggerFactory:infoDictionaryProvider:internalURLOpener:internalUtility:logger:loggerFactory:macCatalystDeterminator:metadataIndexer:modelManager:notificationCenter:operatingSystemVersionComparer:paymentObserver:piggybackManager:profileSetter:restrictiveDataFilterManager:rulesFromKeyProvider:serverConfigurationProvider:sessionDataTaskProvider:settings:skAdNetworkReporter:suggestedEventsIndexer:swizzler:timeSpentRecorder:tokenCache:urlHoster:urlSessionProxyFactory:userDataStore:userIDProvider:webViewProvider:aemManager:protectedModeManager:macaRuleMatchingManager:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + }, + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + }, + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + }, + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + }, + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + }, + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + }, + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + }, + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + }, + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + }, + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + }, + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + }, + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + }, + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + }, + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + }, + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + }, + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + }, + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + }, + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirer0eF6Wallet20advertiserIDProvider12aemNetworker0K8Reporter27appEventParametersExtractor0N6Events0nR21ConfigurationProvider0nR14DropDeterminer0nr5StateT00nrW5Store0nR7Utility0n4LinkO6Poster0nZ7Factory0nZ8Resolver0nZ13TargetFactory0nZ10URLFactory19atePublisherFactory014authenticationfH0010backgroundO6Logger04capiM015codelessIndexer12crashHandler13crashObserver04dataQ0011defaultDataX0017deviceInformationT006dialogS10MapBuilder05errorsT012errorFactory05errorM024eventDeactivationManager11eventLogger14featureChecker07featureQ011fileManager17gateKeeperManager32getApplicationActivationNotifier29graphRequestConnectionFactory19graphRequestFactory23impressionLoggerFactory014infoDictionaryT017internalURLOpener08internalY06logger13loggerFactory23macCatalystDeterminator15metadataIndexer12modelManager18notificationCenter30operatingSystemVersionComparer15paymentObserver16piggybackManager13profileSetter28restrictiveDataFilterManager012rulesFromKeyT006serversT0015sessionDataTaskT08settings011skAdNetworkM009suggestedR7Indexer8swizzler17timeSpentRecorder10tokenCache9urlHoster22urlSessionProxyFactory08userDataX004userJ007webViewT00K7Manager20protectedModeManager23macaRuleMatchingManagerAcA07_AccessF8Expiring_p_So011FBSDKAccessF9Providing_So25FBSDKTokenStringProvidingpXpSo26FBSDKAdvertiserIDProviding_p8FBAEMKit13AEMNetworking_pSgAA20_AEMReporterProtocol_pXpSo08FBSDKAppoP10Extracting_pSo17FBSDKEventLogging_So08FBSDKAppR11ConfiguringSo26FBSDKApplicationActivatingSo34FBSDKApplicationLifecycleObservingSo016FBSDKApplicationW7SettingSo30FBSDKSourceApplicationTrackingpSo08FBSDKApprS9Providing_pSo08FBSDKAppoU11Determining_pSo08FBSDKApprW9Providing_pSo08FBSDKApprW10Persisting_pSoA64__SoA56_So08FBSDKApprY0So21FBSDKLoggingNotifyingpSo08FBSDKAppzO7Posting_pSo08FBSDKAppZ8Creating_pSo08FBSDKAppZ9Resolving_pSo08FBSDKAppZ14TargetCreating_pSo08FBSDKAppZ11URLCreating_pSo25FBSDKATEPublisherCreating_pSo019FBSDKAuthenticationF9Providing_pXpAA010BackgroundO7Logging_pAA12CAPIReporter_pSo21FBSDKCodelessIndexing_pXpSo17FBSDKCrashHandler_pSo19FBSDKCrashObserving_pSo23FBSDKFileDataExtracting_pXpSo19FBSDKDataPersisting_pSo31FBSDKDeviceInformationProviding_pSo011FBSDKDialogS11MapBuilding_pSo010FBSDKErrorS9Providing_pSo18FBSDKErrorCreating_pSo19FBSDKErrorReporting_pSo08FBSDKAppR19ParameterProcessing_So21FBSDKEventsProcessingpSoA57__pSo20FBSDKFeatureChecking_So21FBSDKFeatureDisablingpSo22FBSDKFeatureExtracting_pXpSo17FBSDKFileManaging_pSo23FBSDKGateKeeperManaging_pXpypycSo34FBSDKGraphRequestConnectionFactory_pSo24FBSDKGraphRequestFactory_pSo28FBSDKImpressionLoggerFactory_pSo28FBSDKInfoDictionaryProviding_pSo22FBSDKInternalURLOpener_pSo013FBSDKInternalY0_pSo12FBSDKLogging_pXpSo21__FBSDKLoggerCreating_pSo27FBSDKMacCatalystDetermining_pSo21FBSDKMetadataIndexing_pSo20FBSDKEventProcessing_So014FBSDKIntegrityp9ProcessorT0pSo25_FBSDKNotificationPosting_So27FBSDKNotificationDeliveringpSo36FBSDKOperatingSystemVersionComparing_pSo21FBSDKPaymentObserving_pSo34FBSDKGraphRequestPiggybackManaging_pAA16ProfileProviding_pXpSoA88__SoA89_pSo017FBSDKRulesFromKeyT0_pSo011FBSDKServerS9Providing_pSo24FBSDKURLSessionProviding_pSo20FBSDKSettingsLogging_AA16SettingsProtocolpA52_20SKAdNetworkReporting_So08FBSDKApprM0pSgSo014FBSDKSuggestedR7Indexer_pSo14FBSDKSwizzling_pXpSoA62__So23FBSDKTimeSpentRecordingpSo17FBSDKTokenCaching_pSo15FBSDKURLHosting_pSo29FBSDKURLSessionProxyProviding_pSo23FBSDKUserDataPersisting_pSo20FBSDKUserIDProviding_pSo21FBSDKWebViewProviding_pSo14FBSDKAutoSetup_pSoA88__pAA16MACARuleMatching_ptcfc", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirer0eF6Wallet20advertiserIDProvider12aemNetworker0K8Reporter27appEventParametersExtractor0N6Events0nR21ConfigurationProvider0nR14DropDeterminer0nr5StateT00nrW5Store0nR7Utility0n4LinkO6Poster0nZ7Factory0nZ8Resolver0nZ13TargetFactory0nZ10URLFactory19atePublisherFactory014authenticationfH0010backgroundO6Logger04capiM015codelessIndexer12crashHandler13crashObserver04dataQ0011defaultDataX0017deviceInformationT006dialogS10MapBuilder05errorsT012errorFactory05errorM024eventDeactivationManager11eventLogger14featureChecker07featureQ011fileManager17gateKeeperManager32getApplicationActivationNotifier29graphRequestConnectionFactory19graphRequestFactory23impressionLoggerFactory014infoDictionaryT017internalURLOpener08internalY06logger13loggerFactory23macCatalystDeterminator15metadataIndexer12modelManager18notificationCenter30operatingSystemVersionComparer15paymentObserver16piggybackManager13profileSetter28restrictiveDataFilterManager012rulesFromKeyT006serversT0015sessionDataTaskT08settings011skAdNetworkM009suggestedR7Indexer8swizzler17timeSpentRecorder10tokenCache9urlHoster22urlSessionProxyFactory08userDataX004userJ007webViewT00K7Manager20protectedModeManager23macaRuleMatchingManagerAcA07_AccessF8Expiring_p_So011FBSDKAccessF9Providing_So25FBSDKTokenStringProvidingpXpSo26FBSDKAdvertiserIDProviding_p8FBAEMKit13AEMNetworking_pSgAA20_AEMReporterProtocol_pXpSo08FBSDKAppoP10Extracting_pSo17FBSDKEventLogging_So08FBSDKAppR11ConfiguringSo26FBSDKApplicationActivatingSo34FBSDKApplicationLifecycleObservingSo016FBSDKApplicationW7SettingSo30FBSDKSourceApplicationTrackingpSo08FBSDKApprS9Providing_pSo08FBSDKAppoU11Determining_pSo08FBSDKApprW9Providing_pSo08FBSDKApprW10Persisting_pSoA64__SoA56_So08FBSDKApprY0So21FBSDKLoggingNotifyingpSo08FBSDKAppzO7Posting_pSo08FBSDKAppZ8Creating_pSo08FBSDKAppZ9Resolving_pSo08FBSDKAppZ14TargetCreating_pSo08FBSDKAppZ11URLCreating_pSo25FBSDKATEPublisherCreating_pSo019FBSDKAuthenticationF9Providing_pXpAA010BackgroundO7Logging_pAA12CAPIReporter_pSo21FBSDKCodelessIndexing_pXpSo17FBSDKCrashHandler_pSo19FBSDKCrashObserving_pSo23FBSDKFileDataExtracting_pXpSo19FBSDKDataPersisting_pSo31FBSDKDeviceInformationProviding_pSo011FBSDKDialogS11MapBuilding_pSo010FBSDKErrorS9Providing_pSo18FBSDKErrorCreating_pSo19FBSDKErrorReporting_pSo08FBSDKAppR19ParameterProcessing_So21FBSDKEventsProcessingpSoA57__pSo20FBSDKFeatureChecking_So21FBSDKFeatureDisablingpSo22FBSDKFeatureExtracting_pXpSo17FBSDKFileManaging_pSo23FBSDKGateKeeperManaging_pXpypycSo34FBSDKGraphRequestConnectionFactory_pSo24FBSDKGraphRequestFactory_pSo28FBSDKImpressionLoggerFactory_pSo28FBSDKInfoDictionaryProviding_pSo22FBSDKInternalURLOpener_pSo013FBSDKInternalY0_pSo12FBSDKLogging_pXpSo21__FBSDKLoggerCreating_pSo27FBSDKMacCatalystDetermining_pSo21FBSDKMetadataIndexing_pSo20FBSDKEventProcessing_So014FBSDKIntegrityp9ProcessorT0pSo25_FBSDKNotificationPosting_So27FBSDKNotificationDeliveringpSo36FBSDKOperatingSystemVersionComparing_pSo21FBSDKPaymentObserving_pSo34FBSDKGraphRequestPiggybackManaging_pAA16ProfileProviding_pXpSoA88__SoA89_pSo017FBSDKRulesFromKeyT0_pSo011FBSDKServerS9Providing_pSo24FBSDKURLSessionProviding_pSo20FBSDKSettingsLogging_AA16SettingsProtocolpA52_20SKAdNetworkReporting_So08FBSDKApprM0pSgSo014FBSDKSuggestedR7Indexer_pSo14FBSDKSwizzling_pXpSoA62__So23FBSDKTimeSpentRecordingpSo17FBSDKTokenCaching_pSo15FBSDKURLHosting_pSo29FBSDKURLSessionProxyProviding_pSo23FBSDKUserDataPersisting_pSo20FBSDKUserIDProviding_pSo21FBSDKWebViewProviding_pSo14FBSDKAutoSetup_pSoA88__pAA16MACARuleMatching_ptcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC7defaultACvpZ", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC7defaultACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC7defaultACvgZ", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC7defaultACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Testable", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitConfigurator", + "printedName": "CoreKitConfigurator", + "children": [ + { + "kind": "Var", + "name": "components", + "printedName": "components", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvp", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvg", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(components:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfigurator", + "printedName": "FBSDKCoreKit.CoreKitConfigurator", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC" + }, + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAcA0cB10ComponentsC_tcfc", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAcA0cB10ComponentsC_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "performConfiguration", + "printedName": "performConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC20performConfigurationyyF", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC20performConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CoreKitConfiguring", + "printedName": "CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitConfiguring", + "printedName": "CoreKitConfiguring", + "children": [ + { + "kind": "Function", + "name": "performConfiguration", + "printedName": "performConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP20performConfigurationyyF", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP20performConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CoreKitConfiguring>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreUIApplication", + "printedName": "CoreUIApplication", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(cpy)shared", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC6sharedSo22FBSDKInternalURLOpener_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(cm)shared", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC6sharedSo22FBSDKInternalURLOpener_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreUIApplication", + "printedName": "FBSDKCoreKit.CoreUIApplication", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(im)init", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "AssociatedType", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "AssociatedType", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit16DependentAsValueP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValueP15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE15getDependencies0eG0QzyKF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ValueDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ValueDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EventDeactivationManager", + "printedName": "EventDeactivationManager", + "children": [ + { + "kind": "Var", + "name": "isEventDeactivationEnabled", + "printedName": "isEventDeactivationEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC02iscD7Enabled33_14ACE7546C2C147776F91B107E749DCALLSbvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC02iscD7Enabled33_14ACE7546C2C147776F91B107E749DCALLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "deactivatedEvents", + "printedName": "deactivatedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC17deactivatedEvents33_14ACE7546C2C147776F91B107E749DCALLShySSGvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC17deactivatedEvents33_14ACE7546C2C147776F91B107E749DCALLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "eventsWithDeactivatedParameters", + "printedName": "eventsWithDeactivatedParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.EventDeactivationManager.DeactivatedEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "DeactivatedEvent", + "printedName": "FBSDKCoreKit.EventDeactivationManager.DeactivatedEvent", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC011DeactivatedC033_14ACE7546C2C147776F91B107E749DCALLV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC31eventsWithDeactivatedParameters33_14ACE7546C2C147776F91B107E749DCALLSayAC0hC0AELLVGvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC31eventsWithDeactivatedParameters33_14ACE7546C2C147776F91B107E749DCALLSayAC0hC0AELLVGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC6enableyyF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "$__lazy_storage_$_enableOnce", + "printedName": "$__lazy_storage_$_enableOnce", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC28$__lazy_storage_$_enableOnce33_14ACE7546C2C147776F91B107E749DCALLyycSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC28$__lazy_storage_$_enableOnce33_14ACE7546C2C147776F91B107E749DCALLyycSgvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final" + ], + "fixedbinaryorder": 5, + "hasStorage": true + }, + { + "kind": "Function", + "name": "processEvents", + "printedName": "processEvents(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSMutableArray", + "printedName": "Foundation.NSMutableArray", + "usr": "c:objc(cs)NSMutableArray" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC13processEventsyySo14NSMutableArrayCF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC13processEventsyySo14NSMutableArrayCF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processEvents:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEvents.Name?", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC17processParameters_9eventNameSDySo08FBSDKAppc9ParameterI0aypGSgAI_So0jcI0aSgtF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC17processParameters_9eventNameSDySo08FBSDKAppc9ParameterI0aypGSgAI_So0jcI0aSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:eventName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDeactivationManager", + "printedName": "FBSDKCoreKit.EventDeactivationManager", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerCACycfc", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBIcon", + "printedName": "FBIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit6FBIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4sizeSo7UIImageCSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:scale:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5scaleSo7UIImageCSgSo6CGSizeV_12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:color:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:color:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5colorSo7UIImageCSgSo6CGSizeV_So7UIColorCtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:scale:color:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:scale:color:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5scale5colorSo7UIImageCSgSo6CGSizeV_12CoreGraphics7CGFloatVSo7UIColorCtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBIcon", + "printedName": "FBSDKCoreKit.FBIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)init", + "mangledName": "$s12FBSDKCoreKit6FBIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "mangledName": "$s12FBSDKCoreKit6FBIconC", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKIcon", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBProfilePictureView", + "printedName": "FBProfilePictureView", + "children": [ + { + "kind": "Var", + "name": "pictureMode", + "printedName": "pictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)pictureMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)pictureMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPictureMode:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0OvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0OvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profileID", + "printedName": "profileID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)profileID", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)profileID", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setProfileID:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentState", + "printedName": "currentState", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvp", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvg", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasProfileImage", + "printedName": "hasProfileImage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)hasProfileImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)hasProfileImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setHasProfileImage:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastState", + "printedName": "lastState", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "needsImageUpdate", + "printedName": "needsImageUpdate", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)needsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)needsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setNeedsImageUpdate:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeholderImageIsValid", + "printedName": "placeholderImageIsValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)placeholderImageIsValid", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)placeholderImageIsValid", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPlaceholderImageIsValid:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageView", + "printedName": "imageView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)imageView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)imageView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setImageView:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0CvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0CvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bounds", + "printedName": "bounds", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)bounds", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvp", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "bounds", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)bounds", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvg", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "bounds", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setBounds:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvs", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "setBounds:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentMode", + "printedName": "contentMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)contentMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvp", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "contentMode", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)contentMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvg", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "contentMode", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setContentMode:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvs", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "setContentMode:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0VvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:profile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWith:profile:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5frame7profileACSo6CGRectV_AA7ProfileCSgtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWith:profile:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithProfile:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC7profileAcA7ProfileCSg_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithProfile:", + "declAttributes": [ + "Custom", + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithFrame:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "Custom", + "Override", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBProfilePictureView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithCoder:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "Custom", + "Required", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setNeedsImageUpdate", + "printedName": "setNeedsImageUpdate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setNeedsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC19setNeedsImageUpdateyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "performInitialConfiguration", + "printedName": "performInitialConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)performInitialConfiguration", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC27performInitialConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accessTokenDidChange", + "printedName": "accessTokenDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)accessTokenDidChange:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC20accessTokenDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profileDidChange", + "printedName": "profileDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)profileDidChange:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16profileDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImageWithAccessToken", + "printedName": "updateImageWithAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImageWithAccessToken", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC26updateImageWithAccessTokenyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImageWithProfile", + "printedName": "updateImageWithProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImageWithProfile", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC22updateImageWithProfileyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetImage", + "printedName": "fetchAndSetImage(with:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC16fetchAndSetImage4with5statey10Foundation3URLV_AA07ProfiledE5StateVtF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16fetchAndSetImage4with5statey10Foundation3URLV_AA07ProfiledE5StateVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldImageFit", + "printedName": "shouldImageFit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)shouldImageFit", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC14shouldImageFitSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageSize", + "printedName": "getImageSize(imageShouldFit:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)getImageSizeWithImageShouldFit:scale:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12getImageSize14imageShouldFit5scaleSo6CGSizeVSb_12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProfileImageURL", + "printedName": "getProfileImageURL(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC18getProfileImageURL5state10Foundation0I0VSgAA0gdE5StateV_tF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC18getProfileImageURL5state10Foundation0I0VSgAA0gdE5StateV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPlaceholderImage", + "printedName": "setPlaceholderImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPlaceholderImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC19setPlaceholderImageyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImage", + "printedName": "updateImage(data:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11updateImage4data5statey10Foundation4DataV_AA07ProfiledE5StateVtF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11updateImage4data5statey10Foundation4DataV_AA07ProfiledE5StateVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImage", + "printedName": "updateImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11updateImageyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfilePictureView", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)UIView", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventName", + "printedName": "AppEventName", + "children": [ + { + "kind": "Var", + "name": "unlockedAchievement", + "printedName": "unlockedAchievement", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO19unlockedAchievementyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO19unlockedAchievementyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "activatedApp", + "printedName": "activatedApp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO09activatedC0yA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO09activatedC0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "addedPaymentInfo", + "printedName": "addedPaymentInfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO16addedPaymentInfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO16addedPaymentInfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "addedToCart", + "printedName": "addedToCart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO11addedToCartyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO11addedToCartyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "addedToWishlist", + "printedName": "addedToWishlist", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO15addedToWishlistyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO15addedToWishlistyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "completedRegistration", + "printedName": "completedRegistration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO21completedRegistrationyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO21completedRegistrationyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "viewedContent", + "printedName": "viewedContent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO13viewedContentyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO13viewedContentyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "initiatedCheckout", + "printedName": "initiatedCheckout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO17initiatedCheckoutyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO17initiatedCheckoutyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "achievedLevel", + "printedName": "achievedLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO13achievedLevelyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO13achievedLevelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "purchased", + "printedName": "purchased", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO9purchasedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO9purchasedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "rated", + "printedName": "rated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO5ratedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO5ratedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "searched", + "printedName": "searched", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO8searchedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8searchedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "spentCredits", + "printedName": "spentCredits", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO12spentCreditsyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO12spentCreditsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "completedTutorial", + "printedName": "completedTutorial", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO17completedTutorialyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO17completedTutorialyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventName?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit12AppEventNameO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit12AppEventNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit12AppEventNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit12AppEventNameO", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CustomEventField", + "printedName": "CustomEventField", + "children": [ + { + "kind": "Var", + "name": "eventTime", + "printedName": "eventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO9eventTimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO9eventTimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO9eventNameyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO9eventNameyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "valueToSum", + "printedName": "valueToSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO10valueToSumyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO10valueToSumyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "contentIds", + "printedName": "contentIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO10contentIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO10contentIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contents", + "printedName": "contents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8contentsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8contentsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO11contentTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO11contentTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO11descriptionyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO11descriptionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "level", + "printedName": "level", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO5levelyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO5levelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "maxRatingValue", + "printedName": "maxRatingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO14maxRatingValueyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO14maxRatingValueyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "numItems", + "printedName": "numItems", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8numItemsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8numItemsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "paymentInfoAvailable", + "printedName": "paymentInfoAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO20paymentInfoAvailableyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO20paymentInfoAvailableyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "registrationMethod", + "printedName": "registrationMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO18registrationMethodyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO18registrationMethodyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "searchString", + "printedName": "searchString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO12searchStringyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO12searchStringyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO7successyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO7successyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "orderId", + "printedName": "orderId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO7orderIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO7orderIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "adType", + "printedName": "adType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO6adTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO6adTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8currencyyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8currencyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.CustomEventField?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit16CustomEventFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventType", + "printedName": "AppEventType", + "children": [ + { + "kind": "Var", + "name": "mobileAppInstall", + "printedName": "mobileAppInstall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO06mobileC7InstallyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO06mobileC7InstallyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO6customyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO6customyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO5otheryA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO5otheryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueACSS_tcfc", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit12AppEventTypeO", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventUserAndAppDataField", + "printedName": "AppEventUserAndAppDataField", + "children": [ + { + "kind": "Var", + "name": "anonId", + "printedName": "anonId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO6anonIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO6anonIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appUserId", + "printedName": "appUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO03appE2IdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO03appE2IdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "advertiserId", + "printedName": "advertiserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO12advertiserIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO12advertiserIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "pageId", + "printedName": "pageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO6pageIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO6pageIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "pageScopedUserId", + "printedName": "pageScopedUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO010pageScopedE2IdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO010pageScopedE2IdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO04userG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO04userG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "advTE", + "printedName": "advTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO5advTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO5advTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "appTE", + "printedName": "appTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO5appTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO5appTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "considerViews", + "printedName": "considerViews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO13considerViewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO13considerViewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "deviceToken", + "printedName": "deviceToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO11deviceTokenyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO11deviceTokenyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "extinfo", + "printedName": "extinfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO7extinfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO7extinfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "includeDwellData", + "printedName": "includeDwellData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeDwellG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeDwellG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "includeVideoData", + "printedName": "includeVideoData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeVideoG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeVideoG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "installReferrer", + "printedName": "installReferrer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO15installReferreryA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO15installReferreryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "installerPackage", + "printedName": "installerPackage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO16installerPackageyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO16installerPackageyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "receiptData", + "printedName": "receiptData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO07receiptG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO07receiptG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "urlSchemes", + "printedName": "urlSchemes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO10urlSchemesyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO10urlSchemesyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "campaignIds", + "printedName": "campaignIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO11campaignIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO11campaignIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPISection", + "printedName": "ConversionsAPISection", + "children": [ + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8userDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8userDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO7appDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO7appDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "customData", + "printedName": "customData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO10customDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO10customDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "customEvents", + "printedName": "customEvents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO12customEventsyA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO12customEventsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPICustomEventField", + "printedName": "ConversionsAPICustomEventField", + "children": [ + { + "kind": "Var", + "name": "valueToSum", + "printedName": "valueToSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO10valueToSumyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO10valueToSumyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "eventTime", + "printedName": "eventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventTimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventTimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventNameyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventNameyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "contentIds", + "printedName": "contentIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO10contentIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO10contentIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contents", + "printedName": "contents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8contentsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8contentsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO11contentTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO11contentTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO11descriptionyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO11descriptionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "level", + "printedName": "level", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO5levelyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO5levelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "maxRatingValue", + "printedName": "maxRatingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO14maxRatingValueyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO14maxRatingValueyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "numItems", + "printedName": "numItems", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8numItemsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8numItemsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "paymentInfoAvailable", + "printedName": "paymentInfoAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO20paymentInfoAvailableyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO20paymentInfoAvailableyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "registrationMethod", + "printedName": "registrationMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO18registrationMethodyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO18registrationMethodyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "searchString", + "printedName": "searchString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO12searchStringyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO12searchStringyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO7successyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO7successyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "orderId", + "printedName": "orderId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO7orderIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO7orderIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "adType", + "printedName": "adType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO6adTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO6adTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8currencyyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8currencyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "Var", + "name": "anonId", + "printedName": "anonId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6anonIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6anonIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "fbLoginId", + "printedName": "fbLoginId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO9fbLoginIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO9fbLoginIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "madid", + "printedName": "madid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5madidyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5madidyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "pageId", + "printedName": "pageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6pageIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6pageIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "pageScopedUserId", + "printedName": "pageScopedUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16pageScopedUserIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16pageScopedUserIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO04userG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO04userG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "advTE", + "printedName": "advTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5advTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5advTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "appTE", + "printedName": "appTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5appTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5appTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "considerViews", + "printedName": "considerViews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO13considerViewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO13considerViewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "deviceToken", + "printedName": "deviceToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11deviceTokenyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11deviceTokenyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "extinfo", + "printedName": "extinfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO7extinfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO7extinfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "includeDwellData", + "printedName": "includeDwellData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeDwellG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeDwellG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "includeVideoData", + "printedName": "includeVideoData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeVideoG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeVideoG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "installReferrer", + "printedName": "installReferrer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO15installReferreryA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO15installReferreryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "installerPackage", + "printedName": "installerPackage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16installerPackageyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16installerPackageyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "receiptData", + "printedName": "receiptData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO07receiptG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO07receiptG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "urlSchemes", + "printedName": "urlSchemes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO10urlSchemesyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO10urlSchemesyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "campaignIds", + "printedName": "campaignIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11campaignIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11campaignIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPIEventName", + "printedName": "ConversionsAPIEventName", + "children": [ + { + "kind": "Var", + "name": "achievementUnlocked", + "printedName": "achievementUnlocked", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO19achievementUnlockedyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO19achievementUnlockedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "activateApp", + "printedName": "activateApp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO11activateAppyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO11activateAppyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "addPaymentInfo", + "printedName": "addPaymentInfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO14addPaymentInfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO14addPaymentInfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "addToCart", + "printedName": "addToCart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO9addToCartyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO9addToCartyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "addToWishlist", + "printedName": "addToWishlist", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO13addToWishlistyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO13addToWishlistyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "completeRegistration", + "printedName": "completeRegistration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO20completeRegistrationyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO20completeRegistrationyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "viewContent", + "printedName": "viewContent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO11viewContentyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO11viewContentyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "initiateCheckout", + "printedName": "initiateCheckout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO16initiateCheckoutyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO16initiateCheckoutyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "levelAchieved", + "printedName": "levelAchieved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO13levelAchievedyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO13levelAchievedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "purchase", + "printedName": "purchase", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8purchaseyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8purchaseyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "rate", + "printedName": "rate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO4rateyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO4rateyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "search", + "printedName": "search", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO6searchyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO6searchyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "spentCredits", + "printedName": "spentCredits", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO12spentCreditsyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO12spentCreditsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "tutorialCompletion", + "printedName": "tutorialCompletion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO18tutorialCompletionyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO18tutorialCompletionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OtherEventConstants", + "printedName": "OtherEventConstants", + "children": [ + { + "kind": "Var", + "name": "event", + "printedName": "event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO5eventyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO5eventyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "actionSource", + "printedName": "actionSource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO12actionSourceyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO12actionSourceyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "app", + "printedName": "app", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO3appyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO3appyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "mobileAppInstall", + "printedName": "mobileAppInstall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO16mobileAppInstallyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO16mobileAppInstallyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "installEventTime", + "printedName": "installEventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO07installD4TimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO07installD4TimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.OtherEventConstants?", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventsConversionsAPITransformer", + "printedName": "AppEventsConversionsAPITransformer", + "children": [ + { + "kind": "TypeDecl", + "name": "SectionFieldMapping", + "printedName": "SectionFieldMapping", + "children": [ + { + "kind": "Var", + "name": "section", + "printedName": "section", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(section:field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7section5fieldAeA0E10APISectionO_AA0e10APIUserAndc4DataH0OSgtcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7section5fieldAeA0E10APISectionO_AA0e10APIUserAndc4DataH0OSgtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "topLevelTransformations", + "printedName": "topLevelTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventUserAndAppDataField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventUserAndAppDataField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SectionCustomEventFieldMapping", + "printedName": "SectionCustomEventFieldMapping", + "children": [ + { + "kind": "Var", + "name": "section", + "printedName": "section", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(section:field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7section5fieldAeA0E10APISectionOSg_AA0e9APICustomiJ0Otcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7section5fieldAeA0E10APISectionOSg_AA0e9APICustomiJ0Otcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "customEventTransformations", + "printedName": "customEventTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.CustomEventField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.CustomEventField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "standardEventTransformations", + "printedName": "standardEventTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventName : FBSDKCoreKit.ConversionsAPIEventName]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventName : FBSDKCoreKit.ConversionsAPIEventName]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DataProcessingParameterName", + "printedName": "DataProcessingParameterName", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7optionsyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7optionsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "country", + "printedName": "country", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7countryyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7countryyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO5stateyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO5stateyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ValueTransformationType", + "printedName": "ValueTransformationType", + "children": [ + { + "kind": "Var", + "name": "array", + "printedName": "array", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5arrayyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5arrayyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "bool", + "printedName": "bool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO4boolyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO4boolyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "int", + "printedName": "int", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO3intyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO3intyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5fieldAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5fieldAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0AESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0AESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "transformValue", + "printedName": "transformValue(field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO14transformValue5field5valueypSgSS_yptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO14transformValue5field5valueypSgSS_yptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "splitAppEventParameters", + "printedName": "splitAppEventParameters(from:userData:appData:restOfData:customEvents:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO05splitC15EventParameters4from8userData03appL006restOfL006customD0AA0cH4TypeOSgSDySSypG_AMzAMzAMzSayAMGztFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO05splitC15EventParameters4from8userData03appL006restOfL006customD0AA0cH4TypeOSgSDySSypG_AMzAMzAMzSayAMGztFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateAppData", + "printedName": "transformAndUpdateAppData(_:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdateC4Data_5field5valueySDySSypGz_AA0c9EventUserhcJ5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdateC4Data_5field5valueySDySSypGz_AA0c9EventUserhcJ5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateUserData", + "printedName": "transformAndUpdateUserData(_:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26transformAndUpdateUserData_5field5valueySDySSypGz_AA0c5EventjhcK5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26transformAndUpdateUserData_5field5valueySDySSypGz_AA0c5EventjhcK5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateAppAndUserData", + "printedName": "transformAndUpdateAppAndUserData(userData:appData:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdatecH8UserData04userK003appK05field5valueySDySSypGz_AIzAA0c5EventjhcK5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdatecH8UserData04userK003appK05field5valueySDySSypGz_AIzAA0c5EventjhcK5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformEventName", + "printedName": "transformEventName(from:)", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO18transformEventName4fromS2S_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO18transformEventName4fromS2S_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformEvents", + "printedName": "transformEvents(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO09transformD04fromSaySDySSypGGSgSS_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO09transformD04fromSaySDySSypGGSgSS_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineCommonFields", + "printedName": "combineCommonFields(userData:appData:restOfData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19combineCommonFields8userData03appK006restOfK0SDySSypGAH_A2HtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19combineCommonFields8userData03appK006restOfK0SDySSypGAH_A2HtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedDataForMobileAppInstall", + "printedName": "combineAllTransformedDataForMobileAppInstall(commonFields:eventTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO034combineAllTransformedDataForMobileC7Install12commonFields9eventTimeSaySDySSypGGSgAG_SiSgtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO034combineAllTransformedDataForMobileC7Install12commonFields9eventTimeSaySDySSypGGSgAG_SiSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedDataForCustom", + "printedName": "combineAllTransformedDataForCustom(commonFields:customEvents:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO34combineAllTransformedDataForCustom12commonFields06customD0SaySDySSypGGSgAG_AHtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO34combineAllTransformedDataForCustom12commonFields06customD0SaySDySSypGGSgAG_AHtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedData", + "printedName": "combineAllTransformedData(eventType:userData:appData:restOfData:customEvents:eventTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO25combineAllTransformedData9eventType04userJ003appJ006restOfJ006customD00K4TimeSaySDySSypGGSgAA0c5EventL0O_A3kLSiSgtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO25combineAllTransformedData9eventType04userJ003appJ006restOfJ006customD00K4TimeSaySDySSypGGSgAA0c5EventL0O_A3kLSiSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "conversionsAPICompatibleEvent", + "printedName": "conversionsAPICompatibleEvent(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO29conversionsAPICompatibleEvent4fromSaySDySSypGGSgAF_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO29conversionsAPICompatibleEvent4fromSaySDySSypGGSgAF_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "SettingsAPIFields", + "printedName": "SettingsAPIFields", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO3urlyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO3urlyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "enabled", + "printedName": "enabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO7enabledyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO7enabledyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "datasetID", + "printedName": "datasetID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO9datasetIDyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO9datasetIDyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "accessKey", + "printedName": "accessKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO9accessKeyyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO9accessKeyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsAPIFields?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKAppEventsCAPIManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(cpy)shared", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(cm)shared", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSDKGKEnabled", + "printedName": "isSDKGKEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)isSDKGKEnabled", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isSDKGKEnabled", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setIsSDKGKEnabled:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "factory", + "printedName": "factory", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)factory", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)factory", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setFactory:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)settings", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)settings", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setSettings:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configRefreshTimestamp", + "printedName": "configRefreshTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)configRefreshTimestamp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)configRefreshTimestamp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setConfigRefreshTimestamp:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isLoadingConfig", + "printedName": "isLoadingConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)isLoadingConfig", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isLoadingConfig", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setIsLoadingConfig:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "completionBlocks", + "printedName": "completionBlocks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvg", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvs", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)init", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(factory:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)configureWithFactory:settings:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC9configure7factory8settingsySo24FBSDKGraphRequestFactory_p_AA16SettingsProtocol_ptF", + "moduleName": "FBSDKCoreKit", + "objc_name": "configureWithFactory:settings:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)enable", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordEvent", + "printedName": "recordEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)recordEvent:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC11recordEventyySDySSypGF", + "moduleName": "FBSDKCoreKit", + "objc_name": "recordEvent:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(withBlock:)", + "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:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)loadWithBlock:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC4load9withBlockyySbc_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldRefresh", + "printedName": "shouldRefresh()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)shouldRefresh", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC13shouldRefreshSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRefreshTimestampValid", + "printedName": "isRefreshTimestampValid()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isRefreshTimestampValid", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC23isRefreshTimestampValidSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "executeBlocks", + "printedName": "executeBlocks(isEnabled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)executeBlocksWithIsEnabled:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC13executeBlocks9isEnabledySb_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CAPIReporter", + "printedName": "CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKTransformerGraphRequestFactory", + "children": [ + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)contentType", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11contentTypeSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)contentType", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11contentTypeSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeoutInterval", + "printedName": "timeoutInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)timeoutInterval", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15timeoutIntervalSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)timeoutInterval", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15timeoutIntervalSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxCachedEvents", + "printedName": "maxCachedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)maxCachedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15maxCachedEventsSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)maxCachedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15maxCachedEventsSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxProcessedEvents", + "printedName": "maxProcessedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)maxProcessedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18maxProcessedEventsSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)maxProcessedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18maxProcessedEventsSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "retryEventsHttpResponse", + "printedName": "retryEventsHttpResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)retryEventsHttpResponse", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC23retryEventsHttpResponseSaySiGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)retryEventsHttpResponse", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC23retryEventsHttpResponseSaySiGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(cpy)shared", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(cm)shared", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "credentials", + "printedName": "credentials", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials?", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials?", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transformedEvents", + "printedName": "transformedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)transformedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)transformedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)setTransformedEvents:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvM", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CapiGCredentials", + "printedName": "CapiGCredentials", + "children": [ + { + "kind": "Var", + "name": "accessKey", + "printedName": "accessKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "capiGatewayURL", + "printedName": "capiGatewayURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "datasetID", + "printedName": "datasetID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessKey:capiGatewayURL:datasetID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKey14capiGatewayURL9datasetIDAESS_S2Stcfc", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKey14capiGatewayURL9datasetIDAESS_S2Stcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)init", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(datasetID:url:accessKey:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)configureWithDatasetID:url:accessKey:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC9configure9datasetID3url9accessKeyySS_S2StF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "callCapiGatewayAPI", + "printedName": "callCapiGatewayAPI(with:userAgent:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)callCapiGatewayAPIWith:userAgent:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18callCapiGatewayAPI4with9userAgentySDySSypG_SStF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "capiGatewayRequestDictionary", + "printedName": "capiGatewayRequestDictionary(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)capiGatewayRequestDictionaryWith:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC011capiGatewayE10Dictionary4withSDySSypGSayAFG_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleError", + "printedName": "handleError(response:events:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLResponse", + "printedName": "Foundation.URLResponse", + "usr": "c:objc(cs)NSURLResponse" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)handleErrorWithResponse:events:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11handleError8response6eventsySo13NSURLResponseCSg_SaySDySSypGGSgtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appendEvents", + "printedName": "appendEvents(events:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)appendEventsWithEvents:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC12appendEvents6eventsySaySDySSypGGSg_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphRequestPiggybackManager", + "printedName": "GraphRequestPiggybackManager", + "children": [ + { + "kind": "TypeDecl", + "name": "Values", + "printedName": "Values", + "children": [ + { + "kind": "Var", + "name": "tokenRefreshThresholdInSeconds", + "printedName": "tokenRefreshThresholdInSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokenRefreshRetryInSeconds", + "printedName": "tokenRefreshRetryInSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extendSSOToken", + "printedName": "extendSSOToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenRefreshFields", + "printedName": "accessTokenRefreshFields", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "permissionsPath", + "printedName": "permissionsPath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "permissionsRefreshFields", + "printedName": "permissionsRefreshFields", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO", + "moduleName": "FBSDKCoreKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "lastRefreshTry", + "printedName": "lastRefreshTry", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addPiggybackRequests", + "printedName": "addPiggybackRequests(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC03addE8RequestsyySo010FBSDKGraphD10Connecting_pF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC03addE8RequestsyySo010FBSDKGraphD10Connecting_pF", + "moduleName": "FBSDKCoreKit", + "objc_name": "addPiggybackRequests:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addRefreshPiggyback", + "printedName": "addRefreshPiggyback(_:permissionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestConnecting?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE0_17permissionHandlerySo010FBSDKGraphD10Connecting_p_ySoAF_pSg_ypSgs5Error_pSgtcSgtF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE0_17permissionHandlerySo010FBSDKGraphD10Connecting_p_ySoAF_pSg_ypSgs5Error_pSgtcSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "addRefreshPiggyback:permissionHandler:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRequestSafeForPiggyback", + "printedName": "isRequestSafeForPiggyback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestProtocol", + "printedName": "FBSDKCoreKit.GraphRequestProtocol", + "usr": "c:objc(pl)FBSDKGraphRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC02isd7SafeForE0ySbSo010FBSDKGraphD0_pF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC02isd7SafeForE0ySbSo010FBSDKGraphD0_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addRefreshPiggybackIfStale", + "printedName": "addRefreshPiggybackIfStale(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE7IfStale2toySo010FBSDKGraphD10Connecting_p_tF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE7IfStale2toySo010FBSDKGraphD10Connecting_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addServerConfigurationPiggyback", + "printedName": "addServerConfigurationPiggyback(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC022addServerConfigurationE02toySo010FBSDKGraphD10Connecting_p_tF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC022addServerConfigurationE02toySo010FBSDKGraphD10Connecting_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestPiggybackManager", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerCACycfc", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "tokenWallet", + "printedName": "tokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tokenWallet:settings:serverConfigurationProvider:graphRequestFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWallet8settings27serverConfigurationProvider05graphD7FactoryAESo25FBSDKAccessTokenProviding_pXp_AA16SettingsProtocol_pSo011FBSDKServermS0_pSo010FBSDKGraphdP0_ptcfc", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWallet8settings27serverConfigurationProvider05graphD7FactoryAESo25FBSDKAccessTokenProviding_pXp_AA16SettingsProtocol_pSo011FBSDKServermS0_pSo010FBSDKGraphdP0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "KeychainStoreFactory", + "printedName": "KeychainStoreFactory", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreFactory", + "printedName": "FBSDKCoreKit.KeychainStoreFactory", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "createKeychainStore", + "printedName": "createKeychainStore(service:accessGroup:)", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC06createcD07service11accessGroupSo013FBSDKKeychainD0_pSS_SSSgtF", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryC06createcD07service11accessGroupSo013FBSDKKeychainD0_pSS_SSSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createKeychainStoreWithService:accessGroup:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MACARuleMatching", + "printedName": "MACARuleMatching", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching(im)enable", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP6enableyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.MACARuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching(im)processParameters:event:", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP17processParameters_5eventSo12NSDictionaryCSgAH_SSSgtF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.MACARuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKMACARuleMatching", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MACARuleMatchingManager", + "printedName": "MACARuleMatchingManager", + "children": [ + { + "kind": "Var", + "name": "isEnable", + "printedName": "isEnable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC8isEnable33_0BB5878F933DE26C4692A35EA0FEF78ALLSbvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC8isEnable33_0BB5878F933DE26C4692A35EA0FEF78ALLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "macaRules", + "printedName": "macaRules", + "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:12FBSDKCoreKit23MACARuleMatchingManagerC9macaRules33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC9macaRules33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "keys", + "printedName": "keys", + "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:12FBSDKCoreKit23MACARuleMatchingManagerC4keys33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC4keys33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)enable", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getKey", + "printedName": "getKey(logic:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC6getKey5logicSSSgSDySSypG_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC6getKey5logicSSSgSDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stringComparison", + "printedName": "stringComparison(variable:values:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC16stringComparison8variable6values4dataSbSS_SDySSypGAHtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC16stringComparison8variable6values4dataSbSS_SDySSypGAHtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stringValueOf", + "printedName": "stringValueOf(_:)", + "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": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13stringValueOfySSSgypSgF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13stringValueOfySSSgypSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doubleValueOf", + "printedName": "doubleValueOf(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13doubleValueOfySdypSgF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13doubleValueOfySdypSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatchCCRule", + "printedName": "isMatchCCRule(_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13isMatchCCRule_4dataSbSSSg_SDySSypGtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13isMatchCCRule_4dataSbSSSg_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMatchPropertyIDs", + "printedName": "getMatchPropertyIDs(params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19getMatchPropertyIDs6paramsSSSDySSypG_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19getMatchPropertyIDs6paramsSSSDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)processParameters:event:", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC17processParameters_5eventSo12NSDictionaryCSgAH_SSSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:event:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateInfo", + "printedName": "generateInfo(params:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "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:12FBSDKCoreKit23MACARuleMatchingManagerC12generateInfo6params5eventySDySSypGz_SSSgtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC12generateInfo6params5eventySDySSypGz_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeGeneratedInfo", + "printedName": "removeGeneratedInfo(params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19removeGeneratedInfo6paramsySDySSypGz_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19removeGeneratedInfo6paramsySDySSypGz_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatchingManager", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)init", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "deviceInformationProvider", + "printedName": "deviceInformationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:deviceInformationProvider:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProvider017deviceInformationJ08settingsAESo011FBSDKServerI9Providing_p_So011FBSDKDevicelO0_pAA16SettingsProtocol_ptcfc", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProvider017deviceInformationJ08settingsAESo011FBSDKServerI9Providing_p_So011FBSDKDevicelO0_pAA16SettingsProtocol_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKMACARuleMatchingManager", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MACARuleMatching", + "printedName": "MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP" + }, + { + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV13dependentType33_958FB1E740EB546F978E744982C869ADLLxmvp", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV13dependentType33_958FB1E740EB546F978E744982C869ADLLxmvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKCoreKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKCoreKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Permission", + "printedName": "Permission", + "children": [ + { + "kind": "Var", + "name": "publicProfile", + "printedName": "publicProfile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO13publicProfileyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO13publicProfileyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userFriends", + "printedName": "userFriends", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userFriendsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userFriendsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO5emailyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO5emailyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAboutMe", + "printedName": "userAboutMe", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userAboutMeyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userAboutMeyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsBooks", + "printedName": "userActionsBooks", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsBooksyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsBooksyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsFitness", + "printedName": "userActionsFitness", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO18userActionsFitnessyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO18userActionsFitnessyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsMusic", + "printedName": "userActionsMusic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsMusicyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsMusicyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsNews", + "printedName": "userActionsNews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO15userActionsNewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO15userActionsNewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsVideo", + "printedName": "userActionsVideo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsVideoyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsVideoyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userBirthday", + "printedName": "userBirthday", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userBirthdayyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userBirthdayyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userEducationHistory", + "printedName": "userEducationHistory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO20userEducationHistoryyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO20userEducationHistoryyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userEvents", + "printedName": "userEvents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userEventsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userEventsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userGamesActivity", + "printedName": "userGamesActivity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userGamesActivityyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userGamesActivityyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userGender", + "printedName": "userGender", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userGenderyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userGenderyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userHometown", + "printedName": "userHometown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userHometownyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userHometownyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLikes", + "printedName": "userLikes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO9userLikesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO9userLikesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLocation", + "printedName": "userLocation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userLocationyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userLocationyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userManagedGroups", + "printedName": "userManagedGroups", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userManagedGroupsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userManagedGroupsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userPhotos", + "printedName": "userPhotos", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userPhotosyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userPhotosyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userPosts", + "printedName": "userPosts", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO9userPostsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO9userPostsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userRelationships", + "printedName": "userRelationships", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userRelationshipsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userRelationshipsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userRelationshipDetails", + "printedName": "userRelationshipDetails", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO23userRelationshipDetailsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO23userRelationshipDetailsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userReligionPolitics", + "printedName": "userReligionPolitics", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO20userReligionPoliticsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO20userReligionPoliticsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userTaggedPlaces", + "printedName": "userTaggedPlaces", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userTaggedPlacesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userTaggedPlacesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userVideos", + "printedName": "userVideos", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userVideosyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userVideosyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userWebsite", + "printedName": "userWebsite", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userWebsiteyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userWebsiteyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userWorkHistory", + "printedName": "userWorkHistory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO15userWorkHistoryyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO15userWorkHistoryyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readCustomFriendlists", + "printedName": "readCustomFriendlists", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO21readCustomFriendlistsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO21readCustomFriendlistsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readInsights", + "printedName": "readInsights", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12readInsightsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12readInsightsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readAudienceNetworkInsights", + "printedName": "readAudienceNetworkInsights", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO27readAudienceNetworkInsightsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO27readAudienceNetworkInsightsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readPageMailboxes", + "printedName": "readPageMailboxes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17readPageMailboxesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17readPageMailboxesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesShowList", + "printedName": "pagesShowList", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO13pagesShowListyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO13pagesShowListyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesManageCta", + "printedName": "pagesManageCta", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO14pagesManageCtayA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO14pagesManageCtayA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesManageInstantArticles", + "printedName": "pagesManageInstantArticles", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO26pagesManageInstantArticlesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO26pagesManageInstantArticlesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "adsRead", + "printedName": "adsRead", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO7adsReadyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO7adsReadyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLink", + "printedName": "userLink", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO8userLinkyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO8userLinkyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAgeRange", + "printedName": "userAgeRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userAgeRangeyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userAgeRangeyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> (Swift.String) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO6customyACSScACmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO6customyACSScACmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10PermissionO13stringLiteralACSS_tcfc", + "mangledName": "$s12FBSDKCoreKit10PermissionO13stringLiteralACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10PermissionO4nameSSvp", + "mangledName": "$s12FBSDKCoreKit10PermissionO4nameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10PermissionO4nameSSvg", + "mangledName": "$s12FBSDKCoreKit10PermissionO4nameSSvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10PermissionO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit10PermissionO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10PermissionO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit10PermissionO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10PermissionO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit10PermissionO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10PermissionO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit10PermissionO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit10PermissionO", + "mangledName": "$s12FBSDKCoreKit10PermissionO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "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": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Profile", + "printedName": "Profile", + "children": [ + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)userID", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(im)userID", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstName", + "printedName": "firstName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)firstName", + "mangledName": "$s12FBSDKCoreKit7ProfileC9firstNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)firstName", + "mangledName": "$s12FBSDKCoreKit7ProfileC9firstNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)middleName", + "mangledName": "$s12FBSDKCoreKit7ProfileC10middleNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)middleName", + "mangledName": "$s12FBSDKCoreKit7ProfileC10middleNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastName", + "printedName": "lastName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)lastName", + "mangledName": "$s12FBSDKCoreKit7ProfileC8lastNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)lastName", + "mangledName": "$s12FBSDKCoreKit7ProfileC8lastNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)name", + "mangledName": "$s12FBSDKCoreKit7ProfileC4nameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)name", + "mangledName": "$s12FBSDKCoreKit7ProfileC4nameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)linkURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC7linkURL10Foundation0E0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)linkURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC7linkURL10Foundation0E0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "refreshDate", + "printedName": "refreshDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)refreshDate", + "mangledName": "$s12FBSDKCoreKit7ProfileC11refreshDate10Foundation0E0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)refreshDate", + "mangledName": "$s12FBSDKCoreKit7ProfileC11refreshDate10Foundation0E0Vvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)imageURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL10Foundation0E0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)imageURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL10Foundation0E0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)email", + "mangledName": "$s12FBSDKCoreKit7ProfileC5emailSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)email", + "mangledName": "$s12FBSDKCoreKit7ProfileC5emailSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "friendIDs", + "printedName": "friendIDs", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)friendIDs", + "mangledName": "$s12FBSDKCoreKit7ProfileC9friendIDsSaySSGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)friendIDs", + "mangledName": "$s12FBSDKCoreKit7ProfileC9friendIDsSaySSGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "birthday", + "printedName": "birthday", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)birthday", + "mangledName": "$s12FBSDKCoreKit7ProfileC8birthday10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)birthday", + "mangledName": "$s12FBSDKCoreKit7ProfileC8birthday10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ageRange", + "printedName": "ageRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)ageRange", + "mangledName": "$s12FBSDKCoreKit7ProfileC8ageRangeSo012FBSDKUserAgeE0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)ageRange", + "mangledName": "$s12FBSDKCoreKit7ProfileC8ageRangeSo012FBSDKUserAgeE0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hometown", + "printedName": "hometown", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)hometown", + "mangledName": "$s12FBSDKCoreKit7ProfileC8hometownSo13FBSDKLocationCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)hometown", + "mangledName": "$s12FBSDKCoreKit7ProfileC8hometownSo13FBSDKLocationCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)location", + "mangledName": "$s12FBSDKCoreKit7ProfileC8locationSo13FBSDKLocationCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)location", + "mangledName": "$s12FBSDKCoreKit7ProfileC8locationSo13FBSDKLocationCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)gender", + "mangledName": "$s12FBSDKCoreKit7ProfileC6genderSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)gender", + "mangledName": "$s12FBSDKCoreKit7ProfileC6genderSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isLimited", + "printedName": "isLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)isLimited", + "mangledName": "$s12FBSDKCoreKit7ProfileC9isLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)isLimited", + "mangledName": "$s12FBSDKCoreKit7ProfileC9isLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_current", + "printedName": "_current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)_current", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)_current", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)set_current:", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC8_currentACSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isUpdatedWithAccessTokenChange", + "printedName": "isUpdatedWithAccessTokenChange", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)isUpdatedWithAccessTokenChange", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)isUpdatedWithAccessTokenChange", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvgZ", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)setIsUpdatedWithAccessTokenChange:", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDateACSS_SSSgA3K10Foundation0L0VSgAL0N0VSgtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDate05imageL05email9friendIDs8birthday8ageRange8hometown8location6genderACSS_SSSgA3S10Foundation0L0VSgAT0N0VSgAwSSaySSGSgAZSo012FBSDKUserAgeU0CSgSo13FBSDKLocationCSgA6_AStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDate05imageL05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimitedACSS_SSSgA3T10Foundation0L0VSgAU0N0VSgAxTSaySSGSgA_So012FBSDKUserAgeU0CSgSo13FBSDKLocationCSgA7_ATSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "enableUpdatesOnAccessTokenChange", + "printedName": "enableUpdatesOnAccessTokenChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)enableUpdatesOnAccessTokenChange:", + "mangledName": "$s12FBSDKCoreKit7ProfileC32enableUpdatesOnAccessTokenChangeyySbFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "enableUpdatesOnAccessTokenChange:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)init", + "mangledName": "$s12FBSDKCoreKit7ProfileCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "PictureMode", + "printedName": "PictureMode", + "children": [ + { + "kind": "Var", + "name": "square", + "printedName": "square", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO6squareyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO6squareyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "normal", + "printedName": "normal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO6normalyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO6normalyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "album", + "printedName": "album", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5albumyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5albumyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "small", + "printedName": "small", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5smallyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5smallyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "large", + "printedName": "large", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5largeyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5largeyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.PictureMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueAESgSu_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfilePictureMode", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "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": "Function", + "name": "imageURL", + "printedName": "imageURL(forMode:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)imageURLForPictureMode:size:", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL7forMode4size10Foundation0E0VSgAC07PictureG0O_So6CGSizeVtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "imageURLForPictureMode:size:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageURL", + "printedName": "getImageURL(profileID:pictureMode:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)getImageURLWithProfileID:pictureMode:size:", + "mangledName": "$s12FBSDKCoreKit7ProfileC11getImageURL9profileID11pictureMode4size10Foundation0F0VSgSS_AC07PictureJ0OSo6CGSizeVtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadCurrentProfile", + "printedName": "loadCurrentProfile(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.Profile?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)loadCurrentProfileWithCompletion:", + "mangledName": "$s12FBSDKCoreKit7ProfileC011loadCurrentC010completionyyACSg_s5Error_pSgtcSg_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "loadCurrentProfileWithCompletion:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadProfile", + "printedName": "loadProfile(accessToken:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.Profile?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)loadProfileWithAccessToken:completion:", + "mangledName": "$s12FBSDKCoreKit7ProfileC04loadC011accessToken10completionySo011FBSDKAccessF0CSg_yACSg_s5Error_pSgtcSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeGraphRequestParameters", + "printedName": "makeGraphRequestParameters(token:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)makeGraphRequestParametersWithToken:", + "mangledName": "$s12FBSDKCoreKit7ProfileC26makeGraphRequestParameters5tokenSDyS2SGSo16FBSDKAccessTokenCSg_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "current", + "printedName": "current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)currentProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "currentProfile", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)currentProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "currentProfile", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)setCurrentProfile:", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "setCurrentProfile:", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC7currentACSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "fetchCachedProfile", + "printedName": "fetchCachedProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Self?", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)fetchCachedProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC011fetchCachedC0ACXDSgyFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "fetchCachedProfile", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "profileUserDefaultsKey", + "printedName": "profileUserDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)profileUserDefaultsKey", + "mangledName": "$s12FBSDKCoreKit7ProfileC22profileUserDefaultsKeySSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isFromExtension": true, + "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:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)profileUserDefaultsKey", + "mangledName": "$s12FBSDKCoreKit7ProfileC22profileUserDefaultsKeySSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)supportsSecureCoding", + "mangledName": "$s12FBSDKCoreKit7ProfileC20supportsSecureCodingSbvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)supportsSecureCoding", + "mangledName": "$s12FBSDKCoreKit7ProfileC20supportsSecureCodingSbvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithCoder:", + "mangledName": "$s12FBSDKCoreKit7ProfileC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)encodeWithCoder:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6encode4withySo7NSCoderC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO6userIDyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO6userIDyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "firstName", + "printedName": "firstName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9firstNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9firstNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO10middleNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO10middleNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "lastName", + "printedName": "lastName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8lastNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8lastNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO4nameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO4nameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "linkURL", + "printedName": "linkURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO7linkURLyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO7linkURLyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "refreshDate", + "printedName": "refreshDate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11refreshDateyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11refreshDateyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8imageURLyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8imageURLyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO5emailyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO5emailyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "friendIDs", + "printedName": "friendIDs", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9friendIDsyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9friendIDsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "isLimited", + "printedName": "isLimited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9isLimitedyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9isLimitedyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "birthday", + "printedName": "birthday", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8birthdayyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8birthdayyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "ageRange", + "printedName": "ageRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8ageRangeyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8ageRangeyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "hometown", + "printedName": "hometown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8hometownyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8hometownyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8locationyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8locationyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO6genderyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO6genderyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBSDKCoreKit", + "implicit": 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:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10DeliveringpvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10DeliveringpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlHoster", + "printedName": "urlHoster", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenProvider:dataStore:graphRequestFactory:notificationCenter:settings:urlHoster:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProvider9dataStore19graphRequestFactory18notificationCenter8settings9urlHosterAESo011FBSDKAccessG9Providing_pXp_So19FBSDKDataPersisting_pSo010FBSDKGraphlM0_pSo25_FBSDKNotificationPosting_So0X10DeliveringpAA16SettingsProtocol_pSo15FBSDKURLHosting_ptcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProvider9dataStore19graphRequestFactory18notificationCenter8settings9urlHosterAESo011FBSDKAccessG9Providing_pXp_So19FBSDKDataPersisting_pSo010FBSDKGraphlM0_pSo25_FBSDKNotificationPosting_So0X10DeliveringpAA16SettingsProtocol_pSo15FBSDKURLHosting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfile", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ProfileProviding", + "printedName": "ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfilePictureViewState", + "printedName": "ProfilePictureViewState", + "children": [ + { + "kind": "Var", + "name": "profileID", + "printedName": "profileID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "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:12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "scale", + "printedName": "scale", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV5scale14CoreFoundation7CGFloatVvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV5scale12CoreGraphics7CGFloatVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "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": "s:12FBSDKCoreKit23ProfilePictureViewStateV5scale14CoreFoundation7CGFloatVvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV5scale12CoreGraphics7CGFloatVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pictureMode", + "printedName": "pictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "imageShouldFit", + "printedName": "imageShouldFit", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profileID:size:scale:pictureMode:imageShouldFit:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV9profileID4size5scale11pictureMode14imageShouldFitACSS_So6CGSizeV14CoreFoundation7CGFloatVAA0C0C0dL0OSbtcfc", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileID4size5scale11pictureMode14imageShouldFitACSS_So6CGSizeV12CoreGraphics7CGFloatVAA0C0C0dL0OSbtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileProviding", + "printedName": "ProfileProviding", + "children": [ + { + "kind": "Var", + "name": "current", + "printedName": "current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cpy)currentProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "objc_name": "currentProfile", + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)currentProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)setCurrentProfile:", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvsZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "fetchCachedProfile", + "printedName": "fetchCachedProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)fetchCachedProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP011fetchCachedC0AA0C0CSgyFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKProfileProviding", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProtectedModeManager", + "printedName": "ProtectedModeManager", + "children": [ + { + "kind": "Var", + "name": "isEnabled", + "printedName": "isEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC9isEnabled013_23E3C687B8F4H18C50A3A25F390F8C518LLSbvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC9isEnabled013_23E3C687B8F4H18C50A3A25F390F8C518LLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "standardParametersDefault", + "printedName": "standardParametersDefault", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC25standardParametersDefault013_23E3C687B8F4I18C50A3A25F390F8C518LLShySSGvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC25standardParametersDefault013_23E3C687B8F4I18C50A3A25F390F8C518LLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "standardParameters", + "printedName": "standardParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18standardParameters013_23E3C687B8F4H18C50A3A25F390F8C518LLShySSGvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18standardParameters013_23E3C687B8F4H18C50A3A25F390F8C518LLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)enable", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEvents.Name?", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)processParameters:eventName:", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC17processParameters_9eventNameSDySo022FBSDKAppEventParameterI0aypGSgAI_So0jkI0aSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:eventName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtectedModeManager", + "printedName": "FBSDKCoreKit.ProtectedModeManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)init", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProtectedModeManager", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginTooltipError", + "printedName": "LoginTooltipError", + "children": [ + { + "kind": "Var", + "name": "missingTooltipText", + "printedName": "missingTooltipText", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.LoginTooltipError.Type) -> FBSDKCoreKit.LoginTooltipError", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.LoginTooltipError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO07missingD4TextyA2CmF", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO07missingD4TextyA2CmF", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + }, + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17LoginTooltipErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO", + "moduleName": "FBSDKCoreKit", + "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": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConfigurationProvider", + "printedName": "ServerConfigurationProvider", + "children": [ + { + "kind": "Var", + "name": "loggingToken", + "printedName": "loggingToken", + "children": [ + { + "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:12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvp", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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:12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvg", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit27ServerConfigurationProviderC29shouldUseSafariViewController13forDialogNameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC29shouldUseSafariViewController13forDialogNameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadServerConfiguration", + "printedName": "loadServerConfiguration(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKLoginTooltip", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip", + "usr": "c:objc(cs)FBSDKLoginTooltip" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit27ServerConfigurationProviderC04loadcD010completionyySo17FBSDKLoginTooltipCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC04loadcD010completionyySo17FBSDKLoginTooltipCSg_s5Error_pSgtcSg_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProvider", + "printedName": "FBSDKCoreKit.ServerConfigurationProvider", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider(im)init", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AdSupport", + "printedName": "AdSupport", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "Settings", + "printedName": "Settings", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(cpy)sharedSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "sharedSettings", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(cm)sharedSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sdkVersion", + "printedName": "sdkVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)sdkVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC10sdkVersionSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "sdkVersion", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)sdkVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC10sdkVersionSSvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "sdkVersion", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultGraphAPIVersion", + "printedName": "defaultGraphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)defaultGraphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC22defaultGraphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)defaultGraphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC22defaultGraphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jpegCompressionQuality", + "printedName": "jpegCompressionQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)JPEGCompressionQuality", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "JPEGCompressionQuality", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)JPEGCompressionQuality", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setJPEGCompressionQuality:", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22jpegCompressionQuality14CoreFoundation7CGFloatVvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "autoLogAppEventsEnabled", + "printedName": "autoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)autoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)autoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAutoLogAppEventsEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAutoLogAppEventsEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAutoLogAppEventsEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAutoLogAppEventsEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isAutoLogAppEventsEnabled", + "printedName": "_isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codelessDebugLogEnabled", + "printedName": "codelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "codelessDebugLogEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "codelessDebugLogEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setCodelessDebugLogEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isCodelessDebugLogEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isCodelessDebugLogEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsCodelessDebugLogEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isCodelessDebugLogEnabled", + "printedName": "_isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDCollectionEnabled", + "printedName": "advertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "advertiserIDCollectionEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserIDCollectionEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAdvertiserIDCollectionEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserIDCollectionEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserIDCollectionEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsAdvertiserIDCollectionEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isAdvertiserIDCollectionEnabled", + "printedName": "_isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skAdNetworkReportEnabled", + "printedName": "skAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)skAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)skAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setSkAdNetworkReportEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSKAdNetworkReportEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSKAdNetworkReportEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsSKAdNetworkReportEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isEventDataUsageLimited", + "printedName": "isEventDataUsageLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEventDataUsageLimited", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEventDataUsageLimited", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsEventDataUsageLimited:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsEventDataUsageLimited:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseCachedValuesForExpensiveMetadata", + "printedName": "shouldUseCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseCachedValuesForExpensiveMetadata", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseCachedValuesForExpensiveMetadata", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setShouldUseCachedValuesForExpensiveMetadata:", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setShouldUseCachedValuesForExpensiveMetadata:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isGraphErrorRecoveryEnabled", + "printedName": "isGraphErrorRecoveryEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isGraphErrorRecoveryEnabled", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "isGraphErrorRecoveryEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsGraphErrorRecoveryEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setIsGraphErrorRecoveryEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)appID", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appID", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)appID", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "appID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAppID:", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAppID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC5appIDSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appURLSchemeSuffix", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "appURLSchemeSuffix", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAppURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAppURLSchemeSuffix:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_appURLSchemeSuffix", + "printedName": "_appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_appURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "clientToken", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "clientToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setClientToken:", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setClientToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC11clientTokenSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_clientToken", + "printedName": "_clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_clientToken:", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC12_clientTokenSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "displayName", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "displayName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDisplayName:", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDisplayName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC11displayNameSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_displayName", + "printedName": "_displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_displayName:", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC12_displayNameSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "facebookDomainPart", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "facebookDomainPart", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setFacebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setFacebookDomainPart:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_facebookDomainPart", + "printedName": "_facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_facebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIVersion", + "printedName": "graphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIVersion", + "declAttributes": [ + "Final", + "ObjC", + "Lazy", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "graphAPIVersion", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setGraphAPIVersion:", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setGraphAPIVersion:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC15graphAPIVersionSSvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "userAgentSuffix", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "userAgentSuffix", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setUserAgentSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setUserAgentSuffix:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabled", + "printedName": "advertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "advertiserTrackingEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAdvertiserTrackingEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserTrackingEnabled", + "printedName": "isAdvertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserTrackingEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserTrackingEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsAdvertiserTrackingEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertisingTrackingStatus", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertisingTrackingStatus", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertisingTrackingStatus:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0VvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isDataProcessingRestricted", + "printedName": "isDataProcessingRestricted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isDataProcessingRestrictedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isDataProcessingRestricted", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isDataProcessingRestrictedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isDataProcessingRestricted", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "persistableDataProcessingOptions", + "printedName": "persistableDataProcessingOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit8SettingsC32persistableDataProcessingOptionsSDySSypGSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "persistableDataProcessingOptions", + "declAttributes": [ + "Final", + "ObjC", + "Lazy", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit8SettingsC32persistableDataProcessingOptionsSDySSypGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "persistableDataProcessingOptions", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDataProcessingOptions:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24setDataProcessingOptionsyySaySSGSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDataProcessingOptions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:country:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDataProcessingOptions:country:state:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24setDataProcessingOptions_7country5stateySaySSGSg_s5Int32VAJtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDataProcessingOptions:country:state:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "loggingBehaviors", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "loggingBehaviors", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setLoggingBehaviors:", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setLoggingBehaviors:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enableLoggingBehavior", + "printedName": "enableLoggingBehavior(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)enableLoggingBehavior:", + "mangledName": "$s12FBSDKCoreKit8SettingsC21enableLoggingBehavioryySo012FBSDKLoggingF0aF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableLoggingBehavior", + "printedName": "disableLoggingBehavior(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)disableLoggingBehavior:", + "mangledName": "$s12FBSDKCoreKit8SettingsC22disableLoggingBehavioryySo012FBSDKLoggingF0aF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "shouldUseTokenOptimizations", + "printedName": "shouldUseTokenOptimizations", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseTokenOptimizations", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseTokenOptimizations", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setShouldUseTokenOptimizations:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setShouldUseTokenOptimizations:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isSetATETimeExceedsInstallTime", + "printedName": "isSetATETimeExceedsInstallTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit8SettingsC30isSetATETimeExceedsInstallTimeSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "isSetATETimeExceedsInstallTime", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit8SettingsC30isSetATETimeExceedsInstallTimeSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSetATETimeExceedsInstallTime", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isATETimeSufficientlyDelayed", + "printedName": "isATETimeSufficientlyDelayed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit8SettingsC28isATETimeSufficientlyDelayedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isATETimeSufficientlyDelayed", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit8SettingsC28isATETimeSufficientlyDelayedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isATETimeSufficientlyDelayed", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)installTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC16installTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "installTimestamp", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)installTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC16installTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "installTimestamp", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabledTimestamp", + "printedName": "advertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabledTimestamp", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabledTimestamp", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParamValue", + "printedName": "graphAPIDebugParamValue", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC23graphAPIDebugParamValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "graphAPIDebugParamValue", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC23graphAPIDebugParamValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParamValue", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParameterValue", + "printedName": "graphAPIDebugParameterValue", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC27graphAPIDebugParameterValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParameterValue", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC27graphAPIDebugParameterValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParameterValue", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)init", + "mangledName": "$s12FBSDKCoreKit8SettingsCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "recordInstall", + "printedName": "recordInstall()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)recordInstall", + "mangledName": "$s12FBSDKCoreKit8SettingsC13recordInstallyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "recordInstall", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordSetAdvertiserTrackingEnabled", + "printedName": "recordSetAdvertiserTrackingEnabled()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)recordSetAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC34recordSetAdvertiserTrackingEnabledyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logWarnings", + "printedName": "logWarnings()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)logWarnings", + "mangledName": "$s12FBSDKCoreKit8SettingsC11logWarningsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logWarnings", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIfSDKSettingsChanged", + "printedName": "logIfSDKSettingsChanged()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)logIfSDKSettingsChanged", + "mangledName": "$s12FBSDKCoreKit8SettingsC23logIfSDKSettingsChangedyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logIfSDKSettingsChanged", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistedStringProperty", + "printedName": "PersistedStringProperty", + "children": [ + { + "kind": "Var", + "name": "persistenceKey", + "printedName": "persistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovp", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovg", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backingKeyPath", + "printedName": "backingKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(persistenceKey:backingKeyPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + }, + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKey07backingH4PathAeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSSSgGtcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKey07backingH4PathAeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSSSgGtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "getPersistedStringProperty", + "printedName": "getPersistedStringProperty(_:)", + "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": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC26getPersistedStringPropertyySSSgAC0efG0VF", + "mangledName": "$s12FBSDKCoreKit8SettingsC26getPersistedStringPropertyySSSgAC0efG0VF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPersistedStringProperty", + "printedName": "setPersistedStringProperty(_:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + }, + { + "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:12FBSDKCoreKit8SettingsC26setPersistedStringProperty_2toyAC0efG0V_SSSgtF", + "mangledName": "$s12FBSDKCoreKit8SettingsC26setPersistedStringProperty_2toyAC0efG0V_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistedBooleanValue", + "printedName": "PersistedBooleanValue", + "children": [ + { + "kind": "Var", + "name": "persistenceKey", + "printedName": "persistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backingKeyPath", + "printedName": "backingKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultValue", + "printedName": "defaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 2, + "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:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(persistenceKey:backingKeyPath:defaultValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + }, + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKey07backingH4Path07defaultF0AeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSbSgGSbtcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKey07backingH4Path07defaultF0AeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSbSgGSbtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "getPersistedBooleanProperty", + "printedName": "getPersistedBooleanProperty(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC27getPersistedBooleanPropertyySbAC0eF5ValueVF", + "mangledName": "$s12FBSDKCoreKit8SettingsC27getPersistedBooleanPropertyySbAC0eF5ValueVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPersistedBooleanProperty", + "printedName": "setPersistedBooleanProperty(_:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC27setPersistedBooleanProperty_2toyAC0eF5ValueV_SbtF", + "mangledName": "$s12FBSDKCoreKit8SettingsC27setPersistedBooleanProperty_2toyAC0eF5ValueV_SbtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistenceKey", + "printedName": "PersistenceKey", + "children": [ + { + "kind": "Var", + "name": "urlSchemeSuffix", + "printedName": "urlSchemeSuffix", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO15urlSchemeSuffixyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO15urlSchemeSuffixyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO11clientTokenyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO11clientTokenyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO11displayNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO11displayNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "domainPart", + "printedName": "domainPart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO10domainPartyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO10domainPartyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25isAutoLogAppEventsEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25isAutoLogAppEventsEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO31isAdvertiserIDCollectionEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO31isAdvertiserIDCollectionEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25isCodelessDebugLogEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25isCodelessDebugLogEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO16loggingBehaviorsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO16loggingBehaviorsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "appID", + "printedName": "appID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO5appIDyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO5appIDyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "jpegCompressionQuality", + "printedName": "jpegCompressionQuality", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO22jpegCompressionQualityyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO22jpegCompressionQualityyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO26isSKAdNetworkReportEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO26isSKAdNetworkReportEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25advertisingTrackingStatusyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25advertisingTrackingStatusyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "limitEventAndDataUsage", + "printedName": "limitEventAndDataUsage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO22limitEventAndDataUsageyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO22limitEventAndDataUsageyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "useCachedValuesForExpensiveMetadata", + "printedName": "useCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO35useCachedValuesForExpensiveMetadatayA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO35useCachedValuesForExpensiveMetadatayA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "useTokenOptimizations", + "printedName": "useTokenOptimizations", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO21useTokenOptimizationsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO21useTokenOptimizationsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "dataProcessingOptions", + "printedName": "dataProcessingOptions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO21dataProcessingOptionsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO21dataProcessingOptionsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "bitmask", + "printedName": "bitmask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO7bitmaskyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO7bitmaskyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO16installTimestampyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO16installTimestampyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "setAdvertiserTrackingEnabledTimestamp", + "printedName": "setAdvertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO37setAdvertiserTrackingEnabledTimestampyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO37setAdvertiserTrackingEnabledTimestampyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 18 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "appEventsConfigurationProvider", + "printedName": "appEventsConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appEventsConfigurationProvider:dataStore:eventLogger:infoDictionaryProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProvider9dataStore11eventLogger014infoDictionaryI0AESo08FBSDKAppgH9Providing_p_So19FBSDKDataPersisting_pSo17FBSDKEventLogging_pSo09FBSDKInfooQ0_ptcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProvider9dataStore11eventLogger014infoDictionaryI0AESo08FBSDKAppgH9Providing_p_So19FBSDKDataPersisting_pSo17FBSDKEventLogging_pSo09FBSDKInfooQ0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "validateConfiguration", + "printedName": "validateConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)validateConfiguration", + "mangledName": "$s12FBSDKCoreKit8SettingsC21validateConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "unconfiguredDebugMessage", + "printedName": "unconfiguredDebugMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(cpy)unconfiguredDebugMessage", + "mangledName": "$s12FBSDKCoreKit8SettingsC24unconfiguredDebugMessageSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isFromExtension": true, + "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:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(cm)unconfiguredDebugMessage", + "mangledName": "$s12FBSDKCoreKit8SettingsC24unconfiguredDebugMessageSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKSettings", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SettingsProtocol", + "printedName": "SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP" + }, + { + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SettingsProtocol", + "printedName": "SettingsProtocol", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)appID", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)appID", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAppID:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)clientToken", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)clientToken", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setClientToken:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setUserAgentSuffix:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "sdkVersion", + "printedName": "sdkVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)sdkVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP10sdkVersionSSvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)sdkVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP10sdkVersionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)displayName", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)displayName", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDisplayName:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setFacebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setLoggingBehaviors:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAppURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isDataProcessingRestricted", + "printedName": "isDataProcessingRestricted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isDataProcessingRestrictedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isDataProcessingRestrictedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isAutoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isAutoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codelessDebugLogEnabled", + "printedName": "codelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDCollectionEnabled", + "printedName": "advertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isSetATETimeExceedsInstallTime", + "printedName": "isSetATETimeExceedsInstallTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP30isSetATETimeExceedsInstallTimeSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP30isSetATETimeExceedsInstallTimeSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isATETimeSufficientlyDelayed", + "printedName": "isATETimeSufficientlyDelayed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP28isATETimeSufficientlyDelayedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP28isATETimeSufficientlyDelayedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isSKAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isSKAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertisingTrackingStatusSo016FBSDKAdvertisingfG0Vvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertisingTrackingStatusSo016FBSDKAdvertisingfG0Vvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)installTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16installTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)installTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16installTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabledTimestamp", + "printedName": "advertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEventDataUsageLimited", + "printedName": "isEventDataUsageLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsEventDataUsageLimited:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseTokenOptimizations", + "printedName": "shouldUseTokenOptimizations", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setShouldUseTokenOptimizations:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIVersion", + "printedName": "graphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setGraphAPIVersion:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isGraphErrorRecoveryEnabled", + "printedName": "isGraphErrorRecoveryEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsGraphErrorRecoveryEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParamValue", + "printedName": "graphAPIDebugParamValue", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23graphAPIDebugParamValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23graphAPIDebugParamValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParameterValue", + "printedName": "graphAPIDebugParameterValue", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27graphAPIDebugParameterValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27graphAPIDebugParameterValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabled", + "printedName": "advertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserTrackingEnabled", + "printedName": "isAdvertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseCachedValuesForExpensiveMetadata", + "printedName": "shouldUseCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setShouldUseCachedValuesForExpensiveMetadata:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "persistableDataProcessingOptions", + "printedName": "persistableDataProcessingOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP32persistableDataProcessingOptionsSDySSypGSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP32persistableDataProcessingOptionsSDySSypGSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDataProcessingOptions:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP24setDataProcessingOptionsyySaySSGSgF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:country:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDataProcessingOptions:country:state:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP24setDataProcessingOptions_7country5stateySaySSGSg_s5Int32VAJtF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSettings", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DialogConfigurationName", + "printedName": "DialogConfigurationName", + "children": [ + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO7messageSSvpZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO7messageSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit23DialogConfigurationNameO7messageSSvgZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO7messageSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO5shareSSvpZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO5shareSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit23DialogConfigurationNameO5shareSSvgZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO5shareSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareDialogConfiguration", + "printedName": "ShareDialogConfiguration", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialogConfiguration", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationVACycfc", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationVACycfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "defaultShareMode", + "printedName": "defaultShareMode", + "children": [ + { + "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:12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "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:12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "shouldUseNativeDialog", + "printedName": "shouldUseNativeDialog(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV015shouldUseNativeD003forD4NameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV015shouldUseNativeD003forD4NameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV29shouldUseSafariViewController03forD4NameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV29shouldUseSafariViewController03forD4NameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderAESo011FBSDKServerE9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderAESo011FBSDKServerE9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "synchronized", + "printedName": "synchronized(_:closure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() throws -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit12synchronized_7closureyyXl_yyKXEtKF", + "mangledName": "$s12FBSDKCoreKit12synchronized_7closureyyXl_yyKXEtKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Rethrows", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TokenCache", + "printedName": "TokenCache", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessToken", + "printedName": "accessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "accessToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "accessToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAccessToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "authenticationToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "authenticationToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAuthenticationToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCache", + "printedName": "FBSDKCoreKit.TokenCache", + "usr": "s:12FBSDKCoreKit10TokenCacheC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10TokenCacheCACycfc", + "mangledName": "$s12FBSDKCoreKit10TokenCacheCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keychainStore", + "printedName": "keychainStore", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:keychainStore:dataStore:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settings13keychainStore04dataI0AeA16SettingsProtocol_p_So013FBSDKKeychainI0_pSo19FBSDKDataPersisting_ptcfc", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settings13keychainStore04dataI0AeA16SettingsProtocol_p_So013FBSDKKeychainI0_pSo19FBSDKDataPersisting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit10TokenCacheC", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_AEMReporterProtocol", + "printedName": "_AEMReporterProtocol", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)enable", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP6enableyyFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordAndUpdate", + "printedName": "recordAndUpdate(event:currency:value:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)recordAndUpdateEvent:currency:value:parameters:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP15recordAndUpdate5event8currency5value10parametersySS_SSSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "objc_name": "recordAndUpdateEvent:currency:value:parameters:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConversionFilteringEnabled", + "printedName": "setConversionFilteringEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setConversionFilteringEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP29setConversionFilteringEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCatalogMatchingEnabled", + "printedName": "setCatalogMatchingEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setCatalogMatchingEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP25setCatalogMatchingEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAdvertiserRuleMatchInServerEnabled", + "printedName": "setAdvertiserRuleMatchInServerEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP37setAdvertiserRuleMatchInServerEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handle", + "printedName": "handle(_:)", + "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": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)handle:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP6handleyy10Foundation3URLVSgFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKAEMReporter", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_AccessTokenExpirer", + "printedName": "_AccessTokenExpirer", + "children": [ + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(py)notificationCenter", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)notificationCenter", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(notificationCenter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpirer", + "printedName": "FBSDKCoreKit._AccessTokenExpirer", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)initWithNotificationCenter:", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterACSo25_FBSDKNotificationPosting_So0H10Deliveringp_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "checkAccessTokenExpirationDate", + "printedName": "checkAccessTokenExpirationDate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)checkAccessTokenExpirationDate", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC05checkcD14ExpirationDateyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "timerDidFire", + "printedName": "timerDidFire()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)timerDidFire", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC12timerDidFireyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpirer", + "printedName": "FBSDKCoreKit._AccessTokenExpirer", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)init", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "_FBSDKAccessTokenExpirer", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_AccessTokenExpiring", + "printedName": "_AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring", + "mangledName": "$s12FBSDKCoreKit20_AccessTokenExpiringP" + }, + { + "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": "_AccessTokenExpiring", + "printedName": "_AccessTokenExpiring", + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring", + "mangledName": "$s12FBSDKCoreKit20_AccessTokenExpiringP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "_FBSDKAccessTokenExpiring", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AuthenticationServices", + "printedName": "AuthenticationServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SafariServices", + "printedName": "SafariServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPI", + "printedName": "_BridgeAPI", + "children": [ + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIResponseFactory", + "printedName": "bridgeAPIResponseFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeProvider", + "printedName": "appURLSchemeProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pendingRequest", + "printedName": "pendingRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pendingRequestCompletionBlock", + "printedName": "pendingRequestCompletionBlock", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pendingURLOpener", + "printedName": "pendingURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSession", + "printedName": "authenticationSession", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSessionCompletionHandler", + "printedName": "authenticationSessionCompletionHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSessionState", + "printedName": "authenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0OvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0OvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isExpectingBackground", + "printedName": "isExpectingBackground", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "safariViewController", + "printedName": "safariViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isDismissingSafariViewController", + "printedName": "isDismissingSafariViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isActive", + "printedName": "isActive", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6sharedACvpZ", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6sharedACvgZ", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logger:urlOpener:bridgeAPIResponseFactory:appURLSchemeProvider:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + }, + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + }, + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6logger9urlOpener24bridgeAPIResponseFactory20appURLSchemeProvider05errorJ0ACSo11FBSDKLoggerC_So22FBSDKInternalURLOpener_pAA0cI8Creating_pSo08FBSDKAppL9Providing_pSo010FBSDKErrorR0_ptcfc", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6logger9urlOpener24bridgeAPIResponseFactory20appURLSchemeProvider05errorJ0ACSo11FBSDKLoggerC_So22FBSDKInternalURLOpener_pAA0cI8Creating_pSo08FBSDKAppL9Providing_pSo010FBSDKErrorR0_ptcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bridgeAPIRequestCompletionBlock", + "printedName": "bridgeAPIRequestCompletionBlock(request:completion:)", + "children": [ + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC31bridgeAPIRequestCompletionBlock7request10completionySb_s5Error_pSgtcSo011FBSDKBridgeF0_p_ySo0L11APIResponseCctF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC31bridgeAPIRequestCompletionBlock7request10completionySb_s5Error_pSgtcSo011FBSDKBridgeF0_p_ySo0L11APIResponseCctF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURLWithAuthenticationSession", + "printedName": "openURLWithAuthenticationSession(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32openURLWithAuthenticationSession3urly10Foundation3URLV_tF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32openURLWithAuthenticationSession3urly10Foundation3URLV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSessionCompletionHandler", + "printedName": "setSessionCompletionHandler(calling:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC27setSessionCompletionHandler7callingyySb_s5Error_pSgtc_tF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC27setSessionCompletionHandler7callingyySb_s5Error_pSgtc_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearSession", + "printedName": "clearSession()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12clearSessionyyF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12clearSessionyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewControllerDidDisappear", + "printedName": "viewControllerDidDisappear(_:animated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ContainerViewController", + "printedName": "FBSDKCoreKit._ContainerViewController", + "usr": "c:objc(cs)FBSDKContainerViewController" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI(im)viewControllerDidDisappear:animated:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26viewControllerDidDisappear_8animatedySo018FBSDKContainerViewF0C_SbtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "viewControllerDidDisappear:animated:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleBridgeAPIResponse", + "printedName": "handleBridgeAPIResponse(url:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit10_BridgeAPIC06handleC11APIResponse3url17sourceApplicationSb10Foundation3URLV_SSSgtF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC06handleC11APIResponse3url17sourceApplicationSb10Foundation3URLV_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelBridgeRequest", + "printedName": "cancelBridgeRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC06cancelC7RequestyyF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC06cancelC7RequestyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI(im)init", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPICACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "applicationWillResignActive", + "printedName": "applicationWillResignActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationWillResignActive:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC27applicationWillResignActiveyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationWillResignActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationDidBecomeActive:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26applicationDidBecomeActiveyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationDidBecomeActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29applicationDidEnterBackgroundyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationDidEnterBackground:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC11application_4open17sourceApplication10annotationSbSo13UIApplicationC_10Foundation3URLVSSSgypSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:didFinishLaunchingWithOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)application:didFinishLaunchingWithOptions:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC11application_29didFinishLaunchingWithOptionsSbSo13UIApplicationC_SDySo0k6LaunchJ3KeyaypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:didFinishLaunchingWithOptions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "open", + "printedName": "open(_:sender:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + }, + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openURL:sender:handler:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC4open_6sender7handlery10Foundation3URLV_So15FBSDKURLOpening_pSgySb_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openURL:sender:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "open", + "printedName": "open(_:useSafariViewController:from:completionBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openBridgeAPIRequest:useSafariViewController:fromViewController:completionBlock:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC4open_23useSafariViewController4from15completionBlockySo21FBSDKBridgeAPIRequest_p_SbSo06UIViewI0CSgySo0M11APIResponseCctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openBridgeAPIRequest:useSafariViewController:fromViewController:completionBlock:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURLWithSafariViewController", + "printedName": "openURLWithSafariViewController(url:sender:from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "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": "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openURLWithSafariViewController:sender:fromViewController:handler:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC31openURLWithSafariViewController3url6sender4from7handlery10Foundation3URLV_So15FBSDKURLOpening_pSgSo06UIViewI0CSgySb_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openURLWithSafariViewController:sender:fromViewController:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "safariViewControllerDidFinish", + "printedName": "safariViewControllerDidFinish(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)safariViewControllerDidFinish:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29safariViewControllerDidFinishyySo08SFSafarifG0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "safariViewControllerDidFinish:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentationAnchor", + "printedName": "presentationAnchor(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIWindow", + "printedName": "UIKit.UIWindow", + "usr": "c:objc(cs)UIWindow" + }, + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationSession", + "printedName": "AuthenticationServices.ASWebAuthenticationSession", + "usr": "c:objc(cs)ASWebAuthenticationSession" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)presentationAnchorForWebAuthenticationSession:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "presentationAnchorForWebAuthenticationSession:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "_BridgeAPIProtocolNativeV1", + "children": [ + { + "kind": "Var", + "name": "appScheme", + "printedName": "appScheme", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)appScheme", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)appScheme", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataLengthThreshold", + "printedName": "dataLengthThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)dataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19dataLengthThresholdSuvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)dataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19dataLengthThresholdSuvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shouldIncludeAppIcon", + "printedName": "shouldIncludeAppIcon", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)shouldIncludeAppIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C20shouldIncludeAppIconSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)shouldIncludeAppIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C20shouldIncludeAppIconSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pasteboard", + "printedName": "pasteboard", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)pasteboard", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10pasteboardSo15FBSDKPasteboard_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)pasteboard", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10pasteboardSo15FBSDKPasteboard_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultMaxBase64DataLengthThreshold", + "printedName": "defaultMaxBase64DataLengthThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(cpy)defaultMaxBase64DataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C35defaultMaxBase64DataLengthThresholdSuvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(cm)defaultMaxBase64DataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C35defaultMaxBase64DataLengthThresholdSuvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appIcon", + "printedName": "appIcon", + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)appIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C7appIconSo7UIImageCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)appIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C7appIconSo7UIImageCSgvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appScheme:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)initWithAppScheme:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeACSSSg_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppScheme:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appScheme:pasteboard:dataLengthThreshold:shouldIncludeAppIcon:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + }, + { + "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": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appScheme10pasteboard19dataLengthThreshold20shouldIncludeAppIconACSSSg_So15FBSDKPasteboard_pSgSuSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "requestURL", + "printedName": "requestURL(actionID:scheme:methodName:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)requestURLWithActionID:scheme:methodName:parameters:error:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10requestURL8actionID6scheme10methodName10parameters10Foundation0H0VSS_S2SSDySSypGtKF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requestURLWithActionID:scheme:methodName:parameters:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "responseParameters", + "printedName": "responseParameters(actionID:queryParameters:cancelled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutablePointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutablePointer", + "printedName": "Swift.UnsafeMutablePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjCBool", + "printedName": "ObjectiveC.ObjCBool", + "usr": "s:10ObjectiveC8ObjCBoolV" + } + ], + "usr": "s:Sp" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)responseParametersForActionID:queryParameters:cancelled:error:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C18responseParameters8actionID05queryH09cancelledSDySSypGSS_AHSpy10ObjectiveC8ObjCBoolVGSgtKF", + "moduleName": "FBSDKCoreKit", + "objc_name": "responseParametersForActionID:queryParameters:cancelled:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)init", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1CACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bundle", + "printedName": "bundle", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationDeliverer", + "printedName": "notificationDeliverer", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:bundle:notificationDeliverer:internalUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactory6bundle21notificationDeliverer15internalUtilityAESo18FBSDKErrorCreating_p_So28FBSDKInfoDictionaryProviding_pSo27FBSDKNotificationDelivering_pSo013FBSDKInternalO0_ptcfc", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactory6bundle21notificationDeliverer15internalUtilityAESo18FBSDKErrorCreating_p_So28FBSDKInfoDictionaryProviding_pSo27FBSDKNotificationDelivering_pSo013FBSDKInternalO0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKBridgeAPIProtocolNativeV1", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIRequestFactory", + "printedName": "_BridgeAPIRequestFactory", + "children": [ + { + "kind": "Function", + "name": "bridgeAPIRequest", + "printedName": "bridgeAPIRequest(with:scheme:methodName:parameters:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "FBSDKBridgeAPIProtocolType", + "printedName": "FBSDKCoreKit.FBSDKBridgeAPIProtocolType", + "usr": "c:@E@FBSDKBridgeAPIProtocolType" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory(im)bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryC06bridgeD04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeD0_pSgSo0N15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIRequestFactory", + "printedName": "FBSDKCoreKit._BridgeAPIRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory(im)init", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKBridgeAPIRequestFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIResponseFactory", + "printedName": "_BridgeAPIResponseFactory", + "children": [ + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:responseURL:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponseCancelled", + "printedName": "createResponseCancelled(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25_BridgeAPIResponseFactoryC23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIResponseFactory", + "printedName": "FBSDKCoreKit._BridgeAPIResponseFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory(im)init", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BridgeAPIResponseCreating", + "printedName": "BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_DialogConfigurationMapBuilder", + "printedName": "_DialogConfigurationMapBuilder", + "children": [ + { + "kind": "Function", + "name": "buildDialogConfigurationMap", + "printedName": "buildDialogConfigurationMap(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : FBSDKCoreKit._DialogConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "_DialogConfiguration", + "printedName": "FBSDKCoreKit._DialogConfiguration", + "usr": "c:objc(cs)FBSDKDialogConfiguration" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder(im)buildDialogConfigurationMapWithRawConfigurations:", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderC05buildcdE04fromSDySSSo011FBSDKDialogD0CGSaySDySSypGG_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "buildDialogConfigurationMapWithRawConfigurations:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilder", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder(im)init", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKDialogConfigurationMapBuilder", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ErrorFactory", + "printedName": "_ErrorFactory", + "children": [ + { + "kind": "Function", + "name": "error", + "printedName": "error(code:userInfo:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)errorWithCode:userInfo:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC5error4code8userInfo7message010underlyingC0s0C0_pSi_SDySSypGSgSSSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "errorWithCode:userInfo:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(domain:code:userInfo:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)errorWithDomain:code:userInfo:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC5error6domain4code8userInfo7message010underlyingC0s0C0_pSS_SiSDySSypGSgSSSgsAJ_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "errorWithDomain:code:userInfo:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidArgumentError", + "printedName": "invalidArgumentError(name:value:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)invalidArgumentErrorWithName:value:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC015invalidArgumentC04name5value7message010underlyingC0s0C0_pSS_ypSgSSSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "invalidArgumentErrorWithName:value:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidArgumentError", + "printedName": "invalidArgumentError(domain:name:value:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)invalidArgumentErrorWithDomain:name:value:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC015invalidArgumentC06domain4name5value7message010underlyingC0s0C0_pSS_SSypSgSSSgsAJ_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "invalidArgumentErrorWithDomain:name:value:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requiredArgumentError", + "printedName": "requiredArgumentError(name:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)requiredArgumentErrorWithName:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC016requiredArgumentC04name7message010underlyingC0s0C0_pSS_SSSgsAH_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requiredArgumentErrorWithName:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requiredArgumentError", + "printedName": "requiredArgumentError(domain:name:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)requiredArgumentErrorWithDomain:name:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC016requiredArgumentC06domain4name7message010underlyingC0s0C0_pSS_S2SSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requiredArgumentErrorWithDomain:name:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unknownError", + "printedName": "unknownError(message:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)unknownErrorWithMessage:userInfo:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC07unknownC07message8userInfos0C0_pSSSg_SDySSypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "unknownErrorWithMessage:userInfo:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reportError", + "printedName": "reportError(code:domain:message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC06reportC04code6domain7messageySi_S2SSgtF", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC06reportC04code6domain7messageySi_S2SSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorFactory", + "printedName": "FBSDKCoreKit._ErrorFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)init", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "reporter", + "printedName": "reporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvp", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvg", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvs", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvM", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterAESo19FBSDKErrorReporting_p_tcfc", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterAESo19FBSDKErrorReporting_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKErrorFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_FBCloseIcon", + "printedName": "_FBCloseIcon", + "children": [ + { + "kind": "Function", + "name": "image", + "printedName": "image(size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)imageWithSize:", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC5image4sizeSo7UIImageCSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:primaryColor:secondaryColor:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)imageWithSize:primaryColor:secondaryColor:scale:", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC5image4size12primaryColor09secondaryH05scaleSo7UIImageCSgSo6CGSizeV_So7UIColorCAO12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FBCloseIcon", + "printedName": "FBSDKCoreKit._FBCloseIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)init", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKCloseIcon", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_FBLogo", + "printedName": "_FBLogo", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit7_FBLogoC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FBLogo", + "printedName": "FBSDKCoreKit._FBLogo", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo(im)init", + "mangledName": "$s12FBSDKCoreKit7_FBLogoCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo", + "mangledName": "$s12FBSDKCoreKit7_FBLogoC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKLogo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_FeatureManager", + "printedName": "_FeatureManager", + "children": [ + { + "kind": "Var", + "name": "featureManagerPrefix", + "printedName": "featureManagerPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(py)featureManagerPrefix", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07featureD6PrefixSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)featureManagerPrefix", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07featureD6PrefixSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(cpy)shared", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(cm)shared", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEnabled", + "printedName": "isEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)isEnabled:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC9isEnabledySbSo12FBSDKFeatureVF", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEnabled:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "check", + "printedName": "check(_:completionBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + }, + { + "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:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)checkFeature:completionBlock:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC5check_15completionBlockySo12FBSDKFeatureV_ySbctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "checkFeature:completionBlock:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableFeature", + "printedName": "disableFeature(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)disableFeature:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07disableC0yySo12FBSDKFeatureVF", + "moduleName": "FBSDKCoreKit", + "objc_name": "disableFeature:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "storageKey", + "printedName": "storageKey(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)storageKeyFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC10storageKey3forSSSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkGateKeeper", + "printedName": "checkGateKeeper(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)checkGateKeeperFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC15checkGateKeeper3forSbSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "defaultStatus", + "printedName": "defaultStatus(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)defaultStatusFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC13defaultStatus3forSbSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParentFeature", + "printedName": "getParentFeature(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SDKFeature?", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC09getParentC03forSo12FBSDKFeatureVSgAG_tF", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC09getParentC03forSo12FBSDKFeatureVSgAG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "featureName", + "printedName": "featureName(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)featureNameFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC11featureName3forSSSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)init", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "store", + "printedName": "store", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(gateKeeperManager:settings:store:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD08settings5storeAESo09FBSDKGateH8Managing_pXp_AA16SettingsProtocol_pSo19FBSDKDataPersisting_ptcfc", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD08settings5storeAESo09FBSDKGateH8Managing_pXp_AA16SettingsProtocol_pSo19FBSDKDataPersisting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKFeatureManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_HumanSilhouetteIcon", + "printedName": "_HumanSilhouetteIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_HumanSilhouetteIcon", + "printedName": "FBSDKCoreKit._HumanSilhouetteIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon(im)init", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKHumanSilhouetteIcon", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_MeasurementEvent", + "printedName": "_MeasurementEvent", + "children": [ + { + "kind": "Function", + "name": "postNotification", + "printedName": "postNotification(eventName:arguments:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent(im)postNotificationForEventName:args:", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventC16postNotification9eventName9argumentsySS_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "postNotificationForEventName:args:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MeasurementEvent", + "printedName": "FBSDKCoreKit._MeasurementEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent(im)init", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKMeasurementEvent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_PaymentObserver", + "printedName": "_PaymentObserver", + "children": [ + { + "kind": "Var", + "name": "isObservingTransactions", + "printedName": "isObservingTransactions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvs", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvM", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "paymentQueue", + "printedName": "paymentQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestorFactory", + "printedName": "requestorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(paymentQueue:paymentProductRequestorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserver", + "printedName": "FBSDKCoreKit._PaymentObserver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + }, + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)initWithPaymentQueue:paymentProductRequestorFactory:", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueue0E23ProductRequestorFactoryACSo09SKPaymentF0C_So012FBSDKPaymentgH8Creating_ptcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithPaymentQueue:paymentProductRequestorFactory:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startObservingTransactions", + "printedName": "startObservingTransactions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)startObservingTransactions", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC26startObservingTransactionsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "startObservingTransactions", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopObservingTransactions", + "printedName": "stopObservingTransactions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)stopObservingTransactions", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC25stopObservingTransactionsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "stopObservingTransactions", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserver", + "printedName": "FBSDKCoreKit._PaymentObserver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)init", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "paymentQueue", + "printedName": "paymentQueue(_:updatedTransactions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[StoreKit.SKPaymentTransaction]", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)paymentQueue:updatedTransactions:", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueue_19updatedTransactionsySo09SKPaymentF0C_SaySo0I11TransactionCGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "paymentQueue:updatedTransactions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleTransaction", + "printedName": "handleTransaction(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC17handleTransactionyySo09SKPaymentF0CF", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC17handleTransactionyySo09SKPaymentF0CF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKPaymentObserver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_PaymentProductRequestorFactory", + "printedName": "_PaymentProductRequestorFactory", + "children": [ + { + "kind": "Function", + "name": "createRequestor", + "printedName": "createRequestor(transaction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PaymentProductRequestor", + "printedName": "FBSDKCoreKit.PaymentProductRequestor", + "usr": "c:objc(cs)FBSDKPaymentProductRequestor" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory(im)createRequestorWithTransaction:", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC06createE011transactionSo012FBSDKPaymentdE0CSo20SKPaymentTransactionC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createRequestorWithTransaction:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorFactory", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory(im)init", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "store", + "printedName": "store", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loggerFactory", + "printedName": "loggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "productsRequestFactory", + "printedName": "productsRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appStoreReceiptProvider", + "printedName": "appStoreReceiptProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:eventLogger:gateKeeperManager:store:loggerFactory:productsRequestFactory:appStoreReceiptProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + }, + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settings11eventLogger17gateKeeperManager5store06loggerF0015productsRequestF023appStoreReceiptProviderAeA16SettingsProtocol_p_So17FBSDKEventLogging_pSo09FBSDKGateM8Managing_pXpSo19FBSDKDataPersisting_pSo21__FBSDKLoggerCreating_pSo013FBSDKProductsR8Creating_pSo08FBSDKApptU9Providing_ptcfc", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settings11eventLogger17gateKeeperManager5store06loggerF0015productsRequestF023appStoreReceiptProviderAeA16SettingsProtocol_p_So17FBSDKEventLogging_pSo09FBSDKGateM8Managing_pXpSo19FBSDKDataPersisting_pSo21__FBSDKLoggerCreating_pSo013FBSDKProductsR8Creating_pSo08FBSDKApptU9Providing_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKPaymentProductRequestorFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_RestrictiveEventFilter", + "printedName": "_RestrictiveEventFilter", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(py)eventName", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventNameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)eventName", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventNameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "restrictiveParameters", + "printedName": "restrictiveParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(py)restrictiveParameters", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC21restrictiveParametersSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)restrictiveParameters", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC21restrictiveParametersSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventName:restrictiveParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_RestrictiveEventFilter", + "printedName": "FBSDKCoreKit._RestrictiveEventFilter", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)initWithEventName:restrictiveParameters:", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventName21restrictiveParametersACSS_SDySSypGtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEventName:restrictiveParameters:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_RestrictiveEventFilter", + "printedName": "FBSDKCoreKit._RestrictiveEventFilter", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)init", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKRestrictiveEventFilter", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_SKAdNetworkEvent", + "printedName": "_SKAdNetworkEvent", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(py)eventName", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC9eventNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)eventName", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC9eventNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(py)values", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)values", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)setValues:", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvM", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "_SKAdNetworkEvent", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)initWithJSON:", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC4jsonACSgSDySSypG_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithJSON:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_SKAdNetworkEvent", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)init", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKSKAdNetworkEvent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_ViewImpressionLogger", + "printedName": "_ViewImpressionLogger", + "children": [ + { + "kind": "Var", + "name": "impressionTrackers", + "printedName": "impressionTrackers", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cpy)impressionTrackers", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)impressionTrackers", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)setImpressionTrackers:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(py)eventName", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameSo013FBSDKAppEventG0avp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)eventName", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameSo013FBSDKAppEventG0avg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "trackedImpressions", + "printedName": "trackedImpressions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(py)trackedImpressions", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)trackedImpressions", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)setTrackedImpressions:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)initWithEventName:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameACSo013FBSDKAppEventG0a_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEventName:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "retrieveLogger", + "printedName": "retrieveLogger(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)retrieveLoggerWith:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC08retrieveE04withACSo17FBSDKAppEventNamea_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC29applicationDidEnterBackgroundyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logImpression", + "printedName": "logImpression(withIdentifier:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)logImpressionWithIdentifier:parameters:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC03logD014withIdentifier10parametersySS_SDySo26FBSDKAppEventParameterNameaypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logImpressionWithIdentifier:parameters:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)init", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationDeliverer", + "printedName": "notificationDeliverer", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tokenWallet", + "printedName": "tokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(graphRequestFactory:eventLogger:notificationDeliverer:tokenWallet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactory05eventE021notificationDeliverer11tokenWalletAESo010FBSDKGraphiJ0_p_So17FBSDKEventLogging_pSo27FBSDKNotificationDelivering_pSo25FBSDKAccessTokenProviding_pXptcfc", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactory05eventE021notificationDeliverer11tokenWalletAESo010FBSDKGraphiJ0_p_So17FBSDKEventLogging_pSo27FBSDKNotificationDelivering_pSo25FBSDKAccessTokenProviding_pXptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKViewImpressionLogger", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_WebDialog", + "printedName": "_WebDialog", + "children": [ + { + "kind": "Var", + "name": "shouldDeferVisibility", + "printedName": "shouldDeferVisibility", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)shouldDeferVisibility", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)shouldDeferVisibility", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setShouldDeferVisibility:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKCoreKit.WebDialogDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)delegate", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.WebDialogDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebDialogDelegate", + "printedName": "FBSDKCoreKit.WebDialogDelegate", + "usr": "c:objc(pl)FBSDKWebDialogDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)delegate", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.WebDialogDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebDialogDelegate", + "printedName": "FBSDKCoreKit.WebDialogDelegate", + "usr": "c:objc(pl)FBSDKWebDialogDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setDelegate:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)name", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)name", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setName:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC4nameSSvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "webViewFrame", + "printedName": "webViewFrame", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)webViewFrame", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webViewFrame", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setWebViewFrame:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)parameters", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)parameters", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setParameters:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "backgroundView", + "printedName": "backgroundView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)backgroundView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)backgroundView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setBackgroundView:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dialogView", + "printedName": "dialogView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)dialogView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)dialogView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setDialogView:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)path", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)path", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setPath:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC4pathSSSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:parameters:webViewFrame:path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)initWithName:parameters:webViewFrame:path:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4name10parameters12webViewFrame4pathACSS_SDyS2SGSgSo6CGRectVSSSgtcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)initWithName:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)show", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4showyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addObservers", + "printedName": "addObservers()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)addObservers", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12addObserversyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deviceOrientationDidChangeNotification", + "printedName": "deviceOrientationDidChangeNotification(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)deviceOrientationDidChangeNotification:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC38deviceOrientationDidChangeNotificationyy10Foundation0I0VF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeObservers", + "printedName": "removeObservers()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)removeObservers", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC15removeObserversyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)cancel", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC6cancelyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "complete", + "printedName": "complete(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)completeWith:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8complete4withySDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismiss", + "printedName": "dismiss(animated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)dismissWithAnimated:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC7dismiss8animatedySb_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fail", + "printedName": "fail(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)failWith:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4fail4withys5Error_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateURL", + "printedName": "generateURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)generateURLAndReturnError:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC11generateURL10Foundation0F0VyKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showWebView", + "printedName": "showWebView()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)showWebView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC04showC4ViewyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationFrameForOrientation", + "printedName": "applicationFrameForOrientation()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)applicationFrameForOrientation", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC30applicationFrameForOrientationSo6CGRectVyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateView", + "printedName": "updateView(scale:alpha:animationDuration:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "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:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)updateViewWithScale:alpha:animationDuration:completion:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10updateView5scale5alpha17animationDuration10completiony12CoreGraphics7CGFloatV_AKSdySbcSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)init", + "mangledName": "$s12FBSDKCoreKit10_WebDialogCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "webDialogView", + "printedName": "webDialogView(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogView:didCompleteWithResults:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD4View_22didCompleteWithResultsySo08FBSDKWebdF0C_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogView:didCompleteWithResults:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogView", + "printedName": "webDialogView(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogView:didFailWithError:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD4View_16didFailWithErrorySo08FBSDKWebdF0C_s0J0_ptF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogView:didFailWithError:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogViewDidCancel", + "printedName": "webDialogViewDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogViewDidCancel:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD13ViewDidCancelyySo08FBSDKWebdF0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogViewDidCancel:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogViewDidFinishLoad", + "printedName": "webDialogViewDidFinishLoad(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogViewDidFinishLoad:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD17ViewDidFinishLoadyySo08FBSDKWebdF0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogViewDidFinishLoad:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "windowFinder", + "printedName": "windowFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:windowFinder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactory12windowFinderAESo18FBSDKErrorCreating_p_So19_FBSDKWindowFinding_ptcfc", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactory12windowFinderAESo18FBSDKErrorCreating_p_So19_FBSDKWindowFinding_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKWebDialog", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_WebViewFactory", + "printedName": "_WebViewFactory", + "children": [ + { + "kind": "Function", + "name": "createWebView", + "printedName": "createWebView(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebView", + "printedName": "FBSDKCoreKit.WebView", + "usr": "c:objc(pl)FBSDKWebView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory(im)createWebViewWithFrame:", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryC06createcD05frameSo08FBSDKWebD0_pSo6CGRectV_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createWebViewWithFrame:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewFactory", + "printedName": "FBSDKCoreKit._WebViewFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory(im)init", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKWebViewFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AccessToken", + "printedName": "AccessToken", + "children": [ + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "expiredPermissions", + "printedName": "expiredPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hasGranted", + "printedName": "hasGranted(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "declKind": "Func", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE10hasGrantedySbAC10PermissionOF", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE10hasGrantedySbAC10PermissionOF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAccessToken", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAccessToken", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ASWebAuthenticationSession", + "printedName": "ASWebAuthenticationSession", + "declKind": "Class", + "usr": "c:objc(cs)ASWebAuthenticationSession", + "moduleName": "AuthenticationServices", + "isOpen": true, + "intro_iOS": "12.0", + "objc_name": "ASWebAuthenticationSession", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "AuthenticationSessionProtocol", + "printedName": "AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Comparable", + "printedName": "Comparable", + "children": [ + { + "kind": "Function", + "name": "fb_clamped", + "printedName": "fb_clamped(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ClosedRange", + "printedName": "Swift.ClosedRange<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SN" + } + ], + "declKind": "Func", + "usr": "s:SL12FBSDKCoreKitE10fb_clamped2toxSNyxG_tF", + "mangledName": "$sSL12FBSDKCoreKitE10fb_clamped2toxSNyxG_tF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:SL", + "mangledName": "$sSL", + "moduleName": "Swift", + "genericSig": "<τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AEMReporter", + "printedName": "AEMReporter", + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter", + "mangledName": "$s8FBAEMKit11AEMReporterC", + "moduleName": "FBAEMKit", + "objc_name": "FBAEMReporter", + "declAttributes": [ + "Final", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_AEMReporterProtocol", + "printedName": "_AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP" + }, + { + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLink.swift", + "kind": "StringLiteral", + "offset": 396, + "length": 7, + "value": "\"FBSDKCoreKit.AppLink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10839, + "length": 17, + "value": "\"outputURLScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10884, + "length": 11, + "value": "\"outputURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10923, + "length": 11, + "value": "\"sourceURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10963, + "length": 12, + "value": "\"sourceHost\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11006, + "length": 14, + "value": "\"sourceScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11046, + "length": 9, + "value": "\"success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11078, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11108, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11175, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11204, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 609, + "length": 17, + "value": "\"FBSDKCoreKit.AppLinkNavigation\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 671, + "length": 5, + "value": "\"url\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 708, + "length": 14, + "value": "\"app_store_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 751, + "length": 10, + "value": "\"app_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 5, + "value": "\"web\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 810, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 840, + "length": 8, + "value": "\"iphone\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 871, + "length": 6, + "value": "\"ipad\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 910, + "length": 17, + "value": "\"should_fallback\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 954, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 493, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 493, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 318, + "length": 29, + "value": "\"FBSDKCoreKit.AppLinkResolverRequestBuilder\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkTarget.swift", + "kind": "StringLiteral", + "offset": 419, + "length": 13, + "value": "\"FBSDKCoreKit.AppLinkTarget\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 908, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 954, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 1141, + "length": 31, + "value": "\"com.facebook.sdk.kits.bitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18010, + "length": 15, + "value": "\"fb_al_inbound\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18059, + "length": 17, + "value": "\"fb_auto_applink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18210, + "length": 11, + "value": "\"targetURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18257, + "length": 15, + "value": "\"targetURLHost\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18312, + "length": 19, + "value": "\"referralTargetURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18365, + "length": 13, + "value": "\"referralURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18416, + "length": 17, + "value": "\"referralAppName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18464, + "length": 10, + "value": "\"inputURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18511, + "length": 16, + "value": "\"inputURLScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18567, + "length": 19, + "value": "\"core_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18631, + "length": 20, + "value": "\"login_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18700, + "length": 24, + "value": "\"marketing_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18773, + "length": 24, + "value": "\"messenger_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18843, + "length": 21, + "value": "\"places_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18909, + "length": 20, + "value": "\"share_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18971, + "length": 17, + "value": "\"tv_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 19024, + "length": 15, + "value": "\"SchemeWarning\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 369, + "length": 5, + "value": "\"aud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 398, + "length": 7, + "value": "\"email\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 427, + "length": 5, + "value": "\"exp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 461, + "length": 13, + "value": "\"family_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 502, + "length": 12, + "value": "\"given_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 5, + "value": "\"iat\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 563, + "length": 5, + "value": "\"iss\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 590, + "length": 5, + "value": "\"jti\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 624, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 660, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 690, + "length": 7, + "value": "\"nonce\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 723, + "length": 9, + "value": "\"picture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 754, + "length": 5, + "value": "\"sub\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 790, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 837, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 925, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 969, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1011, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1053, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1125, + "length": 14, + "value": "\"facebook.com\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1173, + "length": 15, + "value": "\".facebook.com\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 287, + "length": 25, + "value": "\"FBSDKCoreKit.AuthenticationTokenClaims\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BackgroundEventLogger.swift", + "kind": "StringLiteral", + "offset": 327, + "length": 37, + "value": "\"BGTaskSchedulerPermittedIdentifiers\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BackgroundEventLogger.swift", + "kind": "StringLiteral", + "offset": 1623, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13668, + "length": 74, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13700, + "length": 1, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13735, + "length": 5, + "value": "\"nil\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13741, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 444, + "length": 7, + "value": "\"event\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 529, + "length": 18, + "value": "\"deprecated_param\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 583, + "length": 21, + "value": "\"is_deprecated_event\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "BooleanLiteral", + "offset": 653, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "BooleanLiteral", + "offset": 1361, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1349, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1460, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "StringLiteral", + "offset": 1543, + "length": 4, + "value": "\"me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 32, + "value": "\"fb_mobile_achievement_unlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 24, + "value": "\"fb_mobile_activate_app\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 28, + "value": "\"fb_mobile_add_payment_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 23, + "value": "\"fb_mobile_add_to_cart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 27, + "value": "\"fb_mobile_add_to_wishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 33, + "value": "\"fb_mobile_complete_registration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 633, + "length": 24, + "value": "\"fb_mobile_content_view\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 30, + "value": "\"fb_mobile_initiated_checkout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 739, + "length": 26, + "value": "\"fb_mobile_level_achieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 20, + "value": "\"fb_mobile_purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 16, + "value": "\"fb_mobile_rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 856, + "length": 18, + "value": "\"fb_mobile_search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 897, + "length": 25, + "value": "\"fb_mobile_spent_credits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 31, + "value": "\"fb_mobile_tutorial_completion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 32, + "value": "\"fb_mobile_achievement_unlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 24, + "value": "\"fb_mobile_activate_app\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 28, + "value": "\"fb_mobile_add_payment_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 23, + "value": "\"fb_mobile_add_to_cart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 27, + "value": "\"fb_mobile_add_to_wishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 33, + "value": "\"fb_mobile_complete_registration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 633, + "length": 24, + "value": "\"fb_mobile_content_view\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 30, + "value": "\"fb_mobile_initiated_checkout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 739, + "length": 26, + "value": "\"fb_mobile_level_achieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 20, + "value": "\"fb_mobile_purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 16, + "value": "\"fb_mobile_rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 856, + "length": 18, + "value": "\"fb_mobile_search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 897, + "length": 25, + "value": "\"fb_mobile_spent_credits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 31, + "value": "\"fb_mobile_tutorial_completion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1036, + "length": 10, + "value": "\"_logTime\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1066, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 13, + "value": "\"_valueToSum\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1165, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1202, + "length": 17, + "value": "\"fb_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1241, + "length": 16, + "value": "\"fb_description\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1273, + "length": 10, + "value": "\"fb_level\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 21, + "value": "\"fb_max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 14, + "value": "\"fb_num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1393, + "length": 27, + "value": "\"fb_payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 24, + "value": "\"fb_registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 18, + "value": "\"fb_search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 12, + "value": "\"fb_success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 13, + "value": "\"fb_order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1620, + "length": 13, + "value": "\"fb_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1036, + "length": 10, + "value": "\"_logTime\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1066, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 13, + "value": "\"_valueToSum\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1165, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1202, + "length": 17, + "value": "\"fb_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1241, + "length": 16, + "value": "\"fb_description\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1273, + "length": 10, + "value": "\"fb_level\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 21, + "value": "\"fb_max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 14, + "value": "\"fb_num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1393, + "length": 27, + "value": "\"fb_payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 24, + "value": "\"fb_registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 18, + "value": "\"fb_search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 12, + "value": "\"fb_success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 13, + "value": "\"fb_order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1620, + "length": 13, + "value": "\"fb_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1988, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 13, + "value": "\"app_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2053, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2085, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2203, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2248, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2340, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2396, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2489, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2534, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2575, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1988, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 13, + "value": "\"app_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2053, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2085, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2203, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2248, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2340, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2396, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2489, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2534, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2575, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2754, + "length": 11, + "value": "\"user_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 10, + "value": "\"app_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2814, + "length": 13, + "value": "\"custom_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2850, + "length": 15, + "value": "\"custom_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2754, + "length": 11, + "value": "\"user_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 10, + "value": "\"app_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2814, + "length": 13, + "value": "\"custom_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2850, + "length": 15, + "value": "\"custom_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2962, + "length": 12, + "value": "\"event_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2994, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3027, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3078, + "length": 14, + "value": "\"content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3149, + "length": 18, + "value": "\"max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3186, + "length": 11, + "value": "\"num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3228, + "length": 24, + "value": "\"payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3281, + "length": 21, + "value": "\"registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 15, + "value": "\"search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3373, + "length": 10, + "value": "\"order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3400, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2962, + "length": 12, + "value": "\"event_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2994, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3027, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3078, + "length": 14, + "value": "\"content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3149, + "length": 18, + "value": "\"max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3186, + "length": 11, + "value": "\"num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3228, + "length": 24, + "value": "\"payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3281, + "length": 21, + "value": "\"registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 15, + "value": "\"search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3373, + "length": 10, + "value": "\"order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3400, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3516, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 13, + "value": "\"fb_login_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3588, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3624, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3664, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3751, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3805, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3843, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3899, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3946, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3992, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4037, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4078, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4148, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3516, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 13, + "value": "\"fb_login_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3588, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3624, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3664, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3751, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3805, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3843, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3899, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3946, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3992, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4037, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4078, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4148, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4234, + "length": 21, + "value": "\"AchievementUnlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4277, + "length": 13, + "value": "\"ActivateApp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4315, + "length": 16, + "value": "\"AddPaymentInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4351, + "length": 11, + "value": "\"AddToCart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4386, + "length": 15, + "value": "\"AddToWishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4432, + "length": 22, + "value": "\"CompleteRegistration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4476, + "length": 13, + "value": "\"ViewContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 18, + "value": "\"InitiateCheckout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4558, + "length": 15, + "value": "\"LevelAchieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4592, + "length": 10, + "value": "\"Purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4617, + "length": 6, + "value": "\"Rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4640, + "length": 8, + "value": "\"Search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4671, + "length": 14, + "value": "\"SpentCredits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4714, + "length": 20, + "value": "\"TutorialCompletion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4234, + "length": 21, + "value": "\"AchievementUnlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4277, + "length": 13, + "value": "\"ActivateApp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4315, + "length": 16, + "value": "\"AddPaymentInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4351, + "length": 11, + "value": "\"AddToCart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4386, + "length": 15, + "value": "\"AddToWishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4432, + "length": 22, + "value": "\"CompleteRegistration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4476, + "length": 13, + "value": "\"ViewContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 18, + "value": "\"InitiateCheckout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4558, + "length": 15, + "value": "\"LevelAchieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4592, + "length": 10, + "value": "\"Purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4617, + "length": 6, + "value": "\"Rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4640, + "length": 8, + "value": "\"Search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4671, + "length": 14, + "value": "\"SpentCredits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4714, + "length": 20, + "value": "\"TutorialCompletion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 15, + "value": "\"action_source\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4861, + "length": 18, + "value": "\"MobileAppInstall\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4906, + "length": 19, + "value": "\"install_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 15, + "value": "\"action_source\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4861, + "length": 18, + "value": "\"MobileAppInstall\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4906, + "length": 19, + "value": "\"install_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8628, + "length": 25, + "value": "\"data_processing_options\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8673, + "length": 33, + "value": "\"data_processing_options_country\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8724, + "length": 31, + "value": "\"data_processing_options_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8628, + "length": 25, + "value": "\"data_processing_options\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8673, + "length": 33, + "value": "\"data_processing_options_country\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8724, + "length": 31, + "value": "\"data_processing_options_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 10, + "value": "\"endpoint\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 12, + "value": "\"is_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 377, + "length": 12, + "value": "\"dataset_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 12, + "value": "\"access_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 10, + "value": "\"endpoint\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 12, + "value": "\"is_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 377, + "length": 12, + "value": "\"dataset_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 12, + "value": "\"access_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 22, + "value": "\"cloudbridge_settings\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 736, + "length": 20, + "value": "\"capi_gateway_queue\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "BooleanLiteral", + "offset": 849, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "BooleanLiteral", + "offset": 1029, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "Array", + "offset": 1083, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "IntegerLiteral", + "offset": 1163, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "StringLiteral", + "offset": 380, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 423, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 482, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "Array", + "offset": 518, + "length": 192, + "value": "[1009, 1004, 429, 503, 504]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "Array", + "offset": 977, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 485, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 569, + "length": 20, + "value": "\"oauth\/access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 12, + "value": "\"grant_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 654, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 689, + "length": 11, + "value": "\"client_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 728, + "length": 12, + "value": "\"expires_at\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 29, + "value": "\"data_access_expiration_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 841, + "length": 12, + "value": "\"permission\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 878, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 912, + "length": 9, + "value": "\"granted\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 948, + "length": 10, + "value": "\"declined\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 984, + "length": 9, + "value": "\"expired\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1077, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1082, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1087, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1159, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1164, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1211, + "length": 21, + "value": "\"fb_extend_sso_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1311, + "length": 16, + "value": "\"me\/permissions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1370, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/MACARuleMatchingManager.swift", + "kind": "BooleanLiteral", + "offset": 357, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/MACARuleMatchingManager.swift", + "kind": "Array", + "offset": 422, + "length": 262, + "value": "[\"event\", \"_locale\", \"_appVersion\", \"_deviceOS\", \"_platform\", \"_deviceModel\", \"_nativeAppID\", \"_nativeAppShortVersion\", \"_timezone\", \"_carrier\", \"_deviceOSTypeName\", \"_deviceOSVersion\", \"_remainingDiskGB\"]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7931, + "length": 16, + "value": "\"public_profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 15, + "value": "\"user_about_me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8060, + "length": 20, + "value": "\"user_actions.books\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8109, + "length": 21, + "value": "\"user_action.fitness\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8157, + "length": 20, + "value": "\"user_actions.music\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 19, + "value": "\"user_actions.news\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8249, + "length": 20, + "value": "\"user_actions.video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8292, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8338, + "length": 24, + "value": "\"user_education_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8383, + "length": 13, + "value": "\"user_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8424, + "length": 21, + "value": "\"user_games_activity\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8466, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8502, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8537, + "length": 12, + "value": "\"user_likes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8572, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8615, + "length": 21, + "value": "\"user_managed_groups\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8657, + "length": 13, + "value": "\"user_photos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8690, + "length": 12, + "value": "\"user_posts\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8730, + "length": 20, + "value": "\"user_relationships\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8784, + "length": 27, + "value": "\"user_relationship_details\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8842, + "length": 24, + "value": "\"user_religion_politics\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8893, + "length": 20, + "value": "\"user_tagged_places\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8934, + "length": 13, + "value": "\"user_videos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8969, + "length": 14, + "value": "\"user_website\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9009, + "length": 19, + "value": "\"user_work_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9060, + "length": 25, + "value": "\"read_custom_friendlists\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9108, + "length": 15, + "value": "\"read_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 32, + "value": "\"read_audience_network_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9221, + "length": 21, + "value": "\"read_page_mailboxes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9266, + "length": 17, + "value": "\"pages_show_list\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9308, + "length": 18, + "value": "\"pages_manage_cta\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 31, + "value": "\"pages_manage_instant_articles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9412, + "length": 10, + "value": "\"ads_read\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9441, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9475, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7931, + "length": 16, + "value": "\"public_profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 15, + "value": "\"user_about_me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8060, + "length": 20, + "value": "\"user_actions.books\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8109, + "length": 21, + "value": "\"user_action.fitness\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8157, + "length": 20, + "value": "\"user_actions.music\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 19, + "value": "\"user_actions.news\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8249, + "length": 20, + "value": "\"user_actions.video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8292, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8338, + "length": 24, + "value": "\"user_education_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8383, + "length": 13, + "value": "\"user_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8424, + "length": 21, + "value": "\"user_games_activity\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8466, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8502, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8537, + "length": 12, + "value": "\"user_likes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8572, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8615, + "length": 21, + "value": "\"user_managed_groups\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8657, + "length": 13, + "value": "\"user_photos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8690, + "length": 12, + "value": "\"user_posts\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8730, + "length": 20, + "value": "\"user_relationships\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8784, + "length": 27, + "value": "\"user_relationship_details\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8842, + "length": 24, + "value": "\"user_religion_politics\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8893, + "length": 20, + "value": "\"user_tagged_places\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8934, + "length": 13, + "value": "\"user_videos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8969, + "length": 14, + "value": "\"user_website\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9009, + "length": 19, + "value": "\"user_work_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9060, + "length": 25, + "value": "\"read_custom_friendlists\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9108, + "length": 15, + "value": "\"read_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 32, + "value": "\"read_audience_network_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9221, + "length": 21, + "value": "\"read_page_mailboxes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9266, + "length": 17, + "value": "\"pages_show_list\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9308, + "length": 18, + "value": "\"pages_manage_cta\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 31, + "value": "\"pages_manage_instant_articles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9412, + "length": 10, + "value": "\"ads_read\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9441, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9475, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 591, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 699, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 806, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 5, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 591, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 699, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 806, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 5, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2718, + "length": 7, + "value": "\"graph\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2748, + "length": 9, + "value": "\"picture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2857, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2857, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 292, + "length": 12, + "value": "\"MM\/dd\/yyyy\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5901, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5957, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6060, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6095, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6129, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5901, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5957, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6060, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6095, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6129, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6238, + "length": 4, + "value": "\"me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6275, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6316, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6378, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6404, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6439, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6473, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6505, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6378, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6404, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6439, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6473, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6505, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6725, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6744, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6763, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ProfileProviding.swift", + "kind": "StringLiteral", + "offset": 2627, + "length": 46, + "value": "\"com.facebook.sdk.FBSDKProfile.currentProfile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile.swift", + "kind": "BooleanLiteral", + "offset": 3836, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile.swift", + "kind": "StringLiteral", + "offset": 858, + "length": 7, + "value": "\"FBSDKCoreKit.Profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "BooleanLiteral", + "offset": 365, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "Array", + "offset": 426, + "length": 3246, + "value": "[\"_currency\", \"_valueToSum\", \"fb_availability\", \"fb_body_style\", \"fb_checkin_date\", \"fb_checkout_date\", \"fb_city\", \"fb_condition_of_vehicle\", \"fb_content_category\", \"fb_content_ids\", \"fb_content_name\", \"fb_content_type\", \"fb_contents\", \"fb_country\", \"fb_currency\", \"fb_delivery_category\", \"fb_departing_arrival_date\", \"fb_departing_departure_date\", \"fb_destination_airport\", \"fb_destination_ids\", \"fb_dma_code\", \"fb_drivetrain\", \"fb_exterior_color\", \"fb_fuel_type\", \"fb_hotel_score\", \"fb_interior_color\", \"fb_lease_end_date\", \"fb_lease_start_date\", \"fb_listing_type\", \"fb_make\", \"fb_mileage.unit\", \"fb_mileage.value\", \"fb_model\", \"fb_neighborhood\", \"fb_num_adults\", \"fb_num_children\", \"fb_num_infants\", \"fb_num_items\", \"fb_order_id\", \"fb_origin_airport\", \"fb_postal_code\", \"fb_predicted_ltv\", \"fb_preferred_baths_range\", \"fb_preferred_beds_range\", \"fb_preferred_neighborhoods\", \"fb_preferred_num_stops\", \"fb_preferred_price_range\", \"fb_preferred_star_ratings\", \"fb_price\", \"fb_property_type\", \"fb_region\", \"fb_returning_arrival_date\", \"fb_returning_departure_date\", \"fb_search_string\", \"fb_state_of_vehicle\", \"fb_status\", \"fb_suggested_destinations\", \"fb_suggested_home_listings\", \"fb_suggested_hotels\", \"fb_suggested_jobs\", \"fb_suggested_local_service_businesses\", \"fb_suggested_location_based_items\", \"fb_suggested_vehicles\", \"fb_transmission\", \"fb_travel_class\", \"fb_travel_end\", \"fb_travel_start\", \"fb_trim\", \"fb_user_bucket\", \"fb_value\", \"fb_vin\", \"fb_year\", \"lead_event_source\", \"predicted_ltv\", \"product_catalog_id\", \"app_user_id\", \"appVersion\", \"_eventName\", \"_eventName_md5\", \"_currency\", \"_implicitlyLogged\", \"_inBackground\", \"_isTimedEvent\", \"_logTime\", \"fb_order_id\", \"_session_id\", \"_ui\", \"_valueToSum\", \"_valueToUpdate\", \"_is_fb_codeless\", \"_is_suggested_event\", \"_fb_pixel_referral_id\", \"fb_pixel_id\", \"trace_id\", \"user_agent\", \"subscription_id\", \"predicted_ltv\", \"event_id\", \"_restrictedParams\", \"_onDeviceParams\", \"purchase_valid_result_type\", \"core_lib_included\", \"login_lib_included\", \"share_lib_included\", \"place_lib_included\", \"messenger_lib_included\", \"applinks_lib_included\", \"marketing_lib_included\", \"_codeless_action\", \"sdk_initialized\", \"billing_client_lib_included\", \"billing_service_lib_included\", \"user_data_keys\", \"device_push_token\", \"fb_mobile_pckg_fp\", \"fb_mobile_app_cert_hash\", \"aggregate_id\", \"anonymous_id\", \"campaign_ids\", \"fb_post_attachment\", \"receipt_data\", \"ad_type\", \"fb_content\", \"fb_content_id\", \"fb_content_type\", \"fb_currency\", \"fb_description\", \"fb_level\", \"fb_max_rating_value\", \"fb_num_items\", \"fb_order_id\", \"fb_payment_info_available\", \"fb_registration_method\", \"fb_search_string\", \"fb_success\", \"pm\", \"_audiencePropertyIds\", \"cs_maca\"]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "Array", + "offset": 3721, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 3661, + "length": 460, + "value": "\": Please set a value for FacebookAutoLogAppEventsEnabled. Set the flag to TRUE if you want to collect app install, app launch and in-app purchase events automatically. To request user consent before collecting data, set the flag value to FALSE, then change to TRUE once user consent is received. Learn more: https:\/\/developers.facebook.com\/docs\/app-events\/getting-started-app-events-ios#disable-auto-events.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 209, + "value": "\": You haven't set a value for FacebookAdvertiserIDCollectionEnabled. Set the flag to TRUE if you want to collect Advertiser ID for better advertising and analytics results.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4441, + "length": 250, + "value": "\": The value for FacebookAdvertiserIDCollectionEnabled is currently set to FALSE so you're sending app events without collecting Advertiser ID. This can affect the quality of your advertising and analytics results.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4842, + "length": 7, + "value": "\"usage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4897, + "length": 9, + "value": "\"initial\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4955, + "length": 10, + "value": "\"previous\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 5013, + "length": 9, + "value": "\"current\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2021, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2222, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2405, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 25, + "value": "\"FacebookUrlSchemeSuffix\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 340, + "length": 21, + "value": "\"FacebookClientToken\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 21, + "value": "\"FacebookDisplayName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 20, + "value": "\"FacebookDomainPart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 33, + "value": "\"FacebookAutoLogAppEventsEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 39, + "value": "\"FacebookAdvertiserIDCollectionEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 33, + "value": "\"FacebookCodelessDebugLogEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 703, + "length": 25, + "value": "\"FacebookLoggingBehavior\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 746, + "length": 15, + "value": "\"FacebookAppID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 796, + "length": 32, + "value": "\"FacebookJpegCompressionQuality\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 867, + "length": 34, + "value": "\"FacebookSKAdNetworkReportEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 939, + "length": 57, + "value": "\"com.facebook.sdk:FBSDKSettingsAdvertisingTrackingStatus\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 54, + "value": "\"com.facebook.sdk:FBSDKSettingsLimitEventAndDataUsage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 67, + "value": "\"com.facebook.sdk:FBSDKSettingsUseCachedValuesForExpensiveMetadata\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 53, + "value": "\"com.facebook.sdk.FBSDKSettingsUseTokenOptimizations\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 53, + "value": "\"com.facebook.sdk:FBSDKSettingsDataProcessingOptions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1394, + "length": 39, + "value": "\"com.facebook.sdk:FBSDKSettingsBitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKSettingsInstallTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1560, + "length": 69, + "value": "\"com.facebook.sdk:FBSDKSettingsSetAdvertiserTrackingEnabledTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 25, + "value": "\"FacebookUrlSchemeSuffix\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 340, + "length": 21, + "value": "\"FacebookClientToken\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 21, + "value": "\"FacebookDisplayName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 20, + "value": "\"FacebookDomainPart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 33, + "value": "\"FacebookAutoLogAppEventsEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 39, + "value": "\"FacebookAdvertiserIDCollectionEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 33, + "value": "\"FacebookCodelessDebugLogEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 703, + "length": 25, + "value": "\"FacebookLoggingBehavior\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 746, + "length": 15, + "value": "\"FacebookAppID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 796, + "length": 32, + "value": "\"FacebookJpegCompressionQuality\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 867, + "length": 34, + "value": "\"FacebookSKAdNetworkReportEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 939, + "length": 57, + "value": "\"com.facebook.sdk:FBSDKSettingsAdvertisingTrackingStatus\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 54, + "value": "\"com.facebook.sdk:FBSDKSettingsLimitEventAndDataUsage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 67, + "value": "\"com.facebook.sdk:FBSDKSettingsUseCachedValuesForExpensiveMetadata\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 53, + "value": "\"com.facebook.sdk.FBSDKSettingsUseTokenOptimizations\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 53, + "value": "\"com.facebook.sdk:FBSDKSettingsDataProcessingOptions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1394, + "length": 39, + "value": "\"com.facebook.sdk:FBSDKSettingsBitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKSettingsInstallTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1560, + "length": 69, + "value": "\"com.facebook.sdk:FBSDKSettingsSetAdvertiserTrackingEnabledTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "FloatLiteral", + "offset": 1347, + "length": 3, + "value": "0.9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 5615, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 6356, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 7159, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 7308, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "StringLiteral", + "offset": 12338, + "length": 5, + "value": "\"ldu\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 16945, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "StringLiteral", + "offset": 20579, + "length": 391, + "value": "\"As of v9.0, you must initialize the SDK prior to calling any methods or setting any properties. You can do this by calling `ApplicationDelegate.application(_:didFinishLaunchingWithOptions:)`. Learn more: https:\/\/developers.facebook.com\/docs\/ios\/getting-started. If no `UIApplication` instance is available, you can use `ApplicationDelegate.initializeSDK()`.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ShareDialogConfiguration.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ShareDialogConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 314, + "length": 52, + "value": "\"com.facebook.sdk.v4.FBSDKAccessTokenInformationKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 404, + "length": 60, + "value": "\"com.facebook.sdk.v4.FBSDKAccessTokenInformationKeychainKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 514, + "length": 60, + "value": "\"com.facebook.sdk.v9.FBSDKAuthenticationTokenInformationKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 620, + "length": 68, + "value": "\"com.facebook.sdk.v9.FBSDKAuthenticationTokenInformationKeychainKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 716, + "length": 11, + "value": "\"tokenUUID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 758, + "length": 14, + "value": "\"tokenEncoded\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/_AccessTokenExpirer.swift", + "kind": "StringLiteral", + "offset": 483, + "length": 19, + "value": "\"FBSDKCoreKit._AccessTokenExpirer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 682, + "length": 59, + "value": "\"com.apple.AuthenticationServices.WebAuthenticationSession\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 777, + "length": 11, + "value": "\"com.apple\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 8, + "value": "\"bridge\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1420, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1519, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1542, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 445, + "length": 10, + "value": "\"FBSDKCoreKit._BridgeAPI\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "IntegerLiteral", + "offset": 693, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "IntegerLiteral", + "offset": 700, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1417, + "length": 5, + "value": "\"png\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1486, + "length": 10, + "value": "\"isBase64\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1527, + "length": 14, + "value": "\"isPasteboard\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1563, + "length": 5, + "value": "\"tag\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 32, + "value": "\"fbAppBridgeType_jsonReadyValue\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 39, + "value": "\"com.facebook.Facebook.FBAppBridgeType\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 15, + "value": "\"CFBundleIcons\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1802, + "length": 21, + "value": "\"CFBundlePrimaryIcon\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1851, + "length": 19, + "value": "\"CFBundleIconFiles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1926, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1965, + "length": 16, + "value": "\"method_results\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 19, + "value": "\"completionGesture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2061, + "length": 8, + "value": "\"cancel\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2094, + "length": 8, + "value": "\"dialog\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2177, + "length": 11, + "value": "\"action_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2214, + "length": 10, + "value": "\"app_icon\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2250, + "length": 10, + "value": "\"app_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2289, + "length": 13, + "value": "\"sdk_version\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2360, + "length": 13, + "value": "\"bridge_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2398, + "length": 13, + "value": "\"method_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2466, + "length": 6, + "value": "\"code\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2497, + "length": 8, + "value": "\"domain\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2532, + "length": 11, + "value": "\"user_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 457, + "length": 26, + "value": "\"FBSDKCoreKit._BridgeAPIProtocolNativeV1\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 587, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 615, + "length": 5, + "value": "\"url\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 647, + "length": 10, + "value": "\"versions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 529, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 578, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKErrorDeveloperMessageKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 44, + "value": "\"com.facebook.sdk:FBSDKErrorArgumentNameKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 45, + "value": "\"com.facebook.sdk:FBSDKErrorArgumentValueKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/FeatureManager\/_FeatureManager.swift", + "kind": "StringLiteral", + "offset": 571, + "length": 51, + "value": "\"com.facebook.sdk:FBSDKFeatureManager.FBSDKFeature\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_MeasurementEvent.swift", + "kind": "StringLiteral", + "offset": 691, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_MeasurementEvent.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 12, + "value": "\"event_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/_PaymentObserver.swift", + "kind": "BooleanLiteral", + "offset": 594, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/_PaymentObserver.swift", + "kind": "StringLiteral", + "offset": 514, + "length": 16, + "value": "\"FBSDKCoreKit._PaymentObserver\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/_RestrictiveEventFilter.swift", + "kind": "StringLiteral", + "offset": 459, + "length": 23, + "value": "\"FBSDKCoreKit._RestrictiveEventFilter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 604, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 10, + "value": "\"currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 711, + "length": 8, + "value": "\"amount\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 453, + "length": 17, + "value": "\"FBSDKCoreKit._SKAdNetworkEvent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/UI\/_ViewImpressionLogger.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 21, + "value": "\"FBSDKCoreKit._ViewImpressionLogger\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "BooleanLiteral", + "offset": 507, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "FloatLiteral", + "offset": 785, + "length": 3, + "value": "0.2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "FloatLiteral", + "offset": 814, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 9, + "value": "\"display\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 913, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 948, + "length": 14, + "value": "\"redirect_uri\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 986, + "length": 8, + "value": "\"app_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1024, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1103, + "length": 7, + "value": "\"touch\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1139, + "length": 35, + "value": "\"ios-\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1173, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1200, + "length": 21, + "value": "\"fbconnect:\/\/success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 447, + "length": 10, + "value": "\"FBSDKCoreKit._WebDialog\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 00000000..d31a1eda --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,685 @@ +// 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-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import AdSupport +import AuthenticationServices +import FBAEMKit +@_exported import FBSDKCoreKit +import FBSDKCoreKit_Basics +import Foundation +import SafariServices +import StoreKit +import Swift +import UIKit +import _Concurrency +import _StringProcessing +extension FBSDKCoreKit.AccessToken { + public var permissions: Swift.Set { + get + } + public var declinedPermissions: Swift.Set { + get + } + public var expiredPermissions: Swift.Set { + get + } + public func hasGranted(_ permission: FBSDKCoreKit.Permission) -> Swift.Bool +} +@objcMembers @objc(FBSDKAppLink) final public class AppLink : ObjectiveC.NSObject, FBSDKCoreKit._AppLinkProtocol { + @objc final public let sourceURL: Foundation.URL? + @objc final public let targets: [FBSDKCoreKit.AppLinkTargetProtocol] + @objc final public let webURL: Foundation.URL? + @objc final public var isBackToReferrer: Swift.Bool + @objc(initWithSourceURL:targets:webURL:) convenience public init(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLink. This method will be removed in future releases.\"") + @objc(appLinkWithSourceURL:targets:webURL:) public static func appLink(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?) -> FBSDKCoreKit._AppLinkProtocol + @objc(initWithSourceURL:targets:webURL:isBackToReferrer:) public init(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?, isBackToReferrer: Swift.Bool) + @objc deinit +} +@available(iOSApplicationExtension, unavailable, message: "Not available in app extension") +@objcMembers @objc(FBSDKAppLinkNavigation) final public class AppLinkNavigation : ObjectiveC.NSObject { + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `defaultResolver` instead.") + @nonobjc public static var `default`: FBSDKCoreKit.AppLinkResolving { + get + set + } + @objc(defaultResolver) public static var defaultResolver: FBSDKCoreKit.AppLinkResolving { + @objc get + @objc set + } + @objc final public let extras: [Swift.String : Any] + @objc final public let appLinkData: [Swift.String : Any] + @objc final public let appLink: FBSDKCoreKit.AppLink + @objc final public var navigationType: FBSDKCoreKit.AppLinkNavigationType { + @objc get + } + @objc(initWithAppLink:extras:appLinkData:) public init(appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any]) + @available(*, deprecated, message: "Please use init(appLink:extras:appLinkData:) to instantiate an `AppLinkNavigation`.\nThis method will be removed in the next major version.\"") + @objc(initWithAppLink:extras:appLinkData:settings:) convenience public init(appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any], settings: FBSDKCoreKit.SettingsProtocol) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLinkNavigation. This method will be removed in future releases.\"") + @objc(navigationWithAppLink:extras:appLinkData:settings:) public static func navigation(with appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any], settings: FBSDKCoreKit.SettingsProtocol) -> FBSDKCoreKit.AppLinkNavigation + @objc(callbackAppLinkDataForAppWithName:url:) public static func callbackAppLinkData(forApp appName: Swift.String, url: Swift.String) -> [Swift.String : [Swift.String : Swift.String]] + @available(swift, obsoleted: 0.1) + @objc(navigate:) final public func navigate(error errorPointer: Foundation.NSErrorPointer) -> FBSDKCoreKit.AppLinkNavigationType + @nonobjc final public func navigate() throws -> FBSDKCoreKit.AppLinkNavigationType + @objc(resolveAppLink:handler:) public static func resolveAppLink(_ destination: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @objc(resolveAppLink:resolver:handler:) public static func resolveAppLink(_ destination: Foundation.URL, resolver: FBSDKCoreKit.AppLinkResolving, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @available(swift, obsoleted: 0.1) + @objc(navigateToAppLink:error:) public static func navigate(to appLink: FBSDKCoreKit.AppLink, errorPointer: Foundation.ErrorPointer) -> FBSDKCoreKit.AppLinkNavigationType + @nonobjc public static func navigate(to appLink: FBSDKCoreKit.AppLink) throws -> FBSDKCoreKit.AppLinkNavigationType + @objc(navigationTypeForLink:) public static func navigationType(for appLink: FBSDKCoreKit.AppLink) -> FBSDKCoreKit.AppLinkNavigationType + @objc(navigateToURL:handler:) public static func navigate(to destination: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkNavigationBlock) + @objc(navigateToURL:resolver:handler:) public static func navigate(to destination: Foundation.URL, resolver: FBSDKCoreKit.AppLinkResolving, handler: @escaping FBSDKCoreKit.AppLinkNavigationBlock) + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKAppLinkResolver) final public class AppLinkResolver : ObjectiveC.NSObject, FBSDKCoreKit.AppLinkResolving { + @objc final public func appLink(from url: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @objc @available(iOSApplicationExtension, unavailable, message: "Not available in app extension") + final public func appLinks(from urls: [Foundation.URL], handler: @escaping FBSDKCoreKit.AppLinksBlock) + @objc override dynamic public init() + @objc deinit +} +@objcMembers @objc(FBSDKAppLinkTarget) final public class AppLinkTarget : ObjectiveC.NSObject, FBSDKCoreKit.AppLinkTargetProtocol { + @objc final public let url: Foundation.URL? + @objc final public let appStoreId: Swift.String? + @objc final public let appName: Swift.String + @objc(initWithURL:appStoreId:appName:) public init(url: Foundation.URL?, appStoreId: Swift.String?, appName: Swift.String) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLinkTarget. This method will be removed in future releases.\"") + @objc(appLinkTargetWithURL:appStoreId:appName:) public static func appLinkTargetWithURL(url: Foundation.URL?, appStoreId: Swift.String?, appName: Swift.String) -> FBSDKCoreKit.AppLinkTarget + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKApplicationDelegate) final public class ApplicationDelegate : ObjectiveC.NSObject { + @objc(sharedInstance) public static var shared: FBSDKCoreKit.ApplicationDelegate { + get + } + @objc final public func initializeSDK() + @discardableResult + @objc(application:continueUserActivity:) final public func application(_ application: UIKit.UIApplication, continue userActivity: Foundation.NSUserActivity) -> Swift.Bool + @discardableResult + @objc(application:openURL:options:) final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, options: [UIKit.UIApplication.OpenURLOptionsKey : Any]) -> Swift.Bool + @discardableResult + @objc(application:openURL:sourceApplication:annotation:) final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc @discardableResult + final public func application(_ application: UIKit.UIApplication, didFinishLaunchingWithOptions launchOptions: [UIKit.UIApplication.LaunchOptionsKey : Any]? = nil) -> Swift.Bool + @objc final public func addObserver(_ observer: FBSDKCoreKit.FBSDKApplicationObserving) + @objc final public func removeObserver(_ observer: FBSDKCoreKit.FBSDKApplicationObserving) + @objc deinit +} +@_hasMissingDesignatedInitializers @objc(FBSDKAuthenticationTokenClaims) final public class AuthenticationTokenClaims : ObjectiveC.NSObject { + final public let jti: Swift.String + final public let iss: Swift.String + final public let aud: Swift.String + final public let nonce: Swift.String + final public let exp: Foundation.TimeInterval + final public let iat: Foundation.TimeInterval + final public let sub: Swift.String + final public let name: Swift.String? + final public let givenName: Swift.String? + final public let middleName: Swift.String? + final public let familyName: Swift.String? + final public let email: Swift.String? + final public let picture: Swift.String? + final public let userFriends: [Swift.String]? + final public let userBirthday: Swift.String? + final public let userAgeRange: [Swift.String : Foundation.NSNumber]? + final public let userHometown: [Swift.String : Swift.String]? + final public let userLocation: [Swift.String : Swift.String]? + final public let userGender: Swift.String? + final public let userLink: Swift.String? + @objc(initWithEncodedClaims:nonce:) convenience public init?(encodedClaims: Swift.String, nonce expectedNonce: Swift.String) + @objc deinit +} +@objc(FBSDKCAPIReporter) public protocol CAPIReporter { + @objc func enable() + @objc func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) + @objc func recordEvent(_ parameters: [Swift.String : Any]) +} +@_inheritsConvenienceInitializers @objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { + @objc public static let shared: FBSDKCoreKit._InternalURLOpener + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKIcon) open class FBIcon : ObjectiveC.NSObject { + @objc open func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, scale: CoreFoundation.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { + @objc @_Concurrency.MainActor(unsafe) final public var pictureMode: FBSDKCoreKit.Profile.PictureMode { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var profileID: Swift.String { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreFoundation.CGRect { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc override final public var contentMode: UIKit.UIView.ContentMode { + @objc get + @objc set + } + @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, profile: FBSDKCoreKit.Profile? = nil) + @objc(initWithProfile:) @_Concurrency.MainActor(unsafe) convenience public init(profile: FBSDKCoreKit.Profile? = nil) + @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreFoundation.CGRect) + @objc(initWithCoder:) @_Concurrency.MainActor(unsafe) required dynamic public init?(coder: Foundation.NSCoder) + @objc @_Concurrency.MainActor(unsafe) final public func setNeedsImageUpdate() + @objc deinit +} +public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager +public typealias CAPIGBlock = (Swift.Bool) -> Swift.Void +@objc @_inheritsConvenienceInitializers @objcMembers final public class FBSDKAppEventsCAPIManager : ObjectiveC.NSObject, FBSDKCoreKit.CAPIReporter { + @objc public static let shared: FBSDKCoreKit.FBSDKAppEventsCAPIManager + @objc override dynamic public init() + @objc final public func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) + @objc final public func enable() + @objc final public func recordEvent(_ parameters: [Swift.String : Any]) + @objc deinit +} +@objc @_inheritsConvenienceInitializers @objcMembers public class FBSDKTransformerGraphRequestFactory : ObjectiveC.NSObject { + @objc public static let shared: FBSDKCoreKit.FBSDKTransformerGraphRequestFactory + public var credentials: FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials? { + get + } + public struct CapiGCredentials { + public let accessKey: Swift.String + public let capiGatewayURL: Swift.String + public let datasetID: Swift.String + } + @objc override dynamic public init() + @objc public func configure(datasetID: Swift.String, url: Swift.String, accessKey: Swift.String) + @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any], userAgent: Swift.String) + @objc deinit +} +final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { + public init() + @objc final public func createKeychainStore(service: Swift.String, accessGroup: Swift.String?) -> FBSDKCoreKit.KeychainStoreProtocol + @objc deinit +} +@objc(FBSDKMACARuleMatching) public protocol MACARuleMatching { + @objc func enable() + @objc func processParameters(_ params: Foundation.NSDictionary?, event: Swift.String?) -> Foundation.NSDictionary? +} +public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { + case publicProfile + case userFriends + case email + case userAboutMe + case userActionsBooks + case userActionsFitness + case userActionsMusic + case userActionsNews + case userActionsVideo + case userBirthday + case userEducationHistory + case userEvents + case userGamesActivity + case userGender + case userHometown + case userLikes + case userLocation + case userManagedGroups + case userPhotos + case userPosts + case userRelationships + case userRelationshipDetails + case userReligionPolitics + case userTaggedPlaces + case userVideos + case userWebsite + case userWorkHistory + case readCustomFriendlists + case readInsights + case readAudienceNetworkInsights + case readPageMailboxes + case pagesShowList + case pagesManageCta + case pagesManageInstantArticles + case adsRead + case userLink + case userAgeRange + case custom(Swift.String) + public init(stringLiteral value: Swift.String) + public var name: Swift.String { + get + } + public func hash(into hasher: inout Swift.Hasher) + public static func == (a: FBSDKCoreKit.Permission, b: FBSDKCoreKit.Permission) -> Swift.Bool + public typealias ExtendedGraphemeClusterLiteralType = Swift.String + public typealias StringLiteralType = Swift.String + public typealias UnicodeScalarLiteralType = Swift.String + public var hashValue: Swift.Int { + get + } +} +extension FBSDKCoreKit.Profile { + @objc(FBSDKProfilePictureMode) public enum PictureMode : Swift.UInt { + case square + case normal + case album + case small + case large + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreFoundation.CGSize) -> Foundation.URL? +} +extension FBSDKCoreKit.Profile { + @objc(loadCurrentProfileWithCompletion:) public static func loadCurrentProfile(completion: FBSDKCoreKit.ProfileBlock?) +} +extension FBSDKCoreKit.Profile : FBSDKCoreKit.ProfileProviding { + @objc(currentProfile) public static var current: FBSDKCoreKit.Profile? { + @objc get + @objc set + } + @objc public static func fetchCachedProfile() -> Self? +} +extension FBSDKCoreKit.Profile : Foundation.NSSecureCoding { + @objc public static var supportsSecureCoding: Swift.Bool { + @objc get + } + @objc convenience dynamic public init?(coder decoder: Foundation.NSCoder) + @objc final public func encode(with encoder: Foundation.NSCoder) +} +@objcMembers @objc(FBSDKProfile) final public class Profile : ObjectiveC.NSObject { + @objc final public let userID: FBSDKCoreKit.UserIdentifier + @objc final public let firstName: Swift.String? + @objc final public let middleName: Swift.String? + @objc final public let lastName: Swift.String? + @objc final public let name: Swift.String? + @objc final public let linkURL: Foundation.URL? + @objc final public let refreshDate: Foundation.Date + @objc final public let imageURL: Foundation.URL? + @objc final public let email: Swift.String? + @objc final public let friendIDs: [FBSDKCoreKit.UserIdentifier]? + @objc final public let birthday: Foundation.Date? + @objc final public let ageRange: FBSDKCoreKit.UserAgeRange? + @objc final public let hometown: FBSDKCoreKit.Location? + @objc final public let location: FBSDKCoreKit.Location? + @objc final public let gender: Swift.String? + @objc public static var isUpdatedWithAccessTokenChange: Swift.Bool { + @objc get + @objc set + } + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:) convenience public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String?, middleName: Swift.String?, lastName: Swift.String?, name: Swift.String?, linkURL: Foundation.URL?, refreshDate: Foundation.Date?) + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:) convenience public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String? = nil, middleName: Swift.String? = nil, lastName: Swift.String? = nil, name: Swift.String? = nil, linkURL: Foundation.URL? = nil, refreshDate: Foundation.Date? = Date(), imageURL: Foundation.URL? = nil, email: Swift.String? = nil, friendIDs: [FBSDKCoreKit.UserIdentifier]? = nil, birthday: Foundation.Date? = nil, ageRange: FBSDKCoreKit.UserAgeRange? = nil, hometown: FBSDKCoreKit.Location? = nil, location: FBSDKCoreKit.Location? = nil, gender: Swift.String? = nil) + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:) public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String?, middleName: Swift.String?, lastName: Swift.String?, name: Swift.String?, linkURL: Foundation.URL?, refreshDate: Foundation.Date?, imageURL: Foundation.URL?, email: Swift.String?, friendIDs: [FBSDKCoreKit.UserIdentifier]?, birthday: Foundation.Date?, ageRange: FBSDKCoreKit.UserAgeRange?, hometown: FBSDKCoreKit.Location?, location: FBSDKCoreKit.Location?, gender: Swift.String?, isLimited: Swift.Bool) + @available(*, deprecated, message: "This method is deprecated and will be removed in the next major release. Use `isUpdatedWithAccessTokenChange` instead.") + @objc(enableUpdatesOnAccessTokenChange:) public static func enableUpdatesOnAccessTokenChange(_ enabled: Swift.Bool) + @objc deinit +} +@objc(FBSDKProfileProviding) public protocol ProfileProviding { + @objc(currentProfile) static var current: FBSDKCoreKit.Profile? { get set } + @objc static func fetchCachedProfile() -> FBSDKCoreKit.Profile? +} +public typealias LoginTooltipBlock = (FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> Swift.Void +public enum LoginTooltipError : Swift.Error { + case missingTooltipText + public static func == (a: FBSDKCoreKit.LoginTooltipError, b: FBSDKCoreKit.LoginTooltipError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc @_inheritsConvenienceInitializers final public class ServerConfigurationProvider : ObjectiveC.NSObject { + final public var loggingToken: Swift.String? { + get + } + final public func shouldUseSafariViewController(forDialogName dialogName: Swift.String) -> Swift.Bool + final public func loadServerConfiguration(completion: FBSDKCoreKit.LoginTooltipBlock?) + @objc override dynamic public init() + @objc deinit +} +extension FBSDKCoreKit.Settings { + @objc final public func recordInstall() + @objc final public func logWarnings() + @objc final public func logIfSDKSettingsChanged() +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSettings) final public class Settings : ObjectiveC.NSObject, FBSDKCoreKit.SettingsProtocol, FBSDKCoreKit.SettingsLogging, FBSDKCoreKit._ClientTokenProviding { + @objc(sharedSettings) public static let shared: FBSDKCoreKit.Settings + @objc final public var sdkVersion: Swift.String { + @objc get + } + @objc final public var defaultGraphAPIVersion: Swift.String { + @objc get + } + @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreFoundation.CGFloat { + @objc get + @objc set + } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAutoLogAppEventsEnabled` instead.") + final public var autoLogAppEventsEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isAutoLogAppEventsEnabled: Swift.Bool { + @objc get + @objc set + } + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.") + @objc final public var codelessDebugLogEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isCodelessDebugLogEnabled: Swift.Bool { + @objc get + @objc set + } + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.") + @objc final public var advertiserIDCollectionEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isAdvertiserIDCollectionEnabled: Swift.Bool { + @objc get + @objc set + } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isSKAdNetworkReportEnabled` instead.") + final public var skAdNetworkReportEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isSKAdNetworkReportEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isEventDataUsageLimited: Swift.Bool { + @objc get + @objc set + } + @objc final public var shouldUseCachedValuesForExpensiveMetadata: Swift.Bool { + @objc get + @objc set + } + @objc final public var isGraphErrorRecoveryEnabled: Swift.Bool + @objc final public var appID: Swift.String? { + @objc get + @objc set + } + @objc final public var appURLSchemeSuffix: Swift.String? { + @objc get + @objc set + } + @objc final public var clientToken: Swift.String? { + @objc get + @objc set + } + @objc final public var displayName: Swift.String? { + @objc get + @objc set + } + @objc final public var facebookDomainPart: Swift.String? { + @objc get + @objc set + } + @objc final public var graphAPIVersion: Swift.String { + @objc get + @objc set + } + @objc final public var userAgentSuffix: Swift.String? + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.") + @objc final public var advertiserTrackingEnabled: Swift.Bool { + @objc get + @objc set + } + @objc final public var isAdvertiserTrackingEnabled: Swift.Bool { + @objc get + @objc set(isNewlyAllowed) + } + @objc final public var advertisingTrackingStatus: FBSDKCoreKit.AdvertisingTrackingStatus { + @objc get + @objc set + } + @objc final public var isDataProcessingRestricted: Swift.Bool { + @objc get + } + @objc final public var persistableDataProcessingOptions: [FBSDKCoreKit.DataProcessingOptionKey.RawValue : Any]? { + @objc get + } + @objc final public func setDataProcessingOptions(_ options: [Swift.String]?) + @objc final public func setDataProcessingOptions(_ options: [Swift.String]?, country: Swift.Int32, state: Swift.Int32) + @objc final public var loggingBehaviors: Swift.Set { + @objc get + @objc set + } + @objc final public func enableLoggingBehavior(_ loggingBehavior: FBSDKCoreKit.LoggingBehavior) + @objc final public func disableLoggingBehavior(_ loggingBehavior: FBSDKCoreKit.LoggingBehavior) + @objc final public var shouldUseTokenOptimizations: Swift.Bool { + @objc get + @objc set + } + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.") + @objc final public var isSetATETimeExceedsInstallTime: Swift.Bool { + @objc get + } + @objc final public var isATETimeSufficientlyDelayed: Swift.Bool { + @objc get + } + @objc final public var installTimestamp: Foundation.Date? { + @objc get + } + @objc final public var advertiserTrackingEnabledTimestamp: Foundation.Date? { + @objc get + } + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.") + @objc final public var graphAPIDebugParamValue: Swift.String? { + @objc get + } + @objc final public var graphAPIDebugParameterValue: Swift.String? { + @objc get + } + @objc override dynamic public init() + @objc deinit +} +@objc(FBSDKSettings) public protocol SettingsProtocol { + @objc var appID: Swift.String? { get set } + @objc var clientToken: Swift.String? { get set } + @objc var userAgentSuffix: Swift.String? { get set } + @objc var sdkVersion: Swift.String { get } + @objc var displayName: Swift.String? { get set } + @objc var facebookDomainPart: Swift.String? { get set } + @objc var loggingBehaviors: Swift.Set { get set } + @objc var appURLSchemeSuffix: Swift.String? { get set } + @objc var isDataProcessingRestricted: Swift.Bool { get } + @objc var isAutoLogAppEventsEnabled: Swift.Bool { get } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.") + var codelessDebugLogEnabled: Swift.Bool { get set } + @objc var isCodelessDebugLogEnabled: Swift.Bool { get set } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.") + var advertiserIDCollectionEnabled: Swift.Bool { get set } + @objc var isAdvertiserIDCollectionEnabled: Swift.Bool { get set } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.") + var isSetATETimeExceedsInstallTime: Swift.Bool { get } + @objc var isATETimeSufficientlyDelayed: Swift.Bool { get } + @objc var isSKAdNetworkReportEnabled: Swift.Bool { get } + @objc var advertisingTrackingStatus: FBSDKCoreKit.AdvertisingTrackingStatus { get } + @objc var installTimestamp: Foundation.Date? { get } + @objc var advertiserTrackingEnabledTimestamp: Foundation.Date? { get } + @objc var isEventDataUsageLimited: Swift.Bool { get set } + @objc var shouldUseTokenOptimizations: Swift.Bool { get set } + @objc var graphAPIVersion: Swift.String { get set } + @objc var isGraphErrorRecoveryEnabled: Swift.Bool { get set } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.") + var graphAPIDebugParamValue: Swift.String? { get } + @objc var graphAPIDebugParameterValue: Swift.String? { get } + @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.") + var advertiserTrackingEnabled: Swift.Bool { get set } + @objc var isAdvertiserTrackingEnabled: Swift.Bool { get set } + @objc var shouldUseCachedValuesForExpensiveMetadata: Swift.Bool { get set } + @objc var persistableDataProcessingOptions: [FBSDKCoreKit.DataProcessingOptionKey.RawValue : Any]? { get } + @objc func setDataProcessingOptions(_ options: [Swift.String]?) + @objc func setDataProcessingOptions(_ options: [Swift.String]?, country: Swift.Int32, state: Swift.Int32) +} +public enum DialogConfigurationName { + public static let message: Swift.String + public static let share: Swift.String +} +public struct ShareDialogConfiguration { + public init() + public var defaultShareMode: Swift.String? { + get + } + public func shouldUseNativeDialog(forDialogName dialogName: Swift.String) -> Swift.Bool + public func shouldUseSafariViewController(forDialogName dialogName: Swift.String) -> Swift.Bool +} +@objc(FBSDKAEMReporter) public protocol _AEMReporterProtocol { + @objc static func enable() + @objc(recordAndUpdateEvent:currency:value:parameters:) static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) + @objc static func setConversionFilteringEnabled(_ isEnabled: Swift.Bool) + @objc static func setCatalogMatchingEnabled(_ isEnabled: Swift.Bool) + @objc static func setAdvertiserRuleMatchInServerEnabled(_ isEnabled: Swift.Bool) + @objc static func handle(_ url: Foundation.URL?) +} +extension FBAEMKit.AEMReporter : FBSDKCoreKit._AEMReporterProtocol { +} +@objcMembers @objc(_FBSDKAccessTokenExpirer) final public class _AccessTokenExpirer : ObjectiveC.NSObject, FBSDKCoreKit._AccessTokenExpiring { + @objc public init(notificationCenter: FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering) + @objc deinit +} +@objc(_FBSDKAccessTokenExpiring) public protocol _AccessTokenExpiring { +} +@objc @_hasMissingDesignatedInitializers final public class _BridgeAPI : ObjectiveC.NSObject, FBSDKCoreKit.FBSDKApplicationObserving, FBSDKCoreKit.URLOpener, FBSDKCoreKit.BridgeAPIRequestOpening, FBSDKCoreKit._ContainerViewControllerDelegate, SafariServices.SFSafariViewControllerDelegate { + public static let shared: FBSDKCoreKit._BridgeAPI + @objc final public func viewControllerDidDisappear(_ viewController: FBSDKCoreKit._ContainerViewController, animated: Swift.Bool) + @objc deinit +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func applicationWillResignActive(_ application: UIKit.UIApplication?) + @objc final public func applicationDidBecomeActive(_ application: UIKit.UIApplication?) + @objc final public func applicationDidEnterBackground(_ application: UIKit.UIApplication?) + @objc final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func application(_ application: UIKit.UIApplication, didFinishLaunchingWithOptions launchOptions: [UIKit.UIApplication.LaunchOptionsKey : Any]? = nil) -> Swift.Bool +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func open(_ url: Foundation.URL, sender: FBSDKCoreKit.URLOpening?, handler: @escaping FBSDKCoreKit.SuccessBlock) + @objc final public func open(_ request: FBSDKCoreKit.BridgeAPIRequestProtocol, useSafariViewController: Swift.Bool, from fromViewController: UIKit.UIViewController?, completionBlock: @escaping FBSDKCoreKit.BridgeAPIResponseBlock) + @objc final public func openURLWithSafariViewController(url: Foundation.URL, sender: FBSDKCoreKit.URLOpening?, from fromViewController: UIKit.UIViewController?, handler: @escaping FBSDKCoreKit.SuccessBlock) +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func safariViewControllerDidFinish(_ safariViewController: SafariServices.SFSafariViewController) +} +@available(iOS 13, *) +extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPresentationContextProviding { + @objc final public func presentationAnchor(for session: AuthenticationServices.ASWebAuthenticationSession) -> AuthenticationServices.ASPresentationAnchor +} +@objcMembers @objc(FBSDKBridgeAPIProtocolNativeV1) final public class _BridgeAPIProtocolNativeV1 : ObjectiveC.NSObject, FBSDKCoreKit.BridgeAPIProtocol { + @objc(initWithAppScheme:) convenience public init(appScheme: Swift.String?) + @objc(initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:) public init(appScheme: Swift.String?, pasteboard: FBSDKCoreKit._Pasteboard?, dataLengthThreshold: Swift.UInt, shouldIncludeAppIcon: Swift.Bool) + @objc deinit + @objc final public func requestURL(actionID: Swift.String, scheme: Swift.String, methodName: Swift.String, parameters: [Swift.String : Any]) throws -> Foundation.URL + @objc final public func responseParameters(actionID: Swift.String, queryParameters: [Swift.String : Any], cancelled cancelledRef: Swift.UnsafeMutablePointer?) throws -> [Swift.String : Any] +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKBridgeAPIRequestFactory) final public class _BridgeAPIRequestFactory : ObjectiveC.NSObject, FBSDKCoreKit.BridgeAPIRequestCreating { + @objc final public func bridgeAPIRequest(with protocolType: FBSDKCoreKit.FBSDKBridgeAPIProtocolType, scheme: Swift.String, methodName: Swift.String?, parameters: [Swift.String : Any]?, userInfo: [Swift.String : Any]? = nil) -> FBSDKCoreKit.BridgeAPIRequestProtocol? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKDialogConfigurationMapBuilder) final public class _DialogConfigurationMapBuilder : ObjectiveC.NSObject, FBSDKCoreKit._DialogConfigurationMapBuilding { + @objc final public func buildDialogConfigurationMap(from rawConfigurations: [[Swift.String : Any]]) -> [Swift.String : FBSDKCoreKit._DialogConfiguration] + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objc(FBSDKErrorFactory) final public class _ErrorFactory : ObjectiveC.NSObject, FBSDKCoreKit.ErrorCreating { + @objc(errorWithCode:userInfo:message:underlyingError:) final public func error(code: Swift.Int, userInfo: [Swift.String : Any]? = nil, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(errorWithDomain:code:userInfo:message:underlyingError:) final public func error(domain: Swift.String, code: Swift.Int, userInfo: [Swift.String : Any]? = nil, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(invalidArgumentErrorWithName:value:message:underlyingError:) final public func invalidArgumentError(name: Swift.String, value: Any?, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(invalidArgumentErrorWithDomain:name:value:message:underlyingError:) final public func invalidArgumentError(domain: Swift.String, name: Swift.String, value: Any?, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(requiredArgumentErrorWithName:message:underlyingError:) final public func requiredArgumentError(name: Swift.String, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(requiredArgumentErrorWithDomain:name:message:underlyingError:) final public func requiredArgumentError(domain: Swift.String, name: Swift.String, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error + @objc(unknownErrorWithMessage:userInfo:) final public func unknownError(message: Swift.String?, userInfo: [Swift.String : Any]? = nil) -> Swift.Error + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCloseIcon) final public class _FBCloseIcon : ObjectiveC.NSObject { + @objc final public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLogo) final public class _FBLogo : FBSDKCoreKit.FBIcon { + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKFeatureManager) final public class _FeatureManager : ObjectiveC.NSObject, FBSDKCoreKit.FeatureChecking, FBSDKCoreKit._FeatureDisabling { + @objc public static let shared: FBSDKCoreKit._FeatureManager + @objc final public func isEnabled(_ feature: FBSDKCoreKit.SDKFeature) -> Swift.Bool + @objc final public func check(_ feature: FBSDKCoreKit.SDKFeature, completionBlock: @escaping FBSDKCoreKit.FBSDKFeatureManagerBlock) + @objc final public func disableFeature(_ feature: FBSDKCoreKit.SDKFeature) + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKHumanSilhouetteIcon) final public class _HumanSilhouetteIcon : FBSDKCoreKit.FBIcon { + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKMeasurementEvent) final public class _MeasurementEvent : ObjectiveC.NSObject, FBSDKCoreKit._AppLinkEventPosting { + @objc(postNotificationForEventName:args:) final public func postNotification(eventName: Swift.String, arguments: [Swift.String : Any]) + @objc override dynamic public init() + @objc deinit +} +@objc(FBSDKPaymentObserver) final public class _PaymentObserver : ObjectiveC.NSObject, FBSDKCoreKit._PaymentObserving { + @objc(initWithPaymentQueue:paymentProductRequestorFactory:) public init(paymentQueue: StoreKit.SKPaymentQueue, paymentProductRequestorFactory: FBSDKCoreKit._PaymentProductRequestorCreating) + @objc(startObservingTransactions) final public func startObservingTransactions() + @objc(stopObservingTransactions) final public func stopObservingTransactions() + @objc deinit +} +extension FBSDKCoreKit._PaymentObserver : StoreKit.SKPaymentTransactionObserver { + @objc final public func paymentQueue(_ queue: StoreKit.SKPaymentQueue, updatedTransactions transactions: [StoreKit.SKPaymentTransaction]) +} +@_inheritsConvenienceInitializers @objc(FBSDKPaymentProductRequestorFactory) final public class _PaymentProductRequestorFactory : ObjectiveC.NSObject, FBSDKCoreKit._PaymentProductRequestorCreating { + @objc final public func createRequestor(transaction: StoreKit.SKPaymentTransaction) -> FBSDKCoreKit.PaymentProductRequestor + @objc override dynamic public init() + @objc deinit +} +@objcMembers @objc(FBSDKRestrictiveEventFilter) final public class _RestrictiveEventFilter : ObjectiveC.NSObject { + @objc final public let eventName: Swift.String + @objc final public let restrictiveParameters: [Swift.String : Any] + @objc(initWithEventName:restrictiveParameters:) public init(eventName: Swift.String, restrictiveParameters: [Swift.String : Any]) + @objc deinit +} +@objcMembers @objc(FBSDKSKAdNetworkEvent) final public class _SKAdNetworkEvent : ObjectiveC.NSObject { + @objc final public let eventName: Swift.String? + @objc final public var values: [Swift.String : Swift.Double]? + @objc(initWithJSON:) public init?(json: [Swift.String : Any]) + @objc deinit +} +@objcMembers @objc(FBSDKViewImpressionLogger) final public class _ViewImpressionLogger : ObjectiveC.NSObject, FBSDKCoreKit.ImpressionLogging { + @objc(initWithEventName:) public init(eventName: FBSDKCoreKit.AppEvents.Name) + @objc public static func retrieveLogger(with eventName: FBSDKCoreKit.AppEvents.Name) -> FBSDKCoreKit._ViewImpressionLogger + @objc final public func logImpression(withIdentifier identifier: Swift.String, parameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]?) + @objc deinit +} +@objcMembers @objc(FBSDKWebDialog) final public class _WebDialog : ObjectiveC.NSObject { + @objc final public var shouldDeferVisibility: Swift.Bool + @objc weak final public var delegate: FBSDKCoreKit.WebDialogDelegate? + @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreFoundation.CGRect = .zero, path: Swift.String? = nil) + @objc convenience public init(name: Swift.String) + @objc final public func show() + @objc deinit +} +extension FBSDKCoreKit._WebDialog : FBSDKCoreKit.WebDialogViewDelegate { + @objc final public func webDialogView(_ webDialogView: FBSDKCoreKit.FBWebDialogView, didCompleteWithResults results: [Swift.String : Any]) + @objc final public func webDialogView(_ webDialogView: FBSDKCoreKit.FBWebDialogView, didFailWithError error: Swift.Error) + @objc final public func webDialogViewDidCancel(_ webDialogView: FBSDKCoreKit.FBWebDialogView) + @objc final public func webDialogViewDidFinishLoad(_ webDialogView: FBSDKCoreKit.FBWebDialogView) +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKWebViewFactory) final public class _WebViewFactory : ObjectiveC.NSObject, FBSDKCoreKit._WebViewProviding { + @objc final public func createWebView(frame: CoreFoundation.CGRect) -> FBSDKCoreKit.WebView + @objc override dynamic public init() + @objc deinit +} +extension FBSDKCoreKit.Profile.PictureMode : Swift.Equatable {} +extension FBSDKCoreKit.Profile.PictureMode : Swift.Hashable {} +extension FBSDKCoreKit.Profile.PictureMode : Swift.RawRepresentable {} +extension FBSDKCoreKit.LoginTooltipError : Swift.Equatable {} +extension FBSDKCoreKit.LoginTooltipError : Swift.Hashable {} diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc index 01424cdd..0484274e 100644 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface index f884404e..d31a1eda 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import AdSupport import AuthenticationServices import FBAEMKit @@ -12,6 +13,7 @@ import StoreKit import Swift import UIKit import _Concurrency +import _StringProcessing extension FBSDKCoreKit.AccessToken { public var permissions: Swift.Set { get @@ -133,22 +135,20 @@ extension FBSDKCoreKit.AccessToken { @objc func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) @objc func recordEvent(_ parameters: [Swift.String : Any]) } -@_inheritsConvenienceInitializers @available(tvOS, unavailable) -@objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { +@_inheritsConvenienceInitializers @objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { @objc public static let shared: FBSDKCoreKit._InternalURLOpener @objc override dynamic public init() @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKIcon) open class FBIcon : ObjectiveC.NSObject { - @objc open func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? - @objc public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, scale: CoreGraphics.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? + @objc open func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, scale: CoreFoundation.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? @objc override dynamic public init() @objc deinit } -@_inheritsConvenienceInitializers @available(tvOS, unavailable) -@objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { @objc @_Concurrency.MainActor(unsafe) final public var pictureMode: FBSDKCoreKit.Profile.PictureMode { @objc get @objc set @@ -157,22 +157,23 @@ extension FBSDKCoreKit.AccessToken { @objc get @objc set } - @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreGraphics.CGRect { - @_Concurrency.MainActor(unsafe) @objc get - @_Concurrency.MainActor(unsafe) @objc set + @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreFoundation.CGRect { + @objc get + @objc set } @_Concurrency.MainActor(unsafe) @objc override final public var contentMode: UIKit.UIView.ContentMode { - @_Concurrency.MainActor(unsafe) @objc get - @_Concurrency.MainActor(unsafe) @objc set + @objc get + @objc set } - @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreGraphics.CGRect, profile: FBSDKCoreKit.Profile? = nil) + @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, profile: FBSDKCoreKit.Profile? = nil) @objc(initWithProfile:) @_Concurrency.MainActor(unsafe) convenience public init(profile: FBSDKCoreKit.Profile? = nil) - @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreGraphics.CGRect) + @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreFoundation.CGRect) @objc(initWithCoder:) @_Concurrency.MainActor(unsafe) required dynamic public init?(coder: Foundation.NSCoder) @objc @_Concurrency.MainActor(unsafe) final public func setNeedsImageUpdate() @objc deinit } public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager +public typealias CAPIGBlock = (Swift.Bool) -> Swift.Void @objc @_inheritsConvenienceInitializers @objcMembers final public class FBSDKAppEventsCAPIManager : ObjectiveC.NSObject, FBSDKCoreKit.CAPIReporter { @objc public static let shared: FBSDKCoreKit.FBSDKAppEventsCAPIManager @objc override dynamic public init() @@ -193,7 +194,7 @@ public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager } @objc override dynamic public init() @objc public func configure(datasetID: Swift.String, url: Swift.String, accessKey: Swift.String) - @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any]) + @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any], userAgent: Swift.String) @objc deinit } final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @@ -201,6 +202,10 @@ final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @objc final public func createKeychainStore(service: Swift.String, accessGroup: Swift.String?) -> FBSDKCoreKit.KeychainStoreProtocol @objc deinit } +@objc(FBSDKMACARuleMatching) public protocol MACARuleMatching { + @objc func enable() + @objc func processParameters(_ params: Foundation.NSDictionary?, event: Swift.String?) -> Foundation.NSDictionary? +} public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { case publicProfile case userFriends @@ -266,7 +271,7 @@ extension FBSDKCoreKit.Profile { get } } - @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreGraphics.CGSize) -> Foundation.URL? + @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreFoundation.CGSize) -> Foundation.URL? } extension FBSDKCoreKit.Profile { @objc(loadCurrentProfileWithCompletion:) public static func loadCurrentProfile(completion: FBSDKCoreKit.ProfileBlock?) @@ -347,7 +352,7 @@ extension FBSDKCoreKit.Settings { @objc final public var defaultGraphAPIVersion: Swift.String { @objc get } - @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreGraphics.CGFloat { + @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreFoundation.CGFloat { @objc get @objc set } @@ -518,7 +523,6 @@ public enum DialogConfigurationName { public static let message: Swift.String public static let share: Swift.String } -@available(tvOS, unavailable) public struct ShareDialogConfiguration { public init() public var defaultShareMode: Swift.String? { @@ -533,6 +537,7 @@ public struct ShareDialogConfiguration { @objc static func setConversionFilteringEnabled(_ isEnabled: Swift.Bool) @objc static func setCatalogMatchingEnabled(_ isEnabled: Swift.Bool) @objc static func setAdvertiserRuleMatchInServerEnabled(_ isEnabled: Swift.Bool) + @objc static func handle(_ url: Foundation.URL?) } extension FBAEMKit.AEMReporter : FBSDKCoreKit._AEMReporterProtocol { } @@ -595,12 +600,12 @@ extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPr @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCloseIcon) final public class _FBCloseIcon : ObjectiveC.NSObject { - @objc final public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? + @objc final public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? @objc override dynamic public init() @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLogo) final public class _FBLogo : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? @objc override dynamic public init() @objc deinit } @@ -613,7 +618,7 @@ extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPr @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKHumanSilhouetteIcon) final public class _HumanSilhouetteIcon : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? @objc override dynamic public init() @objc deinit } @@ -657,7 +662,7 @@ extension FBSDKCoreKit._PaymentObserver : StoreKit.SKPaymentTransactionObserver @objcMembers @objc(FBSDKWebDialog) final public class _WebDialog : ObjectiveC.NSObject { @objc final public var shouldDeferVisibility: Swift.Bool @objc weak final public var delegate: FBSDKCoreKit.WebDialogDelegate? - @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreGraphics.CGRect = .zero, path: Swift.String? = nil) + @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreFoundation.CGRect = .zero, path: Swift.String? = nil) @objc convenience public init(name: Swift.String) @objc final public func show() @objc deinit @@ -669,7 +674,7 @@ extension FBSDKCoreKit._WebDialog : FBSDKCoreKit.WebDialogViewDelegate { @objc final public func webDialogViewDidFinishLoad(_ webDialogView: FBSDKCoreKit.FBWebDialogView) } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKWebViewFactory) final public class _WebViewFactory : ObjectiveC.NSObject, FBSDKCoreKit._WebViewProviding { - @objc final public func createWebView(frame: CoreGraphics.CGRect) -> FBSDKCoreKit.WebView + @objc final public func createWebView(frame: CoreFoundation.CGRect) -> FBSDKCoreKit.WebView @objc override dynamic public init() @objc deinit } diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.abi.json b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 00000000..691d9251 --- /dev/null +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,68791 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AEMNetworker", + "printedName": "AEMNetworker", + "children": [ + { + "kind": "Function", + "name": "startGraphRequest", + "printedName": "startGraphRequest(withGraphPath:parameters:tokenString:httpMethod:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "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": "TypeFunc", + "name": "Function", + "printedName": "(Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker(im)startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerC17startGraphRequest04withE4Path10parameters11tokenString10httpMethod10completionySS_SDySSypGSSSgAKyypSg_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "startGraphRequestWithGraphPath:parameters:tokenString:HTTPMethod:completion:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworker", + "printedName": "FBSDKCoreKit.AEMNetworker", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker(im)init", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AEMNetworker", + "mangledName": "$s12FBSDKCoreKit12AEMNetworkerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AEMNetworking", + "printedName": "AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking", + "mangledName": "$s8FBAEMKit13AEMNetworkingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventsStateFactory", + "printedName": "AppEventsStateFactory", + "children": [ + { + "kind": "Function", + "name": "createState", + "printedName": "createState(tokenString:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsState", + "printedName": "FBSDKCoreKit._AppEventsState", + "usr": "c:objc(cs)FBSDKAppEventsState" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC06createE011tokenString5appIDSo08FBSDKAppdE0CSS_SStF", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryC06createE011tokenString5appIDSo08FBSDKAppdE0CSS_SStF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createStateWithToken:appID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventsStateFactory", + "printedName": "FBSDKCoreKit.AppEventsStateFactory", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit21AppEventsStateFactoryC", + "mangledName": "$s12FBSDKCoreKit21AppEventsStateFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLink", + "printedName": "AppLink", + "children": [ + { + "kind": "Var", + "name": "sourceURL", + "printedName": "sourceURL", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)sourceURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL10Foundation0F0VSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "sourceURL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)sourceURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL10Foundation0F0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "sourceURL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "targets", + "printedName": "targets", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)targets", + "mangledName": "$s12FBSDKCoreKit7AppLinkC7targetsSaySo08FBSDKAppD6Target_pGvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "targets", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)targets", + "mangledName": "$s12FBSDKCoreKit7AppLinkC7targetsSaySo08FBSDKAppD6Target_pGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "targets", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webURL", + "printedName": "webURL", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)webURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC6webURL10Foundation0F0VSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "webURL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)webURL", + "mangledName": "$s12FBSDKCoreKit7AppLinkC6webURL10Foundation0F0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "webURL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isBackToReferrer", + "printedName": "isBackToReferrer", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(py)backToReferrer", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "backToReferrer", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)isBackToReferrer", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "isBackToReferrer", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)setBackToReferrer:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvM", + "mangledName": "$s12FBSDKCoreKit7AppLinkC16isBackToReferrerSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sourceURL:targets:webURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)initWithSourceURL:targets:webURL:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL7targets03webF0AC10Foundation0F0VSg_SaySo08FBSDKAppD6Target_pGAJtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithSourceURL:targets:webURL:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "appLink", + "printedName": "appLink(sourceURL:targets:webURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkProtocol", + "printedName": "FBSDKCoreKit._AppLinkProtocol", + "usr": "c:objc(pl)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(cm)appLinkWithSourceURL:targets:webURL:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC03appD09sourceURL7targets03webG0So08FBSDKAppD0_p10Foundation0G0VSg_SaySo0jD6Target_pGALtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "appLinkWithSourceURL:targets:webURL:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sourceURL:targets:webURL:isBackToReferrer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)initWithSourceURL:targets:webURL:isBackToReferrer:", + "mangledName": "$s12FBSDKCoreKit7AppLinkC9sourceURL7targets03webF016isBackToReferrerAC10Foundation0F0VSg_SaySo08FBSDKAppD6Target_pGAKSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithSourceURL:targets:webURL:isBackToReferrer:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink(im)init", + "mangledName": "$s12FBSDKCoreKit7AppLinkCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink", + "mangledName": "$s12FBSDKCoreKit7AppLinkC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLink", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "AppLinkFactory", + "printedName": "AppLinkFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLink", + "printedName": "createAppLink(sourceURL:targets:webURL:isBackToReferrer:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkProtocol", + "printedName": "FBSDKCoreKit._AppLinkProtocol", + "usr": "c:objc(pl)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC06createcD09sourceURL7targets03webH016isBackToReferrerSo08FBSDKAppD0_p10Foundation0H0VSg_SaySo0oD6Target_pGAMSbtF", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryC06createcD09sourceURL7targets03webH016isBackToReferrerSo08FBSDKAppD0_p10Foundation0H0VSg_SaySo0oD6Target_pGAMSbtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkWithSourceURL:targets:webURL:isBackToReferrer:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkFactory", + "printedName": "FBSDKCoreKit.AppLinkFactory", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit14AppLinkFactoryC", + "mangledName": "$s12FBSDKCoreKit14AppLinkFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkNavigation", + "printedName": "AppLinkNavigation", + "children": [ + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "NonObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC7defaultSo08FBSDKAppD9Resolving_pvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultResolver", + "printedName": "defaultResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cpy)defaultResolver", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "defaultResolver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)defaultResolver", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)setDefaultResolver:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC15defaultResolverSo08FBSDKAppD9Resolving_pvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extras", + "printedName": "extras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)extras", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC6extrasSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)extras", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC6extrasSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkData", + "printedName": "appLinkData", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)appLinkData", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD4DataSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)appLinkData", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD4DataSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLink", + "printedName": "appLink", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)appLink", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD0AA0cD0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)appLink", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD0AA0cD0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "navigationType", + "printedName": "navigationType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(py)navigationType", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationTypeSo08FBSDKAppdeG0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)navigationType", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationTypeSo08FBSDKAppdeG0Vvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLink:extras:appLinkData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)initWithAppLink:extras:appLinkData:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD06extras0fD4DataAcA0cD0C_SDySSypGAItcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppLink:extras:appLinkData:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLink:extras:appLinkData:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)initWithAppLink:extras:appLinkData:settings:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD06extras0fD4Data8settingsAcA0cD0C_SDySSypGAjA16SettingsProtocol_ptcfc", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "initWithAppLink:extras:appLinkData:settings:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "navigation", + "printedName": "navigation(with:extras:appLinkData:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigationWithAppLink:extras:appLinkData:settings:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC10navigation4with6extras03appD4Data8settingsAcA0cD0C_SDySSypGAkA16SettingsProtocol_ptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "navigationWithAppLink:extras:appLinkData:settings:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "callbackAppLinkData", + "printedName": "callbackAppLinkData(forApp:url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Swift.String]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + }, + { + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)callbackAppLinkDataForAppWithName:url:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC08callbackcD4Data03forC03urlSDySSSDyS2SGGSS_SStFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "callbackAppLinkDataForAppWithName:url:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC8navigateSo08FBSDKAppdE4TypeVyKF", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigateSo08FBSDKAppdE4TypeVyKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resolveAppLink", + "printedName": "resolveAppLink(_:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)resolveAppLink:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC07resolvecD0_7handlery10Foundation3URLV_yAA0cD0CSg_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "resolveAppLink:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "resolveAppLink", + "printedName": "resolveAppLink(_:resolver:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)resolveAppLink:resolver:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC07resolvecD0_8resolver7handlery10Foundation3URLV_So08FBSDKAppD9Resolving_pyAA0cD0CSg_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "resolveAppLink:resolver:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC8navigate2toSo08FBSDKAppdE4TypeVAA0cD0C_tKFZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2toSo08FBSDKAppdE4TypeVAA0cD0C_tKFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigationType", + "printedName": "navigationType(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigationTypeForLink:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationType3forSo08FBSDKAppdeG0VAA0cD0C_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigationTypeForLink:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigateToURL:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2to7handlery10Foundation3URLV_ySo08FBSDKAppdE4TypeV_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigateToURL:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigate", + "printedName": "navigate(to:resolver:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLinkNavigationType, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(cm)navigateToURL:resolver:handler:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC8navigate2to8resolver7handlery10Foundation3URLV_So08FBSDKAppD9Resolving_pySo0ldE4TypeV_s5Error_pSgtctFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "navigateToURL:resolver:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appLinkURL", + "printedName": "appLinkURL(targetURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC03appD3URL06targetG010Foundation0G0VSgAH_tKF", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC03appD3URL06targetG010Foundation0G0VSgAH_tKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postNavigateEventNotification", + "printedName": "postNavigateEventNotification(targetURL:error:navigationType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)postNavigateEventNotificationWithTargetURL:error:navigationType:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC29postNavigateEventNotification9targetURL5error14navigationTypey10Foundation0K0VSg_s5Error_pSgSo08FBSDKAppdeN0VtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "navigationType", + "printedName": "navigationType(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigationType", + "printedName": "FBSDKCoreKit.AppLinkNavigationType", + "usr": "c:@E@FBSDKAppLinkNavigationType" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppLinkTargetProtocol]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)navigationTypeFor:", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC14navigationType3forSo08FBSDKAppdeG0VSaySo0iD6Target_pG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkNavigation", + "printedName": "FBSDKCoreKit.AppLinkNavigation", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation(im)init", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV9urlOpenerSo22FBSDKInternalURLOpener_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkEventPoster", + "printedName": "appLinkEventPoster", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD11EventPosterSo08FBSDKAppdI7Posting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkResolver", + "printedName": "appLinkResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvp", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvg", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvs", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvM", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV03appD8ResolverSo08FBSDKAppD9Resolving_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:urlOpener:appLinkEventPoster:appLinkResolver:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settings9urlOpener03appD11EventPoster0kD8ResolverAeA16SettingsProtocol_p_So22FBSDKInternalURLOpener_pSo08FBSDKAppdL7Posting_pSo0sD9Resolving_ptcfc", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV8settings9urlOpener03appD11EventPoster0kD8ResolverAeA16SettingsProtocol_p_So22FBSDKInternalURLOpener_pSo08FBSDKAppdL7Posting_pSo0sD9Resolving_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkNavigation", + "mangledName": "$s12FBSDKCoreKit17AppLinkNavigationC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkNavigation", + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkNavigation.TypeDependencies", + "usr": "s:12FBSDKCoreKit17AppLinkNavigationC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkResolver", + "printedName": "AppLinkResolver", + "children": [ + { + "kind": "Var", + "name": "cachedAppLinks", + "printedName": "cachedAppLinks", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(py)cachedAppLinks", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)cachedAppLinks", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSMutableDictionary", + "printedName": "Foundation.NSMutableDictionary", + "usr": "c:objc(cs)NSMutableDictionary" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)setCachedAppLinks:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC06cachedC5LinksSo19NSMutableDictionaryCvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "appLink", + "printedName": "appLink(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.AppLink?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLink?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)appLinkFromURL:handler:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC03appD04from7handlery10Foundation3URLV_yAA0cD0CSg_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "appLinkFromURL:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appLinks", + "printedName": "appLinks(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "([Foundation.URL : FBSDKCoreKit.AppLink], Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "([Foundation.URL : FBSDKCoreKit.AppLink], Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Foundation.URL : FBSDKCoreKit.AppLink]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)appLinksFrom:handler:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC8appLinks4from7handlerySay10Foundation3URLVG_ySDyAiA0cD0CG_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAppLink", + "printedName": "buildAppLink(for:result:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLink", + "printedName": "FBSDKCoreKit.AppLink", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLink" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : [Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)buildAppLinkFor:result:", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC05buildcD03for6resultAA0cD0C10Foundation3URLV_SDySSSDySSypGGtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolver", + "printedName": "FBSDKCoreKit.AppLinkResolver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver(im)init", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "requestBuilder", + "printedName": "requestBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilderSo08FBSDKAppdE15RequestBuilding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "clientTokenProvider", + "printedName": "clientTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19clientTokenProviderSo011FBSDKClientI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(requestBuilder:clientTokenProvider:accessTokenProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkResolverRequestBuilding", + "printedName": "FBSDKCoreKit._AppLinkResolverRequestBuilding", + "usr": "c:objc(pl)FBSDKAppLinkResolverRequestBuilding" + }, + { + "kind": "TypeNominal", + "name": "_ClientTokenProviding", + "printedName": "FBSDKCoreKit._ClientTokenProviding", + "usr": "c:objc(pl)FBSDKClientTokenProviding" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilder19clientTokenProvider06accesskL0AESo08FBSDKAppdE15RequestBuilding_p_So011FBSDKClientK9Providing_pSo011FBSDKAccesskR0_pXptcfc", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV14requestBuilder19clientTokenProvider06accesskL0AESo08FBSDKAppdE15RequestBuilding_p_So011FBSDKClientK9Providing_pSo011FBSDKAccesskR0_pXptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AppLinkResolver.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkResolver", + "mangledName": "$s12FBSDKCoreKit15AppLinkResolverC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkResolver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AppLinkResolver.TypeDependencies", + "usr": "s:12FBSDKCoreKit15AppLinkResolverC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkResolverRequestBuilder", + "printedName": "AppLinkResolverRequestBuilder", + "children": [ + { + "kind": "Var", + "name": "userInterfaceIdiom", + "printedName": "userInterfaceIdiom", + "children": [ + { + "kind": "TypeNominal", + "name": "UIUserInterfaceIdiom", + "printedName": "UIKit.UIUserInterfaceIdiom", + "usr": "c:@E@UIUserInterfaceIdiom" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiom33_D2EA324685EEF2BCFBEFEB3B7F7BA944LLSo06UIUseriJ0Vvp", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiom33_D2EA324685EEF2BCFBEFEB3B7F7BA944LLSo06UIUseriJ0Vvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userInterfaceIdiom:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolverRequestBuilder", + "printedName": "FBSDKCoreKit.AppLinkResolverRequestBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder" + }, + { + "kind": "TypeNominal", + "name": "UIUserInterfaceIdiom", + "printedName": "UIKit.UIUserInterfaceIdiom", + "hasDefaultArg": true, + "usr": "c:@E@UIUserInterfaceIdiom" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiomACSo06UIUseriJ0V_tcfc", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC18userInterfaceIdiomACSo06UIUseriJ0V_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "request", + "printedName": "request(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestProtocol", + "printedName": "FBSDKCoreKit.GraphRequestProtocol", + "usr": "c:objc(pl)FBSDKGraphRequest" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Foundation.URL]", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)requestForURLs:", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC7request3forSo010FBSDKGraphF0_pSay10Foundation3URLVG_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requestForURLs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getIdiomSpecificField", + "printedName": "getIdiomSpecificField()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)getIdiomSpecificField", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC21getIdiomSpecificFieldSSSgyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "getIdiomSpecificField", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolverRequestBuilder", + "printedName": "FBSDKCoreKit.AppLinkResolverRequestBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder(im)init", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkResolverRequestBuilder", + "mangledName": "$s12FBSDKCoreKit29AppLinkResolverRequestBuilderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkTarget", + "printedName": "AppLinkTarget", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)URL", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10Foundation3URLVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "URL", + "declAttributes": [ + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)URL", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10Foundation3URLVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "URL", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appStoreId", + "printedName": "appStoreId", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)appStoreId", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC10appStoreIdSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appStoreId", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)appStoreId", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC10appStoreIdSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "appStoreId", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appName", + "printedName": "appName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(py)appName", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC7appNameSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appName", + "declAttributes": [ + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)appName", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC7appNameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "appName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)initWithURL:appStoreId:appName:", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC3url10appStoreId0G4NameAC10Foundation3URLVSg_SSSgSStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithURL:appStoreId:appName:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "appLinkTargetWithURL", + "printedName": "appLinkTargetWithURL(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(cm)appLinkTargetWithURL:appStoreId:appName:", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC03appdE7WithURL3url0F7StoreId0F4NameAC10Foundation0H0VSg_SSSgSStFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "appLinkTargetWithURL:appStoreId:appName:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTarget", + "printedName": "FBSDKCoreKit.AppLinkTarget", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget(im)init", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppLinkTarget", + "mangledName": "$s12FBSDKCoreKit13AppLinkTargetC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAppLinkTarget", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkTargetFactory", + "printedName": "AppLinkTargetFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLinkTarget", + "printedName": "createAppLinkTarget(url:appStoreId:appName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetProtocol", + "printedName": "FBSDKCoreKit.AppLinkTargetProtocol", + "usr": "c:objc(pl)FBSDKAppLinkTarget" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC06createcdE03url10appStoreId0I4NameSo08FBSDKAppdE0_p10Foundation3URLVSg_SSSgSStF", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryC06createcdE03url10appStoreId0I4NameSo08FBSDKAppdE0_p10Foundation3URLVSg_SSSgSStF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkTargetWithURL:appStoreId:appName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkTargetFactory", + "printedName": "FBSDKCoreKit.AppLinkTargetFactory", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit20AppLinkTargetFactoryC", + "mangledName": "$s12FBSDKCoreKit20AppLinkTargetFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppLinkURLFactory", + "printedName": "AppLinkURLFactory", + "children": [ + { + "kind": "Function", + "name": "createAppLinkURL", + "printedName": "createAppLinkURL(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLProtocol", + "printedName": "FBSDKCoreKit._AppLinkURLProtocol", + "usr": "c:objc(pl)FBSDKAppLinkURL" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory(im)createAppLinkURLWithURL:", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryC06createcD3URL4withSo08FBSDKAppdG0_p10Foundation0G0V_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createAppLinkURLWithURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkURLFactory", + "printedName": "FBSDKCoreKit.AppLinkURLFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory(im)init", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)AppLinkURLFactory", + "mangledName": "$s12FBSDKCoreKit17AppLinkURLFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "ApplicationDelegate", + "printedName": "ApplicationDelegate", + "children": [ + { + "kind": "Var", + "name": "applicationObservers", + "printedName": "applicationObservers", + "children": [ + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)applicationObservers", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationObservers", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSHashTable", + "printedName": "Foundation.NSHashTable", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "usr": "c:objc(cs)NSHashTable" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setApplicationObservers:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC20applicationObserversSo11NSHashTableCySo25FBSDKApplicationObserving_pGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "components", + "printedName": "components", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvp", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvg", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10componentsAA04CoreB10ComponentsCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configurator", + "printedName": "configurator", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvp", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvg", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC12configuratorAA04CoreB11Configuring_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAppLaunched", + "printedName": "isAppLaunched", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)isAppLaunched", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)isAppLaunched", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setIsAppLaunched:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13isAppLaunchedSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "applicationState", + "printedName": "applicationState", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(py)applicationState", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationState", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "State", + "printedName": "UIKit.UIApplication.State", + "usr": "c:@E@UIApplicationState" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)setApplicationState:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0Vvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0VvM", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16applicationStateSo013UIApplicationF0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(cpy)sharedInstance", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "sharedInstance", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(cm)sharedInstance", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)init", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(components:configurator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ApplicationDelegate", + "printedName": "FBSDKCoreKit.ApplicationDelegate", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate" + }, + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + }, + { + "kind": "TypeNominal", + "name": "CoreKitConfiguring", + "printedName": "FBSDKCoreKit.CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit19ApplicationDelegateC10components12configuratorAcA04CoreB10ComponentsC_AA0gB11Configuring_ptcfc", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC10components12configuratorAcA04CoreB10ComponentsC_AA0gB11Configuring_ptcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "initializeSDK", + "printedName": "initializeSDK()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)initializeSDK", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13initializeSDKyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initializeSDK", + "printedName": "initializeSDK(launchOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)initializeSDKWithLaunchOptions:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC13initializeSDK13launchOptionsySDySo019UIApplicationLaunchH3KeyaypGSg_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:continue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "NSUserActivity", + "printedName": "Foundation.NSUserActivity", + "usr": "c:objc(cs)NSUserActivity" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:continueUserActivity:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_8continueSbSo13UIApplicationC_So14NSUserActivityCtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:continueUserActivity:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.OpenURLOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "OpenURLOptionsKey", + "printedName": "UIKit.UIApplication.OpenURLOptionsKey", + "usr": "c:@T@UIApplicationOpenURLOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:openURL:options:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_4open7optionsSbSo13UIApplicationC_10Foundation3URLVSDySo0H17OpenURLOptionsKeyaypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:options:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_4open06sourceC010annotationSbSo13UIApplicationC_10Foundation3URLVSSSgypSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:didFinishLaunchingWithOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)application:didFinishLaunchingWithOptions:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11application_29didFinishLaunchingWithOptionsSbSo13UIApplicationC_SDySo0k6LaunchJ3KeyaypGSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "DiscardableResult", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC29applicationDidEnterBackgroundyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Notification?", + "children": [ + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationDidBecomeActive:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC26applicationDidBecomeActiveyy10Foundation12NotificationVSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationWillResignActive", + "printedName": "applicationWillResignActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)applicationWillResignActive:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC27applicationWillResignActiveyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addObserver", + "printedName": "addObserver(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)addObserver:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC11addObserveryySo25FBSDKApplicationObserving_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeObserver", + "printedName": "removeObserver(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBSDKApplicationObserving", + "printedName": "FBSDKCoreKit.FBSDKApplicationObserving", + "usr": "c:objc(pl)FBSDKApplicationObserving" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)removeObserver:", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC14removeObserveryySo25FBSDKApplicationObserving_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logSDKInitialize", + "printedName": "logSDKInitialize()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate(im)logSDKInitialize", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC16logSDKInitializeyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKApplicationDelegate", + "mangledName": "$s12FBSDKCoreKit19ApplicationDelegateC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKApplicationDelegate", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "AuthenticationServices", + "printedName": "AuthenticationServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationSessionProtocol", + "printedName": "AuthenticationSessionProtocol", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init(url:callbackURLScheme:completionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP3url17callbackURLScheme17completionHandlerx10Foundation3URLV_SSSgyAISg_s5Error_pSgtctcfc", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP3url17callbackURLScheme17completionHandlerx10Foundation3URLV_SSSgyAISg_s5Error_pSgtctcfc", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP5startSbyF", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP5startSbyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP6cancelyyF", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP6cancelyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "presentationContextProvider", + "printedName": "presentationContextProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvp", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "intro_iOS": "13.0", + "declAttributes": [ + "Available" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvg", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding?", + "children": [ + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationPresentationContextProviding", + "printedName": "AuthenticationServices.ASWebAuthenticationPresentationContextProviding", + "usr": "c:objc(pl)ASWebAuthenticationPresentationContextProviding" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvs", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvM", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP27presentationContextProviderSo05ASWebc12PresentationG9Providing_pSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.AuthenticationSessionProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "intro_iOS": "13.0", + "declAttributes": [ + "Available" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationSessionState", + "printedName": "AuthenticationSessionState", + "children": [ + { + "kind": "Var", + "name": "none", + "printedName": "none", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO4noneyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO4noneyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "started", + "printedName": "started", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO7startedyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO7startedyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "showAlert", + "printedName": "showAlert", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO9showAlertyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9showAlertyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "showWebBrowser", + "printedName": "showWebBrowser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO14showWebBrowseryA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO14showWebBrowseryA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "canceledBySystem", + "printedName": "canceledBySystem", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationSessionState.Type) -> FBSDKCoreKit.AuthenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AuthenticationSessionState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO16canceledBySystemyA2CmF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO16canceledBySystemyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26AuthenticationSessionStateO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO", + "mangledName": "$s12FBSDKCoreKit26AuthenticationSessionStateO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenClaims", + "printedName": "AuthenticationTokenClaims", + "children": [ + { + "kind": "Var", + "name": "jti", + "printedName": "jti", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jtiSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iss", + "printedName": "iss", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3issSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aud", + "printedName": "aud", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3audSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5nonceSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "exp", + "printedName": "exp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3expSdvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "iat", + "printedName": "iat", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3iatSdvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sub", + "printedName": "sub", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3subSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC4nameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "givenName", + "printedName": "givenName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC9givenNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10middleNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "familyName", + "printedName": "familyName", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10familyNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC5emailSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "picture", + "printedName": "picture", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC7pictureSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userFriends", + "printedName": "userFriends", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvp", + "moduleName": "FBSDKCoreKit", + "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC11userFriendsSaySSGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userBirthday", + "printedName": "userBirthday", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userBirthdaySSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userAgeRange", + "printedName": "userAgeRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userAgeRangeSDySSSo8NSNumberCGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userHometown", + "printedName": "userHometown", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userHometownSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userLocation", + "printedName": "userLocation", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC12userLocationSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userGender", + "printedName": "userGender", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC10userGenderSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userLink", + "printedName": "userLink", + "children": [ + { + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvp", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC8userLinkSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(encodedClaims:nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "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@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims(im)initWithEncodedClaims:nonce:", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC07encodedE05nonceACSgSS_SStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEncodedClaims:nonce:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(jti:iss:aud:nonce:exp:iat:sub:name:givenName:middleName:familyName:email:picture:userFriends:userBirthday:userAgeRange:userHometown:userLocation:userGender:userLink:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "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 : Foundation.NSNumber]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "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" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC3jti3iss3aud5nonce3exp3iat3sub4name9givenName06middleO006familyO05email7picture11userFriends0T8Birthday0T8AgeRange0T8Hometown0T8Location0T6Gender0T4LinkACSS_S3SS2dS2SSgA5XSaySSGSgAXSDySSSo8NSNumberCGSgSDyS2SGSgA4_A2Xtcfc", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC3jti3iss3aud5nonce3exp3iat3sub4name9givenName06middleO006familyO05email7picture11userFriends0T8Birthday0T8AgeRange0T8Hometown0T8Location0T6Gender0T4LinkACSS_S3SS2dS2SSgA5XSaySSGSgAXSDySSSo8NSNumberCGSgSDyS2SGSgA4_A2Xtcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims(im)init", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAeA16SettingsProtocol_p_tcfc", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV8settingsAeA16SettingsProtocol_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims", + "mangledName": "$s12FBSDKCoreKit25AuthenticationTokenClaimsC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKAuthenticationTokenClaims", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims.TypeDependencies", + "usr": "s:12FBSDKCoreKit25AuthenticationTokenClaimsC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "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": "BackgroundEventLogger", + "printedName": "BackgroundEventLogger", + "children": [ + { + "kind": "Var", + "name": "isNewBackgroundRefresh", + "printedName": "isNewBackgroundRefresh", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvp", + "moduleName": "FBSDKCoreKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV05isNewC7RefreshSbvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logBackgroundRefreshStatus", + "printedName": "logBackgroundRefreshStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBackgroundRefreshStatus", + "printedName": "UIKit.UIBackgroundRefreshStatus", + "usr": "c:@E@UIBackgroundRefreshStatus" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "moduleName": "FBSDKCoreKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogger", + "printedName": "FBSDKCoreKit.BackgroundEventLogger", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerVACycfc", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerVACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProviderSo09FBSDKInfoI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(infoDictionaryProvider:eventLogger:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProvider05eventE0AESo09FBSDKInfoI9Providing_p_So17FBSDKEventLogging_ptcfc", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV22infoDictionaryProvider05eventE0AESo09FBSDKInfoI9Providing_p_So17FBSDKEventLogging_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV", + "mangledName": "$s12FBSDKCoreKit21BackgroundEventLoggerV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BackgroundEventLogging", + "printedName": "BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.BackgroundEventLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21BackgroundEventLoggerV16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "BackgroundEventLogging", + "printedName": "BackgroundEventLogging", + "children": [ + { + "kind": "Function", + "name": "logBackgroundRefreshStatus", + "printedName": "logBackgroundRefreshStatus(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIBackgroundRefreshStatus", + "printedName": "UIKit.UIBackgroundRefreshStatus", + "usr": "c:@E@UIBackgroundRefreshStatus" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP03logC13RefreshStatusyySo012UIBackgroundgH0VF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BackgroundEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP", + "mangledName": "$s12FBSDKCoreKit22BackgroundEventLoggingP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "BridgeAPIResponseCreating", + "printedName": "BridgeAPIResponseCreating", + "children": [ + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:responseURL:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponseCancelled", + "printedName": "createResponseCancelled(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.BridgeAPIResponseCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "CAPIReporter", + "printedName": "CAPIReporter", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)enable", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP6enableyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(factory:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)configureWithFactory:settings:", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP9configure7factory8settingsySo24FBSDKGraphRequestFactory_p_AA16SettingsProtocol_ptF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordEvent", + "printedName": "recordEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter(im)recordEvent:", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP11recordEventyySDySSypGF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CAPIReporter>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKCAPIReporter", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitComponents", + "printedName": "CoreKitComponents", + "children": [ + { + "kind": "Var", + "name": "accessTokenExpirer", + "printedName": "accessTokenExpirer", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirerAA07_AccessF8Expiring_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17accessTokenWalletSo011FBSDKAccessF9Providing_So016FBSDKTokenStringI0pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDProvider", + "printedName": "advertiserIDProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20advertiserIDProviderSo26FBSDKAdvertiserIDProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemNetworker", + "printedName": "aemNetworker", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12aemNetworker8FBAEMKit13AEMNetworking_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemReporter", + "printedName": "aemReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11aemReporterAA20_AEMReporterProtocol_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventParametersExtractor", + "printedName": "appEventParametersExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 5, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27appEventParametersExtractorSo08FBSDKAppfG10Extracting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEvents", + "printedName": "appEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 6, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9appEventsSo17FBSDKEventLogging_So08FBSDKAppF11ConfiguringSo26FBSDKApplicationActivatingSo0K18LifecycleObservingSo0K12StateSettingSo30FBSDKSourceApplicationTrackingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsConfigurationProvider", + "printedName": "appEventsConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 7, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30appEventsConfigurationProviderSo08FBSDKAppfG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsDropDeterminer", + "printedName": "appEventsDropDeterminer", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 8, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23appEventsDropDeterminerSo013FBSDKAppEventG11Determining_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsStateProvider", + "printedName": "appEventsStateProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 9, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22appEventsStateProviderSo08FBSDKAppfG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsStateStore", + "printedName": "appEventsStateStore", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 10, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19appEventsStateStoreSo08FBSDKAppfG10Persisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appEventsUtility", + "printedName": "appEventsUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 11, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16appEventsUtilitySo28FBSDKAppEventDropDetermining_So0hI20ParametersExtractingSo0hfG0So21FBSDKLoggingNotifyingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkEventPoster", + "printedName": "appLinkEventPoster", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 12, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18appLinkEventPosterSo08FBSDKAppfG7Posting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkFactory", + "printedName": "appLinkFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 13, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14appLinkFactorySo08FBSDKAppF8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkResolver", + "printedName": "appLinkResolver", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 14, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15appLinkResolverSo08FBSDKAppF9Resolving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkTargetFactory", + "printedName": "appLinkTargetFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 15, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20appLinkTargetFactorySo08FBSDKAppfG8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appLinkURLFactory", + "printedName": "appLinkURLFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 16, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17appLinkURLFactorySo08FBSDKAppF11URLCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "atePublisherFactory", + "printedName": "atePublisherFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 17, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19atePublisherFactorySo25FBSDKATEPublisherCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenWallet", + "printedName": "authenticationTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 18, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25authenticationTokenWalletSo019FBSDKAuthenticationF9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backgroundEventLogger", + "printedName": "backgroundEventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 19, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC21backgroundEventLoggerAA010BackgroundF7Logging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "capiReporter", + "printedName": "capiReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 20, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12capiReporterAA12CAPIReporter_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codelessIndexer", + "printedName": "codelessIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 21, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15codelessIndexerSo21FBSDKCodelessIndexing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crashHandler", + "printedName": "crashHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 22, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12crashHandlerSo010FBSDKCrashF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "crashObserver", + "printedName": "crashObserver", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 23, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13crashObserverSo19FBSDKCrashObserving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataExtractor", + "printedName": "dataExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 24, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13dataExtractorSo23FBSDKFileDataExtracting_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultDataStore", + "printedName": "defaultDataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 25, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16defaultDataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "deviceInformationProvider", + "printedName": "deviceInformationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 26, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC25deviceInformationProviderSo011FBSDKDeviceF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dialogConfigurationMapBuilder", + "printedName": "dialogConfigurationMapBuilder", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 27, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29dialogConfigurationMapBuilderSo011FBSDKDialogfG8Building_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorConfigurationProvider", + "printedName": "errorConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 28, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC26errorConfigurationProviderSo010FBSDKErrorF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 29, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorReporter", + "printedName": "errorReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 30, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13errorReporterSo19FBSDKErrorReporting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventDeactivationManager", + "printedName": "eventDeactivationManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 31, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC24eventDeactivationManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsK0pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 32, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "featureChecker", + "printedName": "featureChecker", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 33, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14featureCheckerSo20FBSDKFeatureChecking_So0G9Disablingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "featureExtractor", + "printedName": "featureExtractor", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 34, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16featureExtractorSo22FBSDKFeatureExtracting_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "fileManager", + "printedName": "fileManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 35, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC11fileManagerSo17FBSDKFileManaging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 36, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17gateKeeperManagerSo09FBSDKGateF8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "getApplicationActivationNotifier", + "printedName": "getApplicationActivationNotifier", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 37, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC32getApplicationActivationNotifierypycvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestConnectionFactory", + "printedName": "graphRequestConnectionFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 38, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC29graphRequestConnectionFactorySo010FBSDKGraphfgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 39, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionLoggerFactory", + "printedName": "impressionLoggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 40, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23impressionLoggerFactorySo015FBSDKImpressionfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 41, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22infoDictionaryProviderSo09FBSDKInfoF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "internalURLOpener", + "printedName": "internalURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 42, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17internalURLOpenerSo013FBSDKInternalF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 43, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15internalUtilitySo013FBSDKInternalF0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 44, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC6loggerSo12FBSDKLogging_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggerFactory", + "printedName": "loggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 45, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13loggerFactorySo21__FBSDKLoggerCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macCatalystDeterminator", + "printedName": "macCatalystDeterminator", + "children": [ + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 46, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macCatalystDeterminatorSo08FBSDKMacF11Determining_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "metadataIndexer", + "printedName": "metadataIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 47, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15metadataIndexerSo21FBSDKMetadataIndexing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "modelManager", + "printedName": "modelManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 48, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC12modelManagerSo20FBSDKEventProcessing_So41FBSDKIntegrityParametersProcessorProviderpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 49, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18notificationCenterSo25_FBSDKNotificationPosting_So0G10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "operatingSystemVersionComparer", + "printedName": "operatingSystemVersionComparer", + "children": [ + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 50, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC30operatingSystemVersionComparerSo014FBSDKOperatingfG9Comparing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "paymentObserver", + "printedName": "paymentObserver", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 51, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15paymentObserverSo21FBSDKPaymentObserving_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "piggybackManager", + "printedName": "piggybackManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 52, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC16piggybackManagerSo34FBSDKGraphRequestPiggybackManaging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "profileSetter", + "printedName": "profileSetter", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 53, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13profileSetterAA16ProfileProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "restrictiveDataFilterManager", + "printedName": "restrictiveDataFilterManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 54, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC28restrictiveDataFilterManagerSo33FBSDKAppEventsParameterProcessing_So011FBSDKEventsL0pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "rulesFromKeyProvider", + "printedName": "rulesFromKeyProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 55, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20rulesFromKeyProviderSo010FBSDKRulesfgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 56, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC27serverConfigurationProviderSo011FBSDKServerF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionDataTaskProvider", + "printedName": "sessionDataTaskProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 57, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23sessionDataTaskProviderSo24FBSDKURLSessionProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 58, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8settingsSo20FBSDKSettingsLogging_AA16SettingsProtocolpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "skAdNetworkReporter", + "printedName": "skAdNetworkReporter", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 59, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC19skAdNetworkReporter8FBAEMKit04SKAdG9Reporting_So014FBSDKAppEventsH0pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "suggestedEventsIndexer", + "printedName": "suggestedEventsIndexer", + "children": [ + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 60, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22suggestedEventsIndexerSo014FBSDKSuggestedfG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "swizzler", + "printedName": "swizzler", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 61, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC8swizzlerSo14FBSDKSwizzling_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeSpentRecorder", + "printedName": "timeSpentRecorder", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 62, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC17timeSpentRecorderSo30FBSDKSourceApplicationTracking_So09FBSDKTimeF9Recordingpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokenCache", + "printedName": "tokenCache", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 63, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10tokenCacheSo17FBSDKTokenCaching_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlHoster", + "printedName": "urlHoster", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 64, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC9urlHosterSo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlSessionProxyFactory", + "printedName": "urlSessionProxyFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 65, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC22urlSessionProxyFactorySo015FBSDKURLSessionG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userDataStore", + "printedName": "userDataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 66, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC13userDataStoreSo09FBSDKUserF10Persisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userIDProvider", + "printedName": "userIDProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 67, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC14userIDProviderSo20FBSDKUserIDProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webViewProvider", + "printedName": "webViewProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 68, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC15webViewProviderSo08FBSDKWebF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "aemManager", + "printedName": "aemManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 69, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC10aemManagerSo14FBSDKAutoSetup_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "protectedModeManager", + "printedName": "protectedModeManager", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 70, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC20protectedModeManagerSo33FBSDKAppEventsParameterProcessing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "macaRuleMatchingManager", + "printedName": "macaRuleMatchingManager", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvp", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 71, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvg", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC23macaRuleMatchingManagerAA08MACARuleG0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenExpirer:accessTokenWallet:advertiserIDProvider:aemNetworker:aemReporter:appEventParametersExtractor:appEvents:appEventsConfigurationProvider:appEventsDropDeterminer:appEventsStateProvider:appEventsStateStore:appEventsUtility:appLinkEventPoster:appLinkFactory:appLinkResolver:appLinkTargetFactory:appLinkURLFactory:atePublisherFactory:authenticationTokenWallet:backgroundEventLogger:capiReporter:codelessIndexer:crashHandler:crashObserver:dataExtractor:defaultDataStore:deviceInformationProvider:dialogConfigurationMapBuilder:errorConfigurationProvider:errorFactory:errorReporter:eventDeactivationManager:eventLogger:featureChecker:featureExtractor:fileManager:gateKeeperManager:getApplicationActivationNotifier:graphRequestConnectionFactory:graphRequestFactory:impressionLoggerFactory:infoDictionaryProvider:internalURLOpener:internalUtility:logger:loggerFactory:macCatalystDeterminator:metadataIndexer:modelManager:notificationCenter:operatingSystemVersionComparer:paymentObserver:piggybackManager:profileSetter:restrictiveDataFilterManager:rulesFromKeyProvider:serverConfigurationProvider:sessionDataTaskProvider:settings:skAdNetworkReporter:suggestedEventsIndexer:swizzler:timeSpentRecorder:tokenCache:urlHoster:urlSessionProxyFactory:userDataStore:userIDProvider:webViewProvider:aemManager:protectedModeManager:macaRuleMatchingManager:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + }, + { + "kind": "TypeNominal", + "name": "_AccessTokenExpiring", + "printedName": "FBSDKCoreKit._AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AccessTokenProviding & FBSDKCoreKit._TokenStringProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_AdvertiserIDProviding", + "printedName": "FBSDKCoreKit._AdvertiserIDProviding", + "usr": "c:objc(pl)FBSDKAdvertiserIDProviding" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBAEMKit.AEMNetworking?", + "children": [ + { + "kind": "TypeNominal", + "name": "AEMNetworking", + "printedName": "FBAEMKit.AEMNetworking", + "usr": "c:@M@FBAEMKit@objc(pl)FBAEMNetworking" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AEMReporterProtocol.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AEMReporterProtocol", + "printedName": "FBSDKCoreKit._AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_AppEventParametersExtracting", + "printedName": "FBSDKCoreKit._AppEventParametersExtracting", + "usr": "c:objc(pl)FBSDKAppEventParametersExtracting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.EventLogging & FBSDKCoreKit._AppEventsConfiguring & FBSDKCoreKit._ApplicationActivating & FBSDKCoreKit._ApplicationLifecycleObserving & FBSDKCoreKit._ApplicationStateSetting & FBSDKCoreKit._SourceApplicationTracking" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "_AppEventDropDetermining", + "printedName": "FBSDKCoreKit._AppEventDropDetermining", + "usr": "c:objc(pl)FBSDKAppEventDropDetermining" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsStateProviding", + "printedName": "FBSDKCoreKit._AppEventsStateProviding", + "usr": "c:objc(pl)FBSDKAppEventsStateProviding" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsStatePersisting", + "printedName": "FBSDKCoreKit._AppEventsStatePersisting", + "usr": "c:objc(pl)FBSDKAppEventsStatePersisting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventDropDetermining & FBSDKCoreKit._AppEventParametersExtracting & FBSDKCoreKit._AppEventsUtilityProtocol & FBSDKCoreKit._LoggingNotifying" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkEventPosting", + "printedName": "FBSDKCoreKit._AppLinkEventPosting", + "usr": "c:objc(pl)FBSDKAppLinkEventPosting" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkCreating", + "printedName": "FBSDKCoreKit._AppLinkCreating", + "usr": "c:objc(pl)FBSDKAppLinkCreating" + }, + { + "kind": "TypeNominal", + "name": "AppLinkResolving", + "printedName": "FBSDKCoreKit.AppLinkResolving", + "usr": "c:objc(pl)FBSDKAppLinkResolving" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkTargetCreating", + "printedName": "FBSDKCoreKit._AppLinkTargetCreating", + "usr": "c:objc(pl)FBSDKAppLinkTargetCreating" + }, + { + "kind": "TypeNominal", + "name": "_AppLinkURLCreating", + "printedName": "FBSDKCoreKit._AppLinkURLCreating", + "usr": "c:objc(pl)FBSDKAppLinkURLCreating" + }, + { + "kind": "TypeNominal", + "name": "_ATEPublisherCreating", + "printedName": "FBSDKCoreKit._ATEPublisherCreating", + "usr": "c:objc(pl)FBSDKATEPublisherCreating" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BackgroundEventLogging", + "printedName": "FBSDKCoreKit.BackgroundEventLogging", + "usr": "s:12FBSDKCoreKit22BackgroundEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "CAPIReporter", + "printedName": "FBSDKCoreKit.CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._CodelessIndexing.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_CodelessIndexing", + "printedName": "FBSDKCoreKit._CodelessIndexing", + "usr": "c:objc(pl)FBSDKCodelessIndexing" + } + ] + }, + { + "kind": "TypeNominal", + "name": "CrashHandlerProtocol", + "printedName": "FBSDKCoreKit_Basics.CrashHandlerProtocol", + "usr": "c:objc(pl)FBSDKCrashHandler" + }, + { + "kind": "TypeNominal", + "name": "CrashObserving", + "printedName": "FBSDKCoreKit_Basics.CrashObserving", + "usr": "c:objc(pl)FBSDKCrashObserving" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FileDataExtracting", + "printedName": "FBSDKCoreKit_Basics._FileDataExtracting", + "usr": "c:objc(pl)FBSDKFileDataExtracting" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + }, + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilding", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilding", + "usr": "c:objc(pl)FBSDKDialogConfigurationMapBuilding" + }, + { + "kind": "TypeNominal", + "name": "_ErrorConfigurationProviding", + "printedName": "FBSDKCoreKit._ErrorConfigurationProviding", + "usr": "c:objc(pl)FBSDKErrorConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.FeatureChecking & FBSDKCoreKit._FeatureDisabling" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._FeatureExtracting.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureExtracting", + "printedName": "FBSDKCoreKit._FeatureExtracting", + "usr": "c:objc(pl)FBSDKFeatureExtracting" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_FileManaging", + "printedName": "FBSDKCoreKit_Basics._FileManaging", + "usr": "c:objc(pl)FBSDKFileManaging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> Any", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnectionFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestConnectionFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestConnectionFactory" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "_ImpressionLoggerFactoryProtocol", + "printedName": "FBSDKCoreKit._ImpressionLoggerFactoryProtocol", + "usr": "c:objc(pl)FBSDKImpressionLoggerFactory" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.Logging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Logging", + "printedName": "FBSDKCoreKit.Logging", + "usr": "c:objc(pl)FBSDKLogging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + }, + { + "kind": "TypeNominal", + "name": "_MacCatalystDetermining", + "printedName": "FBSDKCoreKit._MacCatalystDetermining", + "usr": "c:objc(pl)FBSDKMacCatalystDetermining" + }, + { + "kind": "TypeNominal", + "name": "_MetadataIndexing", + "printedName": "FBSDKCoreKit._MetadataIndexing", + "usr": "c:objc(pl)FBSDKMetadataIndexing" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._EventProcessing & FBSDKCoreKit._IntegrityParametersProcessorProvider" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "_OperatingSystemVersionComparing", + "printedName": "FBSDKCoreKit._OperatingSystemVersionComparing", + "usr": "c:objc(pl)FBSDKOperatingSystemVersionComparing" + }, + { + "kind": "TypeNominal", + "name": "_PaymentObserving", + "printedName": "FBSDKCoreKit._PaymentObserving", + "usr": "c:objc(pl)FBSDKPaymentObserving" + }, + { + "kind": "TypeNominal", + "name": "_GraphRequestPiggybackManaging", + "printedName": "FBSDKCoreKit._GraphRequestPiggybackManaging", + "usr": "c:objc(pl)FBSDKGraphRequestPiggybackManaging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing & FBSDKCoreKit._EventsProcessing" + }, + { + "kind": "TypeNominal", + "name": "_RulesFromKeyProvider", + "printedName": "FBSDKCoreKit._RulesFromKeyProvider", + "usr": "c:objc(pl)FBSDKRulesFromKeyProvider" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.SettingsLogging & FBSDKCoreKit.SettingsProtocol" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter)?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBAEMKit.SKAdNetworkReporting & FBSDKCoreKit._AppEventsReporter" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "_SuggestedEventsIndexerProtocol", + "printedName": "FBSDKCoreKit._SuggestedEventsIndexerProtocol", + "usr": "c:objc(pl)FBSDKSuggestedEventsIndexer" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._Swizzling.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_Swizzling", + "printedName": "FBSDKCoreKit._Swizzling", + "usr": "c:objc(pl)FBSDKSwizzling" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._SourceApplicationTracking & FBSDKCoreKit._TimeSpentRecording" + }, + { + "kind": "TypeNominal", + "name": "TokenCaching", + "printedName": "FBSDKCoreKit.TokenCaching", + "usr": "c:objc(pl)FBSDKTokenCaching" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + }, + { + "kind": "TypeNominal", + "name": "_URLSessionProxyProviding", + "printedName": "FBSDKCoreKit._URLSessionProxyProviding", + "usr": "c:objc(pl)FBSDKURLSessionProxyProviding" + }, + { + "kind": "TypeNominal", + "name": "_UserDataPersisting", + "printedName": "FBSDKCoreKit._UserDataPersisting", + "usr": "c:objc(pl)FBSDKUserDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_UserIDProviding", + "printedName": "FBSDKCoreKit._UserIDProviding", + "usr": "c:objc(pl)FBSDKUserIDProviding" + }, + { + "kind": "TypeNominal", + "name": "_WebViewProviding", + "printedName": "FBSDKCoreKit._WebViewProviding", + "usr": "c:objc(pl)FBSDKWebViewProviding" + }, + { + "kind": "TypeNominal", + "name": "_AutoSetup", + "printedName": "FBSDKCoreKit._AutoSetup", + "usr": "c:objc(pl)FBSDKAutoSetup" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsParameterProcessing", + "printedName": "FBSDKCoreKit._AppEventsParameterProcessing", + "usr": "c:objc(pl)FBSDKAppEventsParameterProcessing" + }, + { + "kind": "TypeNominal", + "name": "MACARuleMatching", + "printedName": "FBSDKCoreKit.MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirer0eF6Wallet20advertiserIDProvider12aemNetworker0K8Reporter27appEventParametersExtractor0N6Events0nR21ConfigurationProvider0nR14DropDeterminer0nr5StateT00nrW5Store0nR7Utility0n4LinkO6Poster0nZ7Factory0nZ8Resolver0nZ13TargetFactory0nZ10URLFactory19atePublisherFactory014authenticationfH0010backgroundO6Logger04capiM015codelessIndexer12crashHandler13crashObserver04dataQ0011defaultDataX0017deviceInformationT006dialogS10MapBuilder05errorsT012errorFactory05errorM024eventDeactivationManager11eventLogger14featureChecker07featureQ011fileManager17gateKeeperManager32getApplicationActivationNotifier29graphRequestConnectionFactory19graphRequestFactory23impressionLoggerFactory014infoDictionaryT017internalURLOpener08internalY06logger13loggerFactory23macCatalystDeterminator15metadataIndexer12modelManager18notificationCenter30operatingSystemVersionComparer15paymentObserver16piggybackManager13profileSetter28restrictiveDataFilterManager012rulesFromKeyT006serversT0015sessionDataTaskT08settings011skAdNetworkM009suggestedR7Indexer8swizzler17timeSpentRecorder10tokenCache9urlHoster22urlSessionProxyFactory08userDataX004userJ007webViewT00K7Manager20protectedModeManager23macaRuleMatchingManagerAcA07_AccessF8Expiring_p_So011FBSDKAccessF9Providing_So25FBSDKTokenStringProvidingpXpSo26FBSDKAdvertiserIDProviding_p8FBAEMKit13AEMNetworking_pSgAA20_AEMReporterProtocol_pXpSo08FBSDKAppoP10Extracting_pSo17FBSDKEventLogging_So08FBSDKAppR11ConfiguringSo26FBSDKApplicationActivatingSo34FBSDKApplicationLifecycleObservingSo016FBSDKApplicationW7SettingSo30FBSDKSourceApplicationTrackingpSo08FBSDKApprS9Providing_pSo08FBSDKAppoU11Determining_pSo08FBSDKApprW9Providing_pSo08FBSDKApprW10Persisting_pSoA64__SoA56_So08FBSDKApprY0So21FBSDKLoggingNotifyingpSo08FBSDKAppzO7Posting_pSo08FBSDKAppZ8Creating_pSo08FBSDKAppZ9Resolving_pSo08FBSDKAppZ14TargetCreating_pSo08FBSDKAppZ11URLCreating_pSo25FBSDKATEPublisherCreating_pSo019FBSDKAuthenticationF9Providing_pXpAA010BackgroundO7Logging_pAA12CAPIReporter_pSo21FBSDKCodelessIndexing_pXpSo17FBSDKCrashHandler_pSo19FBSDKCrashObserving_pSo23FBSDKFileDataExtracting_pXpSo19FBSDKDataPersisting_pSo31FBSDKDeviceInformationProviding_pSo011FBSDKDialogS11MapBuilding_pSo010FBSDKErrorS9Providing_pSo18FBSDKErrorCreating_pSo19FBSDKErrorReporting_pSo08FBSDKAppR19ParameterProcessing_So21FBSDKEventsProcessingpSoA57__pSo20FBSDKFeatureChecking_So21FBSDKFeatureDisablingpSo22FBSDKFeatureExtracting_pXpSo17FBSDKFileManaging_pSo23FBSDKGateKeeperManaging_pXpypycSo34FBSDKGraphRequestConnectionFactory_pSo24FBSDKGraphRequestFactory_pSo28FBSDKImpressionLoggerFactory_pSo28FBSDKInfoDictionaryProviding_pSo22FBSDKInternalURLOpener_pSo013FBSDKInternalY0_pSo12FBSDKLogging_pXpSo21__FBSDKLoggerCreating_pSo27FBSDKMacCatalystDetermining_pSo21FBSDKMetadataIndexing_pSo20FBSDKEventProcessing_So014FBSDKIntegrityp9ProcessorT0pSo25_FBSDKNotificationPosting_So27FBSDKNotificationDeliveringpSo36FBSDKOperatingSystemVersionComparing_pSo21FBSDKPaymentObserving_pSo34FBSDKGraphRequestPiggybackManaging_pAA16ProfileProviding_pXpSoA88__SoA89_pSo017FBSDKRulesFromKeyT0_pSo011FBSDKServerS9Providing_pSo24FBSDKURLSessionProviding_pSo20FBSDKSettingsLogging_AA16SettingsProtocolpA52_20SKAdNetworkReporting_So08FBSDKApprM0pSgSo014FBSDKSuggestedR7Indexer_pSo14FBSDKSwizzling_pXpSoA62__So23FBSDKTimeSpentRecordingpSo17FBSDKTokenCaching_pSo15FBSDKURLHosting_pSo29FBSDKURLSessionProxyProviding_pSo23FBSDKUserDataPersisting_pSo20FBSDKUserIDProviding_pSo21FBSDKWebViewProviding_pSo14FBSDKAutoSetup_pSoA88__pAA16MACARuleMatching_ptcfc", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC18accessTokenExpirer0eF6Wallet20advertiserIDProvider12aemNetworker0K8Reporter27appEventParametersExtractor0N6Events0nR21ConfigurationProvider0nR14DropDeterminer0nr5StateT00nrW5Store0nR7Utility0n4LinkO6Poster0nZ7Factory0nZ8Resolver0nZ13TargetFactory0nZ10URLFactory19atePublisherFactory014authenticationfH0010backgroundO6Logger04capiM015codelessIndexer12crashHandler13crashObserver04dataQ0011defaultDataX0017deviceInformationT006dialogS10MapBuilder05errorsT012errorFactory05errorM024eventDeactivationManager11eventLogger14featureChecker07featureQ011fileManager17gateKeeperManager32getApplicationActivationNotifier29graphRequestConnectionFactory19graphRequestFactory23impressionLoggerFactory014infoDictionaryT017internalURLOpener08internalY06logger13loggerFactory23macCatalystDeterminator15metadataIndexer12modelManager18notificationCenter30operatingSystemVersionComparer15paymentObserver16piggybackManager13profileSetter28restrictiveDataFilterManager012rulesFromKeyT006serversT0015sessionDataTaskT08settings011skAdNetworkM009suggestedR7Indexer8swizzler17timeSpentRecorder10tokenCache9urlHoster22urlSessionProxyFactory08userDataX004userJ007webViewT00K7Manager20protectedModeManager23macaRuleMatchingManagerAcA07_AccessF8Expiring_p_So011FBSDKAccessF9Providing_So25FBSDKTokenStringProvidingpXpSo26FBSDKAdvertiserIDProviding_p8FBAEMKit13AEMNetworking_pSgAA20_AEMReporterProtocol_pXpSo08FBSDKAppoP10Extracting_pSo17FBSDKEventLogging_So08FBSDKAppR11ConfiguringSo26FBSDKApplicationActivatingSo34FBSDKApplicationLifecycleObservingSo016FBSDKApplicationW7SettingSo30FBSDKSourceApplicationTrackingpSo08FBSDKApprS9Providing_pSo08FBSDKAppoU11Determining_pSo08FBSDKApprW9Providing_pSo08FBSDKApprW10Persisting_pSoA64__SoA56_So08FBSDKApprY0So21FBSDKLoggingNotifyingpSo08FBSDKAppzO7Posting_pSo08FBSDKAppZ8Creating_pSo08FBSDKAppZ9Resolving_pSo08FBSDKAppZ14TargetCreating_pSo08FBSDKAppZ11URLCreating_pSo25FBSDKATEPublisherCreating_pSo019FBSDKAuthenticationF9Providing_pXpAA010BackgroundO7Logging_pAA12CAPIReporter_pSo21FBSDKCodelessIndexing_pXpSo17FBSDKCrashHandler_pSo19FBSDKCrashObserving_pSo23FBSDKFileDataExtracting_pXpSo19FBSDKDataPersisting_pSo31FBSDKDeviceInformationProviding_pSo011FBSDKDialogS11MapBuilding_pSo010FBSDKErrorS9Providing_pSo18FBSDKErrorCreating_pSo19FBSDKErrorReporting_pSo08FBSDKAppR19ParameterProcessing_So21FBSDKEventsProcessingpSoA57__pSo20FBSDKFeatureChecking_So21FBSDKFeatureDisablingpSo22FBSDKFeatureExtracting_pXpSo17FBSDKFileManaging_pSo23FBSDKGateKeeperManaging_pXpypycSo34FBSDKGraphRequestConnectionFactory_pSo24FBSDKGraphRequestFactory_pSo28FBSDKImpressionLoggerFactory_pSo28FBSDKInfoDictionaryProviding_pSo22FBSDKInternalURLOpener_pSo013FBSDKInternalY0_pSo12FBSDKLogging_pXpSo21__FBSDKLoggerCreating_pSo27FBSDKMacCatalystDetermining_pSo21FBSDKMetadataIndexing_pSo20FBSDKEventProcessing_So014FBSDKIntegrityp9ProcessorT0pSo25_FBSDKNotificationPosting_So27FBSDKNotificationDeliveringpSo36FBSDKOperatingSystemVersionComparing_pSo21FBSDKPaymentObserving_pSo34FBSDKGraphRequestPiggybackManaging_pAA16ProfileProviding_pXpSoA88__SoA89_pSo017FBSDKRulesFromKeyT0_pSo011FBSDKServerS9Providing_pSo24FBSDKURLSessionProviding_pSo20FBSDKSettingsLogging_AA16SettingsProtocolpA52_20SKAdNetworkReporting_So08FBSDKApprM0pSgSo014FBSDKSuggestedR7Indexer_pSo14FBSDKSwizzling_pXpSoA62__So23FBSDKTimeSpentRecordingpSo17FBSDKTokenCaching_pSo15FBSDKURLHosting_pSo29FBSDKURLSessionProxyProviding_pSo23FBSDKUserDataPersisting_pSo20FBSDKUserIDProviding_pSo21FBSDKWebViewProviding_pSo14FBSDKAutoSetup_pSoA88__pAA16MACARuleMatching_ptcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "default", + "printedName": "default", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC7defaultACvpZ", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC7defaultACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC7defaultACvgZ", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC7defaultACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC", + "mangledName": "$s12FBSDKCoreKit04CoreB10ComponentsC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Testable", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitConfigurator", + "printedName": "CoreKitConfigurator", + "children": [ + { + "kind": "Var", + "name": "components", + "printedName": "components", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvp", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvg", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAA0cB10ComponentsCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(components:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreKitConfigurator", + "printedName": "FBSDKCoreKit.CoreKitConfigurator", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC" + }, + { + "kind": "TypeNominal", + "name": "CoreKitComponents", + "printedName": "FBSDKCoreKit.CoreKitComponents", + "usr": "s:12FBSDKCoreKit04CoreB10ComponentsC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAcA0cB10ComponentsC_tcfc", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC10componentsAcA0cB10ComponentsC_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "performConfiguration", + "printedName": "performConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC20performConfigurationyyF", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC20performConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit04CoreB12ConfiguratorC", + "mangledName": "$s12FBSDKCoreKit04CoreB12ConfiguratorC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CoreKitConfiguring", + "printedName": "CoreKitConfiguring", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CoreKitConfiguring", + "printedName": "CoreKitConfiguring", + "children": [ + { + "kind": "Function", + "name": "performConfiguration", + "printedName": "performConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP20performConfigurationyyF", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP20performConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.CoreKitConfiguring>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit04CoreB11ConfiguringP", + "mangledName": "$s12FBSDKCoreKit04CoreB11ConfiguringP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CoreUIApplication", + "printedName": "CoreUIApplication", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(cpy)shared", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC6sharedSo22FBSDKInternalURLOpener_pvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(cm)shared", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC6sharedSo22FBSDKInternalURLOpener_pvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CoreUIApplication", + "printedName": "FBSDKCoreKit.CoreUIApplication", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication(im)init", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)CoreUIApplication", + "mangledName": "$s12FBSDKCoreKit17CoreUIApplicationC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "AssociatedType", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "AssociatedType", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "declKind": "AssociatedType", + "usr": "s:12FBSDKCoreKit16DependentAsValueP0E12DependenciesQa", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP0E12DependenciesQa", + "moduleName": "FBSDKCoreKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValueP15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Mutating" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "declAttributes": [ + "Mutating" + ], + "isFromExtension": true, + "funcSelfKind": "Mutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE15getDependencies0eG0QzyKF", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ValueDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ValueDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ValueDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s12FBSDKCoreKit16DependentAsValuePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKCoreKit.DependentAsValue>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "EventDeactivationManager", + "printedName": "EventDeactivationManager", + "children": [ + { + "kind": "Var", + "name": "isEventDeactivationEnabled", + "printedName": "isEventDeactivationEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC02iscD7Enabled33_14ACE7546C2C147776F91B107E749DCALLSbvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC02iscD7Enabled33_14ACE7546C2C147776F91B107E749DCALLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "deactivatedEvents", + "printedName": "deactivatedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC17deactivatedEvents33_14ACE7546C2C147776F91B107E749DCALLShySSGvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC17deactivatedEvents33_14ACE7546C2C147776F91B107E749DCALLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "eventsWithDeactivatedParameters", + "printedName": "eventsWithDeactivatedParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.EventDeactivationManager.DeactivatedEvent]", + "children": [ + { + "kind": "TypeNominal", + "name": "DeactivatedEvent", + "printedName": "FBSDKCoreKit.EventDeactivationManager.DeactivatedEvent", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC011DeactivatedC033_14ACE7546C2C147776F91B107E749DCALLV" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC31eventsWithDeactivatedParameters33_14ACE7546C2C147776F91B107E749DCALLSayAC0hC0AELLVGvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC31eventsWithDeactivatedParameters33_14ACE7546C2C147776F91B107E749DCALLSayAC0hC0AELLVGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC6enableyyF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "$__lazy_storage_$_enableOnce", + "printedName": "$__lazy_storage_$_enableOnce", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "(() -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC28$__lazy_storage_$_enableOnce33_14ACE7546C2C147776F91B107E749DCALLyycSgvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC28$__lazy_storage_$_enableOnce33_14ACE7546C2C147776F91B107E749DCALLyycSgvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Final" + ], + "fixedbinaryorder": 5, + "hasStorage": true + }, + { + "kind": "Function", + "name": "processEvents", + "printedName": "processEvents(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSMutableArray", + "printedName": "Foundation.NSMutableArray", + "usr": "c:objc(cs)NSMutableArray" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC13processEventsyySo14NSMutableArrayCF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC13processEventsyySo14NSMutableArrayCF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processEvents:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEvents.Name?", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC17processParameters_9eventNameSDySo08FBSDKAppc9ParameterI0aypGSgAI_So0jcI0aSgtF", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC17processParameters_9eventNameSDySo08FBSDKAppc9ParameterI0aypGSgAI_So0jcI0aSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:eventName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventDeactivationManager", + "printedName": "FBSDKCoreKit.EventDeactivationManager", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerCACycfc", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC", + "mangledName": "$s12FBSDKCoreKit24EventDeactivationManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.EventDeactivationManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit24EventDeactivationManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBIcon", + "printedName": "FBIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit6FBIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4sizeSo7UIImageCSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:scale:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5scaleSo7UIImageCSgSo6CGSizeV_12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:color:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:color:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5colorSo7UIImageCSgSo6CGSizeV_So7UIColorCtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:scale:color:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)imageWithSize:scale:color:", + "mangledName": "$s12FBSDKCoreKit6FBIconC5image4size5scale5colorSo7UIImageCSgSo6CGSizeV_12CoreGraphics7CGFloatVSo7UIColorCtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBIcon", + "printedName": "FBSDKCoreKit.FBIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon(im)init", + "mangledName": "$s12FBSDKCoreKit6FBIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "mangledName": "$s12FBSDKCoreKit6FBIconC", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKIcon", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBProfilePictureView", + "printedName": "FBProfilePictureView", + "children": [ + { + "kind": "Var", + "name": "pictureMode", + "printedName": "pictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)pictureMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)pictureMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPictureMode:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0Ovs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0OvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11pictureModeAA7ProfileC0dG0OvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profileID", + "printedName": "profileID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)profileID", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)profileID", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setProfileID:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9profileIDSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "currentState", + "printedName": "currentState", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvp", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvg", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12currentStateAA07ProfiledeG0Vvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hasProfileImage", + "printedName": "hasProfileImage", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)hasProfileImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)hasProfileImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setHasProfileImage:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC15hasProfileImageSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastState", + "printedName": "lastState", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProfilePictureViewState?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC9lastStateAA07ProfiledeG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "needsImageUpdate", + "printedName": "needsImageUpdate", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)needsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)needsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setNeedsImageUpdate:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16needsImageUpdateSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeholderImageIsValid", + "printedName": "placeholderImageIsValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)placeholderImageIsValid", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)placeholderImageIsValid", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPlaceholderImageIsValid:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC23placeholderImageIsValidSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageView", + "printedName": "imageView", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)imageView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)imageView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIImageView", + "printedName": "UIKit.UIImageView", + "usr": "c:objc(cs)UIImageView" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setImageView:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0Cvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0CvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC05imageE0So07UIImageE0CvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bounds", + "printedName": "bounds", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)bounds", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvp", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "bounds", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)bounds", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvg", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "bounds", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setBounds:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvs", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "setBounds:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC6boundsSo6CGRectVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentMode", + "printedName": "contentMode", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(py)contentMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvp", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "contentMode", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)contentMode", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvg", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "contentMode", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContentMode", + "printedName": "UIKit.UIView.ContentMode", + "usr": "c:@E@UIViewContentMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setContentMode:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0Vvs", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "setContentMode:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0VvM", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11contentModeSo013UIViewContentG0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:profile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWith:profile:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5frame7profileACSo6CGRectV_AA7ProfileCSgtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWith:profile:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profile:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithProfile:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC7profileAcA7ProfileCSg_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithProfile:", + "declAttributes": [ + "Custom", + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithFrame:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "Custom", + "Override", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBProfilePictureView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBProfilePictureView", + "printedName": "FBSDKCoreKit.FBProfilePictureView", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)initWithCoder:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "Custom", + "Required", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "setNeedsImageUpdate", + "printedName": "setNeedsImageUpdate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setNeedsImageUpdate", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC19setNeedsImageUpdateyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "performInitialConfiguration", + "printedName": "performInitialConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)performInitialConfiguration", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC27performInitialConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accessTokenDidChange", + "printedName": "accessTokenDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)accessTokenDidChange:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC20accessTokenDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profileDidChange", + "printedName": "profileDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)profileDidChange:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16profileDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImageWithAccessToken", + "printedName": "updateImageWithAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImageWithAccessToken", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC26updateImageWithAccessTokenyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImageWithProfile", + "printedName": "updateImageWithProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImageWithProfile", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC22updateImageWithProfileyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetImage", + "printedName": "fetchAndSetImage(with:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC16fetchAndSetImage4with5statey10Foundation3URLV_AA07ProfiledE5StateVtF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC16fetchAndSetImage4with5statey10Foundation3URLV_AA07ProfiledE5StateVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldImageFit", + "printedName": "shouldImageFit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)shouldImageFit", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC14shouldImageFitSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageSize", + "printedName": "getImageSize(imageShouldFit:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)getImageSizeWithImageShouldFit:scale:", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC12getImageSize14imageShouldFit5scaleSo6CGSizeVSb_12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getProfileImageURL", + "printedName": "getProfileImageURL(state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC18getProfileImageURL5state10Foundation0I0VSgAA0gdE5StateV_tF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC18getProfileImageURL5state10Foundation0I0VSgAA0gdE5StateV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPlaceholderImage", + "printedName": "setPlaceholderImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)setPlaceholderImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC19setPlaceholderImageyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImage", + "printedName": "updateImage(data:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20FBProfilePictureViewC11updateImage4data5statey10Foundation4DataV_AA07ProfiledE5StateVtF", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11updateImage4data5statey10Foundation4DataV_AA07ProfiledE5StateVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateImage", + "printedName": "updateImage()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView(im)updateImage", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC11updateImageyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfilePictureView", + "mangledName": "$s12FBSDKCoreKit20FBProfilePictureViewC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfilePictureView", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)UIView", + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventName", + "printedName": "AppEventName", + "children": [ + { + "kind": "Var", + "name": "unlockedAchievement", + "printedName": "unlockedAchievement", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO19unlockedAchievementyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO19unlockedAchievementyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "activatedApp", + "printedName": "activatedApp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO09activatedC0yA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO09activatedC0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "addedPaymentInfo", + "printedName": "addedPaymentInfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO16addedPaymentInfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO16addedPaymentInfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "addedToCart", + "printedName": "addedToCart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO11addedToCartyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO11addedToCartyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "addedToWishlist", + "printedName": "addedToWishlist", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO15addedToWishlistyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO15addedToWishlistyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "completedRegistration", + "printedName": "completedRegistration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO21completedRegistrationyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO21completedRegistrationyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "viewedContent", + "printedName": "viewedContent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO13viewedContentyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO13viewedContentyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "initiatedCheckout", + "printedName": "initiatedCheckout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO17initiatedCheckoutyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO17initiatedCheckoutyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "achievedLevel", + "printedName": "achievedLevel", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO13achievedLevelyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO13achievedLevelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "purchased", + "printedName": "purchased", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO9purchasedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO9purchasedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "rated", + "printedName": "rated", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO5ratedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO5ratedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "searched", + "printedName": "searched", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO8searchedyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8searchedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "spentCredits", + "printedName": "spentCredits", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO12spentCreditsyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO12spentCreditsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "completedTutorial", + "printedName": "completedTutorial", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventName.Type) -> FBSDKCoreKit.AppEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventNameO17completedTutorialyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO17completedTutorialyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventName?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit12AppEventNameO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit12AppEventNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit12AppEventNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit12AppEventNameO", + "mangledName": "$s12FBSDKCoreKit12AppEventNameO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CustomEventField", + "printedName": "CustomEventField", + "children": [ + { + "kind": "Var", + "name": "eventTime", + "printedName": "eventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO9eventTimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO9eventTimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO9eventNameyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO9eventNameyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "valueToSum", + "printedName": "valueToSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO10valueToSumyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO10valueToSumyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "contentIds", + "printedName": "contentIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO10contentIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO10contentIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contents", + "printedName": "contents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8contentsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8contentsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO11contentTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO11contentTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO11descriptionyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO11descriptionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "level", + "printedName": "level", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO5levelyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO5levelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "maxRatingValue", + "printedName": "maxRatingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO14maxRatingValueyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO14maxRatingValueyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "numItems", + "printedName": "numItems", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8numItemsyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8numItemsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "paymentInfoAvailable", + "printedName": "paymentInfoAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO20paymentInfoAvailableyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO20paymentInfoAvailableyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "registrationMethod", + "printedName": "registrationMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO18registrationMethodyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO18registrationMethodyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "searchString", + "printedName": "searchString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO12searchStringyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO12searchStringyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO7successyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO7successyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "orderId", + "printedName": "orderId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO7orderIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO7orderIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "adType", + "printedName": "adType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO6adTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO6adTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.CustomEventField.Type) -> FBSDKCoreKit.CustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.CustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8currencyyA2CmF", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8currencyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.CustomEventField?", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit16CustomEventFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO", + "mangledName": "$s12FBSDKCoreKit16CustomEventFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventType", + "printedName": "AppEventType", + "children": [ + { + "kind": "Var", + "name": "mobileAppInstall", + "printedName": "mobileAppInstall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO06mobileC7InstallyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO06mobileC7InstallyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO6customyA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO6customyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "other", + "printedName": "other", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventType.Type) -> FBSDKCoreKit.AppEventType", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit12AppEventTypeO5otheryA2CmF", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO5otheryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueACSS_tcfc", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit12AppEventTypeO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit12AppEventTypeO", + "mangledName": "$s12FBSDKCoreKit12AppEventTypeO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventUserAndAppDataField", + "printedName": "AppEventUserAndAppDataField", + "children": [ + { + "kind": "Var", + "name": "anonId", + "printedName": "anonId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO6anonIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO6anonIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appUserId", + "printedName": "appUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO03appE2IdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO03appE2IdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "advertiserId", + "printedName": "advertiserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO12advertiserIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO12advertiserIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "pageId", + "printedName": "pageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO6pageIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO6pageIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "pageScopedUserId", + "printedName": "pageScopedUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO010pageScopedE2IdyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO010pageScopedE2IdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO04userG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO04userG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "advTE", + "printedName": "advTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO5advTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO5advTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "appTE", + "printedName": "appTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO5appTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO5appTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "considerViews", + "printedName": "considerViews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO13considerViewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO13considerViewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "deviceToken", + "printedName": "deviceToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO11deviceTokenyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO11deviceTokenyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "extinfo", + "printedName": "extinfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO7extinfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO7extinfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "includeDwellData", + "printedName": "includeDwellData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeDwellG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeDwellG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "includeVideoData", + "printedName": "includeVideoData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeVideoG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO012includeVideoG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "installReferrer", + "printedName": "installReferrer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO15installReferreryA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO15installReferreryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "installerPackage", + "printedName": "installerPackage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO16installerPackageyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO16installerPackageyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "receiptData", + "printedName": "receiptData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO07receiptG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO07receiptG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "urlSchemes", + "printedName": "urlSchemes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO10urlSchemesyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO10urlSchemesyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "campaignIds", + "printedName": "campaignIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventUserAndAppDataField.Type) -> FBSDKCoreKit.AppEventUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO11campaignIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO11campaignIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO", + "mangledName": "$s12FBSDKCoreKit015AppEventUserAndC9DataFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPISection", + "printedName": "ConversionsAPISection", + "children": [ + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8userDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8userDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appData", + "printedName": "appData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO7appDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO7appDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "customData", + "printedName": "customData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO10customDatayA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO10customDatayA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "customEvents", + "printedName": "customEvents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPISection.Type) -> FBSDKCoreKit.ConversionsAPISection", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPISection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO12customEventsyA2CmF", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO12customEventsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO", + "mangledName": "$s12FBSDKCoreKit21ConversionsAPISectionO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPICustomEventField", + "printedName": "ConversionsAPICustomEventField", + "children": [ + { + "kind": "Var", + "name": "valueToSum", + "printedName": "valueToSum", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO10valueToSumyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO10valueToSumyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "eventTime", + "printedName": "eventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventTimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventTimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventNameyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO9eventNameyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "contentIds", + "printedName": "contentIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO10contentIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO10contentIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "contents", + "printedName": "contents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8contentsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8contentsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO11contentTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO11contentTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO11descriptionyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO11descriptionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "level", + "printedName": "level", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO5levelyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO5levelyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "maxRatingValue", + "printedName": "maxRatingValue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO14maxRatingValueyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO14maxRatingValueyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "numItems", + "printedName": "numItems", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8numItemsyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8numItemsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "paymentInfoAvailable", + "printedName": "paymentInfoAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO20paymentInfoAvailableyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO20paymentInfoAvailableyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "registrationMethod", + "printedName": "registrationMethod", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO18registrationMethodyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO18registrationMethodyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "searchString", + "printedName": "searchString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO12searchStringyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO12searchStringyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO7successyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO7successyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "orderId", + "printedName": "orderId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO7orderIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO7orderIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "adType", + "printedName": "adType", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO6adTypeyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO6adTypeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "currency", + "printedName": "currency", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPICustomEventField.Type) -> FBSDKCoreKit.ConversionsAPICustomEventField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8currencyyA2CmF", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8currencyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO", + "mangledName": "$s12FBSDKCoreKit30ConversionsAPICustomEventFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "Var", + "name": "anonId", + "printedName": "anonId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6anonIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6anonIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "fbLoginId", + "printedName": "fbLoginId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO9fbLoginIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO9fbLoginIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "madid", + "printedName": "madid", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5madidyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5madidyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "pageId", + "printedName": "pageId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6pageIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO6pageIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "pageScopedUserId", + "printedName": "pageScopedUserId", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16pageScopedUserIdyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16pageScopedUserIdyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "userData", + "printedName": "userData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO04userG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO04userG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "advTE", + "printedName": "advTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5advTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5advTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "appTE", + "printedName": "appTE", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5appTEyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO5appTEyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "considerViews", + "printedName": "considerViews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO13considerViewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO13considerViewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "deviceToken", + "printedName": "deviceToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11deviceTokenyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11deviceTokenyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "extinfo", + "printedName": "extinfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO7extinfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO7extinfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "includeDwellData", + "printedName": "includeDwellData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeDwellG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeDwellG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "includeVideoData", + "printedName": "includeVideoData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeVideoG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO012includeVideoG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "installReferrer", + "printedName": "installReferrer", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO15installReferreryA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO15installReferreryA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "installerPackage", + "printedName": "installerPackage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16installerPackageyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO16installerPackageyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "receiptData", + "printedName": "receiptData", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO07receiptG0yA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO07receiptG0yA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "urlSchemes", + "printedName": "urlSchemes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO10urlSchemesyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO10urlSchemesyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "campaignIds", + "printedName": "campaignIds", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type) -> FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11campaignIdsyA2CmF", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO11campaignIdsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO", + "mangledName": "$s12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ConversionsAPIEventName", + "printedName": "ConversionsAPIEventName", + "children": [ + { + "kind": "Var", + "name": "achievementUnlocked", + "printedName": "achievementUnlocked", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO19achievementUnlockedyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO19achievementUnlockedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "activateApp", + "printedName": "activateApp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO11activateAppyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO11activateAppyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "addPaymentInfo", + "printedName": "addPaymentInfo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO14addPaymentInfoyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO14addPaymentInfoyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "addToCart", + "printedName": "addToCart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO9addToCartyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO9addToCartyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "addToWishlist", + "printedName": "addToWishlist", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO13addToWishlistyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO13addToWishlistyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "completeRegistration", + "printedName": "completeRegistration", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO20completeRegistrationyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO20completeRegistrationyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "viewContent", + "printedName": "viewContent", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO11viewContentyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO11viewContentyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "initiateCheckout", + "printedName": "initiateCheckout", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO16initiateCheckoutyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO16initiateCheckoutyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "levelAchieved", + "printedName": "levelAchieved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO13levelAchievedyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO13levelAchievedyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "purchase", + "printedName": "purchase", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8purchaseyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8purchaseyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "rate", + "printedName": "rate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO4rateyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO4rateyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "search", + "printedName": "search", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO6searchyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO6searchyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "spentCredits", + "printedName": "spentCredits", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO12spentCreditsyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO12spentCreditsyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "tutorialCompletion", + "printedName": "tutorialCompletion", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.ConversionsAPIEventName.Type) -> FBSDKCoreKit.ConversionsAPIEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO18tutorialCompletionyA2CmF", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO18tutorialCompletionyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO", + "mangledName": "$s12FBSDKCoreKit23ConversionsAPIEventNameO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "OtherEventConstants", + "printedName": "OtherEventConstants", + "children": [ + { + "kind": "Var", + "name": "event", + "printedName": "event", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO5eventyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO5eventyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "actionSource", + "printedName": "actionSource", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO12actionSourceyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO12actionSourceyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "app", + "printedName": "app", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO3appyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO3appyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "mobileAppInstall", + "printedName": "mobileAppInstall", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO16mobileAppInstallyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO16mobileAppInstallyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "installEventTime", + "printedName": "installEventTime", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.OtherEventConstants.Type) -> FBSDKCoreKit.OtherEventConstants", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.OtherEventConstants.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO07installD4TimeyA2CmF", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO07installD4TimeyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.OtherEventConstants?", + "children": [ + { + "kind": "TypeNominal", + "name": "OtherEventConstants", + "printedName": "FBSDKCoreKit.OtherEventConstants", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit19OtherEventConstantsO", + "mangledName": "$s12FBSDKCoreKit19OtherEventConstantsO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEventsConversionsAPITransformer", + "printedName": "AppEventsConversionsAPITransformer", + "children": [ + { + "kind": "TypeDecl", + "name": "SectionFieldMapping", + "printedName": "SectionFieldMapping", + "children": [ + { + "kind": "Var", + "name": "section", + "printedName": "section", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7sectionAA0E10APISectionOvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV5fieldAA0e10APIUserAndc4DataH0OSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(section:field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPIUserAndAppDataField", + "printedName": "FBSDKCoreKit.ConversionsAPIUserAndAppDataField", + "usr": "s:12FBSDKCoreKit33ConversionsAPIUserAndAppDataFieldO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7section5fieldAeA0E10APISectionO_AA0e10APIUserAndc4DataH0OSgtcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV7section5fieldAeA0E10APISectionO_AA0e10APIUserAndc4DataH0OSgtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "topLevelTransformations", + "printedName": "topLevelTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventUserAndAppDataField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventUserAndAppDataField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19SectionFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23topLevelTransformationsSDyAA0c12EventUserAndC9DataFieldOAC07SectionN7MappingVGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "SectionCustomEventFieldMapping", + "printedName": "SectionCustomEventFieldMapping", + "children": [ + { + "kind": "Var", + "name": "section", + "printedName": "section", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7sectionAA0E10APISectionOSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "field", + "printedName": "field", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV5fieldAA0e9APICustomiJ0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(section:field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ConversionsAPISection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ConversionsAPISection", + "printedName": "FBSDKCoreKit.ConversionsAPISection", + "usr": "s:12FBSDKCoreKit21ConversionsAPISectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPICustomEventField", + "printedName": "FBSDKCoreKit.ConversionsAPICustomEventField", + "usr": "s:12FBSDKCoreKit30ConversionsAPICustomEventFieldO" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7section5fieldAeA0E10APISectionOSg_AA0e9APICustomiJ0Otcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV7section5fieldAeA0E10APISectionOSg_AA0e9APICustomiJ0Otcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "customEventTransformations", + "printedName": "customEventTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.CustomEventField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.CustomEventField : FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping]", + "children": [ + { + "kind": "TypeNominal", + "name": "CustomEventField", + "printedName": "FBSDKCoreKit.CustomEventField", + "usr": "s:12FBSDKCoreKit16CustomEventFieldO" + }, + { + "kind": "TypeNominal", + "name": "SectionCustomEventFieldMapping", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.SectionCustomEventFieldMapping", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO30SectionCustomEventFieldMappingV" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26customEventTransformationsSDyAA06CustomH5FieldOAC07SectionjhK7MappingVGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "standardEventTransformations", + "printedName": "standardEventTransformations", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventName : FBSDKCoreKit.ConversionsAPIEventName]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEventName : FBSDKCoreKit.ConversionsAPIEventName]", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventName", + "printedName": "FBSDKCoreKit.AppEventName", + "usr": "s:12FBSDKCoreKit12AppEventNameO" + }, + { + "kind": "TypeNominal", + "name": "ConversionsAPIEventName", + "printedName": "FBSDKCoreKit.ConversionsAPIEventName", + "usr": "s:12FBSDKCoreKit23ConversionsAPIEventNameO" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO28standardEventTransformationsSDyAA0cH4NameOAA0e8APIEventJ0OGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DataProcessingParameterName", + "printedName": "DataProcessingParameterName", + "children": [ + { + "kind": "Var", + "name": "options", + "printedName": "options", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7optionsyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7optionsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "country", + "printedName": "country", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7countryyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO7countryyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO5stateyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO5stateyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName?", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO8allCasesSayAEGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName]", + "children": [ + { + "kind": "TypeNominal", + "name": "DataProcessingParameterName", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.DataProcessingParameterName", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO27DataProcessingParameterNameO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ValueTransformationType", + "printedName": "ValueTransformationType", + "children": [ + { + "kind": "Var", + "name": "array", + "printedName": "array", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5arrayyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5arrayyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "bool", + "printedName": "bool", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO4boolyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO4boolyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "int", + "printedName": "int", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type) -> FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO3intyA2EmF", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO3intyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(field:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5fieldAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO5fieldAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0AESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0AESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvp", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvg", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO03rawG0SSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvpZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvgZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO8allCasesSayAEGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType]", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueTransformationType", + "printedName": "FBSDKCoreKit.AppEventsConversionsAPITransformer.ValueTransformationType", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO23ValueTransformationTypeO" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "transformValue", + "printedName": "transformValue(field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO14transformValue5field5valueypSgSS_yptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO14transformValue5field5valueypSgSS_yptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "splitAppEventParameters", + "printedName": "splitAppEventParameters(from:userData:appData:restOfData:customEvents:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEventType?", + "children": [ + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO05splitC15EventParameters4from8userData03appL006restOfL006customD0AA0cH4TypeOSgSDySSypG_AMzAMzAMzSayAMGztFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO05splitC15EventParameters4from8userData03appL006restOfL006customD0AA0cH4TypeOSgSDySSypG_AMzAMzAMzSayAMGztFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateAppData", + "printedName": "transformAndUpdateAppData(_:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdateC4Data_5field5valueySDySSypGz_AA0c9EventUserhcJ5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdateC4Data_5field5valueySDySSypGz_AA0c9EventUserhcJ5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateUserData", + "printedName": "transformAndUpdateUserData(_:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO26transformAndUpdateUserData_5field5valueySDySSypGz_AA0c5EventjhcK5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO26transformAndUpdateUserData_5field5valueySDySSypGz_AA0c5EventjhcK5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformAndUpdateAppAndUserData", + "printedName": "transformAndUpdateAppAndUserData(userData:appData:field:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "AppEventUserAndAppDataField", + "printedName": "FBSDKCoreKit.AppEventUserAndAppDataField", + "usr": "s:12FBSDKCoreKit015AppEventUserAndC9DataFieldO" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdatecH8UserData04userK003appK05field5valueySDySSypGz_AIzAA0c5EventjhcK5FieldOyptFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO018transformAndUpdatecH8UserData04userK003appK05field5valueySDySSypGz_AIzAA0c5EventjhcK5FieldOyptFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformEventName", + "printedName": "transformEventName(from:)", + "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:12FBSDKCoreKit34AppEventsConversionsAPITransformerO18transformEventName4fromS2S_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO18transformEventName4fromS2S_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "transformEvents", + "printedName": "transformEvents(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO09transformD04fromSaySDySSypGGSgSS_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO09transformD04fromSaySDySSypGGSgSS_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineCommonFields", + "printedName": "combineCommonFields(userData:appData:restOfData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO19combineCommonFields8userData03appK006restOfK0SDySSypGAH_A2HtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO19combineCommonFields8userData03appK006restOfK0SDySSypGAH_A2HtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedDataForMobileAppInstall", + "printedName": "combineAllTransformedDataForMobileAppInstall(commonFields:eventTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO034combineAllTransformedDataForMobileC7Install12commonFields9eventTimeSaySDySSypGGSgAG_SiSgtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO034combineAllTransformedDataForMobileC7Install12commonFields9eventTimeSaySDySSypGGSgAG_SiSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedDataForCustom", + "printedName": "combineAllTransformedDataForCustom(commonFields:customEvents:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO34combineAllTransformedDataForCustom12commonFields06customD0SaySDySSypGGSgAG_AHtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO34combineAllTransformedDataForCustom12commonFields06customD0SaySDySSypGGSgAG_AHtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "combineAllTransformedData", + "printedName": "combineAllTransformedData(eventType:userData:appData:restOfData:customEvents:eventTime:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AppEventType", + "printedName": "FBSDKCoreKit.AppEventType", + "usr": "s:12FBSDKCoreKit12AppEventTypeO" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Int?", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO25combineAllTransformedData9eventType04userJ003appJ006restOfJ006customD00K4TimeSaySDySSypGGSgAA0c5EventL0O_A3kLSiSgtFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO25combineAllTransformedData9eventType04userJ003appJ006restOfJ006customD00K4TimeSaySDySSypGGSgAA0c5EventL0O_A3kLSiSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "conversionsAPICompatibleEvent", + "printedName": "conversionsAPICompatibleEvent(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO29conversionsAPICompatibleEvent4fromSaySDySSypGGSgAF_tFZ", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO29conversionsAPICompatibleEvent4fromSaySDySSypGGSgAF_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit34AppEventsConversionsAPITransformerO", + "mangledName": "$s12FBSDKCoreKit34AppEventsConversionsAPITransformerO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "SettingsAPIFields", + "printedName": "SettingsAPIFields", + "children": [ + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO3urlyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO3urlyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "enabled", + "printedName": "enabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO7enabledyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO7enabledyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "datasetID", + "printedName": "datasetID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO9datasetIDyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO9datasetIDyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "accessKey", + "printedName": "accessKey", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.SettingsAPIFields.Type) -> FBSDKCoreKit.SettingsAPIFields", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.SettingsAPIFields.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO9accessKeyyA2CmF", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO9accessKeyyA2CmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsAPIFields?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsAPIFields", + "printedName": "FBSDKCoreKit.SettingsAPIFields", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueACSgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueACSgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit17SettingsAPIFieldsO", + "mangledName": "$s12FBSDKCoreKit17SettingsAPIFieldsO", + "moduleName": "FBSDKCoreKit", + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKAppEventsCAPIManager", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(cpy)shared", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(cm)shared", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSDKGKEnabled", + "printedName": "isSDKGKEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)isSDKGKEnabled", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isSDKGKEnabled", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setIsSDKGKEnabled:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC14isSDKGKEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "factory", + "printedName": "factory", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)factory", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)factory", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setFactory:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC7factorySo24FBSDKGraphRequestFactory_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)settings", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)settings", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SettingsProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setSettings:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC8settingsAA16SettingsProtocol_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configRefreshTimestamp", + "printedName": "configRefreshTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)configRefreshTimestamp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)configRefreshTimestamp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setConfigRefreshTimestamp:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC22configRefreshTimestamp10Foundation4DateVSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isLoadingConfig", + "printedName": "isLoadingConfig", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(py)isLoadingConfig", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isLoadingConfig", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)setIsLoadingConfig:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC15isLoadingConfigSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "completionBlocks", + "printedName": "completionBlocks", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvp", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvg", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "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" + } + ] + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvs", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvM", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC16completionBlocksSayySbcGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKAppEventsCAPIManager", + "printedName": "FBSDKCoreKit.FBSDKAppEventsCAPIManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)init", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(factory:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)configureWithFactory:settings:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC9configure7factory8settingsySo24FBSDKGraphRequestFactory_p_AA16SettingsProtocol_ptF", + "moduleName": "FBSDKCoreKit", + "objc_name": "configureWithFactory:settings:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)enable", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordEvent", + "printedName": "recordEvent(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)recordEvent:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC11recordEventyySDySSypGF", + "moduleName": "FBSDKCoreKit", + "objc_name": "recordEvent:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "load", + "printedName": "load(withBlock:)", + "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:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)loadWithBlock:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC4load9withBlockyySbc_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldRefresh", + "printedName": "shouldRefresh()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)shouldRefresh", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC13shouldRefreshSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRefreshTimestampValid", + "printedName": "isRefreshTimestampValid()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)isRefreshTimestampValid", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC23isRefreshTimestampValidSbyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "executeBlocks", + "printedName": "executeBlocks(isEnabled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager(im)executeBlocksWithIsEnabled:", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC13executeBlocks9isEnabledySb_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAppEventsCAPIManager", + "mangledName": "$s12FBSDKCoreKit25FBSDKAppEventsCAPIManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CAPIReporter", + "printedName": "CAPIReporter", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKCAPIReporter", + "mangledName": "$s12FBSDKCoreKit12CAPIReporterP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKTransformerGraphRequestFactory", + "children": [ + { + "kind": "Var", + "name": "contentType", + "printedName": "contentType", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)contentType", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11contentTypeSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)contentType", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11contentTypeSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "timeoutInterval", + "printedName": "timeoutInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)timeoutInterval", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15timeoutIntervalSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)timeoutInterval", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15timeoutIntervalSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxCachedEvents", + "printedName": "maxCachedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)maxCachedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15maxCachedEventsSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)maxCachedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC15maxCachedEventsSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "maxProcessedEvents", + "printedName": "maxProcessedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)maxProcessedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18maxProcessedEventsSivp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)maxProcessedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18maxProcessedEventsSivg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "retryEventsHttpResponse", + "printedName": "retryEventsHttpResponse", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)retryEventsHttpResponse", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC23retryEventsHttpResponseSaySiGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.Int]", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)retryEventsHttpResponse", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC23retryEventsHttpResponseSaySiGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(cpy)shared", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(cm)shared", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "credentials", + "printedName": "credentials", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials?", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "AccessControl" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials?", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11credentialsAC16CapiGCredentialsVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "transformedEvents", + "printedName": "transformedEvents", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(py)transformedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)transformedEvents", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)setTransformedEvents:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvM", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC17transformedEventsSaySDySSypGGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CapiGCredentials", + "printedName": "CapiGCredentials", + "children": [ + { + "kind": "Var", + "name": "accessKey", + "printedName": "accessKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKeySSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "capiGatewayURL", + "printedName": "capiGatewayURL", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV14capiGatewayURLSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "datasetID", + "printedName": "datasetID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvp", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvg", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9datasetIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessKey:capiGatewayURL:datasetID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CapiGCredentials", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKey14capiGatewayURL9datasetIDAESS_S2Stcfc", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV9accessKey14capiGatewayURL9datasetIDAESS_S2Stcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC16CapiGCredentialsV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKTransformerGraphRequestFactory", + "printedName": "FBSDKCoreKit.FBSDKTransformerGraphRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)init", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "configure", + "printedName": "configure(datasetID:url:accessKey:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)configureWithDatasetID:url:accessKey:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC9configure9datasetID3url9accessKeyySS_S2StF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "callCapiGatewayAPI", + "printedName": "callCapiGatewayAPI(with:userAgent:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)callCapiGatewayAPIWith:userAgent:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC18callCapiGatewayAPI4with9userAgentySDySSypG_SStF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "capiGatewayRequestDictionary", + "printedName": "capiGatewayRequestDictionary(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)capiGatewayRequestDictionaryWith:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC011capiGatewayE10Dictionary4withSDySSypGSayAFG_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleError", + "printedName": "handleError(response:events:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URLResponse?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLResponse", + "printedName": "Foundation.URLResponse", + "usr": "c:objc(cs)NSURLResponse" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)handleErrorWithResponse:events:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC11handleError8response6eventsySo13NSURLResponseCSg_SaySDySSypGGSgtF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "appendEvents", + "printedName": "appendEvents(events:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[[Swift.String : Any]]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory(im)appendEventsWithEvents:", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC12appendEvents6eventsySaySDySSypGGSg_tF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKTransformerGraphRequestFactory", + "mangledName": "$s12FBSDKCoreKit35FBSDKTransformerGraphRequestFactoryC", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "ObjCMembers", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "GraphRequestPiggybackManager", + "printedName": "GraphRequestPiggybackManager", + "children": [ + { + "kind": "TypeDecl", + "name": "Values", + "printedName": "Values", + "children": [ + { + "kind": "Var", + "name": "tokenRefreshThresholdInSeconds", + "printedName": "tokenRefreshThresholdInSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO30tokenRefreshThresholdInSecondsSdvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tokenRefreshRetryInSeconds", + "printedName": "tokenRefreshRetryInSeconds", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO26tokenRefreshRetryInSecondsSdvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "extendSSOToken", + "printedName": "extendSSOToken", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO14extendSSOTokenSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenRefreshFields", + "printedName": "accessTokenRefreshFields", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24accessTokenRefreshFieldsSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "permissionsPath", + "printedName": "permissionsPath", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO15permissionsPathSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "permissionsRefreshFields", + "printedName": "permissionsRefreshFields", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvpZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvgZ", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO24permissionsRefreshFieldsSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC6ValuesO", + "moduleName": "FBSDKCoreKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "lastRefreshTry", + "printedName": "lastRefreshTry", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC14lastRefreshTry10Foundation4DateVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC22configuredDependenciesAC06ObjectH0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvs", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvM", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC19defaultDependenciesAC06ObjectH0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addPiggybackRequests", + "printedName": "addPiggybackRequests(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC03addE8RequestsyySo010FBSDKGraphD10Connecting_pF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC03addE8RequestsyySo010FBSDKGraphD10Connecting_pF", + "moduleName": "FBSDKCoreKit", + "objc_name": "addPiggybackRequests:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addRefreshPiggyback", + "printedName": "addRefreshPiggyback(_:permissionHandler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.GraphRequestConnecting?, Any?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.GraphRequestConnecting?", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE0_17permissionHandlerySo010FBSDKGraphD10Connecting_p_ySoAF_pSg_ypSgs5Error_pSgtcSgtF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE0_17permissionHandlerySo010FBSDKGraphD10Connecting_p_ySoAF_pSg_ypSgs5Error_pSgtcSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "addRefreshPiggyback:permissionHandler:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isRequestSafeForPiggyback", + "printedName": "isRequestSafeForPiggyback(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestProtocol", + "printedName": "FBSDKCoreKit.GraphRequestProtocol", + "usr": "c:objc(pl)FBSDKGraphRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC02isd7SafeForE0ySbSo010FBSDKGraphD0_pF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC02isd7SafeForE0ySbSo010FBSDKGraphD0_pF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addRefreshPiggybackIfStale", + "printedName": "addRefreshPiggybackIfStale(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE7IfStale2toySo010FBSDKGraphD10Connecting_p_tF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC010addRefreshE7IfStale2toySo010FBSDKGraphD10Connecting_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addServerConfigurationPiggyback", + "printedName": "addServerConfigurationPiggyback(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestConnecting", + "printedName": "FBSDKCoreKit.GraphRequestConnecting", + "usr": "c:objc(pl)FBSDKGraphRequestConnecting" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC022addServerConfigurationE02toySo010FBSDKGraphD10Connecting_p_tF", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC022addServerConfigurationE02toySo010FBSDKGraphD10Connecting_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestPiggybackManager", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerCACycfc", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "tokenWallet", + "printedName": "tokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerJ9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvp", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvg", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV05graphD7FactorySo010FBSDKGraphdJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tokenWallet:settings:serverConfigurationProvider:graphRequestFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWallet8settings27serverConfigurationProvider05graphD7FactoryAESo25FBSDKAccessTokenProviding_pXp_AA16SettingsProtocol_pSo011FBSDKServermS0_pSo010FBSDKGraphdP0_ptcfc", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV11tokenWallet8settings27serverConfigurationProvider05graphD7FactoryAESo25FBSDKAccessTokenProviding_pXp_AA16SettingsProtocol_pSo011FBSDKServermS0_pSo010FBSDKGraphdP0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC", + "mangledName": "$s12FBSDKCoreKit28GraphRequestPiggybackManagerC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.GraphRequestPiggybackManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit28GraphRequestPiggybackManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "KeychainStoreFactory", + "printedName": "KeychainStoreFactory", + "children": [ + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreFactory", + "printedName": "FBSDKCoreKit.KeychainStoreFactory", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryCACycfc", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "createKeychainStore", + "printedName": "createKeychainStore(service:accessGroup:)", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC06createcD07service11accessGroupSo013FBSDKKeychainD0_pSS_SSSgtF", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryC06createcD07service11accessGroupSo013FBSDKKeychainD0_pSS_SSSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createKeychainStoreWithService:accessGroup:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit20KeychainStoreFactoryC", + "mangledName": "$s12FBSDKCoreKit20KeychainStoreFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MACARuleMatching", + "printedName": "MACARuleMatching", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching(im)enable", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP6enableyyF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.MACARuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching(im)processParameters:event:", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP17processParameters_5eventSo12NSDictionaryCSgAH_SSSgtF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.MACARuleMatching>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKMACARuleMatching", + "declAttributes": [ + "AccessControl", + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MACARuleMatchingManager", + "printedName": "MACARuleMatchingManager", + "children": [ + { + "kind": "Var", + "name": "isEnable", + "printedName": "isEnable", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC8isEnable33_0BB5878F933DE26C4692A35EA0FEF78ALLSbvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC8isEnable33_0BB5878F933DE26C4692A35EA0FEF78ALLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "macaRules", + "printedName": "macaRules", + "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:12FBSDKCoreKit23MACARuleMatchingManagerC9macaRules33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC9macaRules33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "hasStorage": true + }, + { + "kind": "Var", + "name": "keys", + "printedName": "keys", + "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:12FBSDKCoreKit23MACARuleMatchingManagerC4keys33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC4keys33_0BB5878F933DE26C4692A35EA0FEF78ALLSaySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)enable", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getKey", + "printedName": "getKey(logic:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC6getKey5logicSSSgSDySSypG_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC6getKey5logicSSSgSDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stringComparison", + "printedName": "stringComparison(variable:values:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC16stringComparison8variable6values4dataSbSS_SDySSypGAHtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC16stringComparison8variable6values4dataSbSS_SDySSypGAHtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stringValueOf", + "printedName": "stringValueOf(_:)", + "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": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13stringValueOfySSSgypSgF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13stringValueOfySSSgypSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "doubleValueOf", + "printedName": "doubleValueOf(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13doubleValueOfySdypSgF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13doubleValueOfySdypSgF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isMatchCCRule", + "printedName": "isMatchCCRule(_:data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC13isMatchCCRule_4dataSbSSSg_SDySSypGtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC13isMatchCCRule_4dataSbSSSg_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getMatchPropertyIDs", + "printedName": "getMatchPropertyIDs(params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19getMatchPropertyIDs6paramsSSSDySSypG_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19getMatchPropertyIDs6paramsSSSDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSDictionary?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSDictionary", + "printedName": "Foundation.NSDictionary", + "usr": "c:objc(cs)NSDictionary" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)processParameters:event:", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC17processParameters_5eventSo12NSDictionaryCSgAH_SSSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:event:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateInfo", + "printedName": "generateInfo(params:event:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + }, + { + "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:12FBSDKCoreKit23MACARuleMatchingManagerC12generateInfo6params5eventySDySSypGz_SSSgtF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC12generateInfo6params5eventySDySSypGz_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeGeneratedInfo", + "printedName": "removeGeneratedInfo(params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "paramValueOwnership": "InOut", + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC19removeGeneratedInfo6paramsySDySSypGz_tF", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC19removeGeneratedInfo6paramsySDySSypGz_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MACARuleMatchingManager", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager(im)init", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "deviceInformationProvider", + "printedName": "deviceInformationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV25deviceInformationProviderSo011FBSDKDeviceI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:deviceInformationProvider:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "_DeviceInformationProviding", + "printedName": "FBSDKCoreKit._DeviceInformationProviding", + "usr": "c:objc(pl)FBSDKDeviceInformationProviding" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProvider017deviceInformationJ08settingsAESo011FBSDKServerI9Providing_p_So011FBSDKDevicelO0_pAA16SettingsProtocol_ptcfc", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV27serverConfigurationProvider017deviceInformationJ08settingsAESo011FBSDKServerI9Providing_p_So011FBSDKDevicelO0_pAA16SettingsProtocol_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMACARuleMatchingManager", + "mangledName": "$s12FBSDKCoreKit23MACARuleMatchingManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKMACARuleMatchingManager", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "MACARuleMatching", + "printedName": "MACARuleMatching", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKMACARuleMatching", + "mangledName": "$s12FBSDKCoreKit16MACARuleMatchingP" + }, + { + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.MACARuleMatchingManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit23MACARuleMatchingManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV13dependentType33_958FB1E740EB546F978E744982C869ADLLxmvp", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV13dependentType33_958FB1E740EB546F978E744982C869ADLLxmvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKCoreKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKCoreKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24MissingDependenciesErrorV", + "mangledName": "$s12FBSDKCoreKit24MissingDependenciesErrorV", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Permission", + "printedName": "Permission", + "children": [ + { + "kind": "Var", + "name": "publicProfile", + "printedName": "publicProfile", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO13publicProfileyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO13publicProfileyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userFriends", + "printedName": "userFriends", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userFriendsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userFriendsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO5emailyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO5emailyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAboutMe", + "printedName": "userAboutMe", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userAboutMeyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userAboutMeyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsBooks", + "printedName": "userActionsBooks", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsBooksyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsBooksyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsFitness", + "printedName": "userActionsFitness", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO18userActionsFitnessyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO18userActionsFitnessyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsMusic", + "printedName": "userActionsMusic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsMusicyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsMusicyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsNews", + "printedName": "userActionsNews", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO15userActionsNewsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO15userActionsNewsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userActionsVideo", + "printedName": "userActionsVideo", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userActionsVideoyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userActionsVideoyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userBirthday", + "printedName": "userBirthday", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userBirthdayyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userBirthdayyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userEducationHistory", + "printedName": "userEducationHistory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO20userEducationHistoryyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO20userEducationHistoryyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userEvents", + "printedName": "userEvents", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userEventsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userEventsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userGamesActivity", + "printedName": "userGamesActivity", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userGamesActivityyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userGamesActivityyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userGender", + "printedName": "userGender", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userGenderyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userGenderyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userHometown", + "printedName": "userHometown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userHometownyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userHometownyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLikes", + "printedName": "userLikes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO9userLikesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO9userLikesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLocation", + "printedName": "userLocation", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userLocationyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userLocationyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userManagedGroups", + "printedName": "userManagedGroups", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userManagedGroupsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userManagedGroupsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userPhotos", + "printedName": "userPhotos", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userPhotosyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userPhotosyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userPosts", + "printedName": "userPosts", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO9userPostsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO9userPostsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userRelationships", + "printedName": "userRelationships", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17userRelationshipsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17userRelationshipsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userRelationshipDetails", + "printedName": "userRelationshipDetails", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO23userRelationshipDetailsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO23userRelationshipDetailsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userReligionPolitics", + "printedName": "userReligionPolitics", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO20userReligionPoliticsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO20userReligionPoliticsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userTaggedPlaces", + "printedName": "userTaggedPlaces", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO16userTaggedPlacesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO16userTaggedPlacesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userVideos", + "printedName": "userVideos", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO10userVideosyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO10userVideosyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userWebsite", + "printedName": "userWebsite", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO11userWebsiteyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO11userWebsiteyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userWorkHistory", + "printedName": "userWorkHistory", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO15userWorkHistoryyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO15userWorkHistoryyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readCustomFriendlists", + "printedName": "readCustomFriendlists", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO21readCustomFriendlistsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO21readCustomFriendlistsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readInsights", + "printedName": "readInsights", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12readInsightsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12readInsightsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readAudienceNetworkInsights", + "printedName": "readAudienceNetworkInsights", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO27readAudienceNetworkInsightsyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO27readAudienceNetworkInsightsyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "readPageMailboxes", + "printedName": "readPageMailboxes", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO17readPageMailboxesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO17readPageMailboxesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesShowList", + "printedName": "pagesShowList", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO13pagesShowListyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO13pagesShowListyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesManageCta", + "printedName": "pagesManageCta", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO14pagesManageCtayA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO14pagesManageCtayA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "pagesManageInstantArticles", + "printedName": "pagesManageInstantArticles", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO26pagesManageInstantArticlesyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO26pagesManageInstantArticlesyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "adsRead", + "printedName": "adsRead", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO7adsReadyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO7adsReadyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userLink", + "printedName": "userLink", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO8userLinkyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO8userLinkyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "userAgeRange", + "printedName": "userAgeRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO12userAgeRangeyA2CmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO12userAgeRangeyA2CmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "custom", + "printedName": "custom", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Permission.Type) -> (Swift.String) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String) -> FBSDKCoreKit.Permission", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Permission.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit10PermissionO6customyACSScACmF", + "mangledName": "$s12FBSDKCoreKit10PermissionO6customyACSScACmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringLiteral:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10PermissionO13stringLiteralACSS_tcfc", + "mangledName": "$s12FBSDKCoreKit10PermissionO13stringLiteralACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10PermissionO4nameSSvp", + "mangledName": "$s12FBSDKCoreKit10PermissionO4nameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10PermissionO4nameSSvg", + "mangledName": "$s12FBSDKCoreKit10PermissionO4nameSSvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10PermissionO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit10PermissionO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10PermissionO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit10PermissionO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10PermissionO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit10PermissionO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10PermissionO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit10PermissionO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit10PermissionO", + "mangledName": "$s12FBSDKCoreKit10PermissionO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "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": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Profile", + "printedName": "Profile", + "children": [ + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)userID", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(im)userID", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "firstName", + "printedName": "firstName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)firstName", + "mangledName": "$s12FBSDKCoreKit7ProfileC9firstNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)firstName", + "mangledName": "$s12FBSDKCoreKit7ProfileC9firstNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)middleName", + "mangledName": "$s12FBSDKCoreKit7ProfileC10middleNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)middleName", + "mangledName": "$s12FBSDKCoreKit7ProfileC10middleNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "lastName", + "printedName": "lastName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)lastName", + "mangledName": "$s12FBSDKCoreKit7ProfileC8lastNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)lastName", + "mangledName": "$s12FBSDKCoreKit7ProfileC8lastNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)name", + "mangledName": "$s12FBSDKCoreKit7ProfileC4nameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)name", + "mangledName": "$s12FBSDKCoreKit7ProfileC4nameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)linkURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC7linkURL10Foundation0E0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)linkURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC7linkURL10Foundation0E0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "refreshDate", + "printedName": "refreshDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)refreshDate", + "mangledName": "$s12FBSDKCoreKit7ProfileC11refreshDate10Foundation0E0Vvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)refreshDate", + "mangledName": "$s12FBSDKCoreKit7ProfileC11refreshDate10Foundation0E0Vvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)imageURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL10Foundation0E0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)imageURL", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL10Foundation0E0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)email", + "mangledName": "$s12FBSDKCoreKit7ProfileC5emailSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)email", + "mangledName": "$s12FBSDKCoreKit7ProfileC5emailSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "friendIDs", + "printedName": "friendIDs", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)friendIDs", + "mangledName": "$s12FBSDKCoreKit7ProfileC9friendIDsSaySSGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)friendIDs", + "mangledName": "$s12FBSDKCoreKit7ProfileC9friendIDsSaySSGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "birthday", + "printedName": "birthday", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)birthday", + "mangledName": "$s12FBSDKCoreKit7ProfileC8birthday10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)birthday", + "mangledName": "$s12FBSDKCoreKit7ProfileC8birthday10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "ageRange", + "printedName": "ageRange", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)ageRange", + "mangledName": "$s12FBSDKCoreKit7ProfileC8ageRangeSo012FBSDKUserAgeE0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)ageRange", + "mangledName": "$s12FBSDKCoreKit7ProfileC8ageRangeSo012FBSDKUserAgeE0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hometown", + "printedName": "hometown", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)hometown", + "mangledName": "$s12FBSDKCoreKit7ProfileC8hometownSo13FBSDKLocationCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)hometown", + "mangledName": "$s12FBSDKCoreKit7ProfileC8hometownSo13FBSDKLocationCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)location", + "mangledName": "$s12FBSDKCoreKit7ProfileC8locationSo13FBSDKLocationCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)location", + "mangledName": "$s12FBSDKCoreKit7ProfileC8locationSo13FBSDKLocationCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(py)gender", + "mangledName": "$s12FBSDKCoreKit7ProfileC6genderSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)gender", + "mangledName": "$s12FBSDKCoreKit7ProfileC6genderSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isLimited", + "printedName": "isLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(py)isLimited", + "mangledName": "$s12FBSDKCoreKit7ProfileC9isLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)isLimited", + "mangledName": "$s12FBSDKCoreKit7ProfileC9isLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "_current", + "printedName": "_current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)_current", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)_current", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)set_current:", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC8_currentACSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC8_currentACSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isUpdatedWithAccessTokenChange", + "printedName": "isUpdatedWithAccessTokenChange", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)isUpdatedWithAccessTokenChange", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)isUpdatedWithAccessTokenChange", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvgZ", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)setIsUpdatedWithAccessTokenChange:", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC30isUpdatedWithAccessTokenChangeSbvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDateACSS_SSSgA3K10Foundation0L0VSgAL0N0VSgtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDate05imageL05email9friendIDs8birthday8ageRange8hometown8location6genderACSS_SSSgA3S10Foundation0L0VSgAT0N0VSgAwSSaySSGSgAZSo012FBSDKUserAgeU0CSgSo13FBSDKLocationCSgA6_AStcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6userID9firstName06middleG004lastG04name7linkURL11refreshDate05imageL05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimitedACSS_SSSgA3T10Foundation0L0VSgAU0N0VSgAxTSaySSGSgA_So012FBSDKUserAgeU0CSgSo13FBSDKLocationCSgA7_ATSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "enableUpdatesOnAccessTokenChange", + "printedName": "enableUpdatesOnAccessTokenChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)enableUpdatesOnAccessTokenChange:", + "mangledName": "$s12FBSDKCoreKit7ProfileC32enableUpdatesOnAccessTokenChangeyySbFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "deprecated": true, + "objc_name": "enableUpdatesOnAccessTokenChange:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "Available", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile(im)init", + "mangledName": "$s12FBSDKCoreKit7ProfileCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "PictureMode", + "printedName": "PictureMode", + "children": [ + { + "kind": "Var", + "name": "square", + "printedName": "square", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO6squareyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO6squareyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "normal", + "printedName": "normal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO6normalyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO6normalyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "album", + "printedName": "album", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5albumyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5albumyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "small", + "printedName": "small", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5smallyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5smallyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "large", + "printedName": "large", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.PictureMode.Type) -> FBSDKCoreKit.Profile.PictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.PictureMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO5largeyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO5largeyA2EmF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.PictureMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueAESgSu_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO8rawValueSuvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO", + "mangledName": "$s12FBSDKCoreKit7ProfileC11PictureModeO", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfilePictureMode", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "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": "Function", + "name": "imageURL", + "printedName": "imageURL(forMode:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)imageURLForPictureMode:size:", + "mangledName": "$s12FBSDKCoreKit7ProfileC8imageURL7forMode4size10Foundation0E0VSgAC07PictureG0O_So6CGSizeVtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "imageURLForPictureMode:size:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getImageURL", + "printedName": "getImageURL(profileID:pictureMode:size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)getImageURLWithProfileID:pictureMode:size:", + "mangledName": "$s12FBSDKCoreKit7ProfileC11getImageURL9profileID11pictureMode4size10Foundation0F0VSgSS_AC07PictureJ0OSo6CGSizeVtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadCurrentProfile", + "printedName": "loadCurrentProfile(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.Profile?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)loadCurrentProfileWithCompletion:", + "mangledName": "$s12FBSDKCoreKit7ProfileC011loadCurrentC010completionyyACSg_s5Error_pSgtcSg_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "loadCurrentProfileWithCompletion:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadProfile", + "printedName": "loadProfile(accessToken:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.Profile?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.Profile?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)loadProfileWithAccessToken:completion:", + "mangledName": "$s12FBSDKCoreKit7ProfileC04loadC011accessToken10completionySo011FBSDKAccessF0CSg_yACSg_s5Error_pSgtcSgtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeGraphRequestParameters", + "printedName": "makeGraphRequestParameters(token:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)makeGraphRequestParametersWithToken:", + "mangledName": "$s12FBSDKCoreKit7ProfileC26makeGraphRequestParameters5tokenSDyS2SGSo16FBSDKAccessTokenCSg_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "current", + "printedName": "current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)currentProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "currentProfile", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)currentProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "currentProfile", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)setCurrentProfile:", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvsZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "setCurrentProfile:", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC7currentACSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC7currentACSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "fetchCachedProfile", + "printedName": "fetchCachedProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Self?", + "children": [ + { + "kind": "TypeNominal", + "name": "DynamicSelf", + "printedName": "Self" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)fetchCachedProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC011fetchCachedC0ACXDSgyFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "fetchCachedProfile", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "profileUserDefaultsKey", + "printedName": "profileUserDefaultsKey", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)profileUserDefaultsKey", + "mangledName": "$s12FBSDKCoreKit7ProfileC22profileUserDefaultsKeySSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isFromExtension": true, + "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:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)profileUserDefaultsKey", + "mangledName": "$s12FBSDKCoreKit7ProfileC22profileUserDefaultsKeySSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "supportsSecureCoding", + "printedName": "supportsSecureCoding", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(cpy)supportsSecureCoding", + "mangledName": "$s12FBSDKCoreKit7ProfileC20supportsSecureCodingSbvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKProfile(cm)supportsSecureCoding", + "mangledName": "$s12FBSDKCoreKit7ProfileC20supportsSecureCodingSbvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "supportsSecureCoding", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)initWithCoder:", + "mangledName": "$s12FBSDKCoreKit7ProfileC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "AccessControl" + ], + "isFromExtension": true, + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "encode", + "printedName": "encode(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKProfile(im)encodeWithCoder:", + "mangledName": "$s12FBSDKCoreKit7ProfileC6encode4withySo7NSCoderC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "encodeWithCoder:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "CodingKeys", + "printedName": "CodingKeys", + "children": [ + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO6userIDyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO6userIDyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "firstName", + "printedName": "firstName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9firstNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9firstNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "middleName", + "printedName": "middleName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO10middleNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO10middleNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "lastName", + "printedName": "lastName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8lastNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8lastNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO4nameyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO4nameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "linkURL", + "printedName": "linkURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO7linkURLyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO7linkURLyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "refreshDate", + "printedName": "refreshDate", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11refreshDateyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11refreshDateyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8imageURLyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8imageURLyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "email", + "printedName": "email", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO5emailyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO5emailyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "friendIDs", + "printedName": "friendIDs", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9friendIDsyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9friendIDsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "isLimited", + "printedName": "isLimited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO9isLimitedyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO9isLimitedyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "birthday", + "printedName": "birthday", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8birthdayyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8birthdayyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "ageRange", + "printedName": "ageRange", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8ageRangeyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8ageRangeyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "hometown", + "printedName": "hometown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8hometownyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8hometownyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "location", + "printedName": "location", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8locationyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8locationyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "gender", + "printedName": "gender", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Profile.CodingKeys.Type) -> FBSDKCoreKit.Profile.CodingKeys", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Profile.CodingKeys.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO6genderyA2EmF", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO6genderyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringValue", + "printedName": "stringValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO11stringValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "intValue", + "printedName": "intValue", + "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:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvp", + "moduleName": "FBSDKCoreKit", + "implicit": 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:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueSiSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(intValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.CodingKeys?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodingKeys", + "printedName": "FBSDKCoreKit.Profile.CodingKeys", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO8intValueAESgSi_tcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO8intValueAESgSi_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit7ProfileC10CodingKeysO", + "mangledName": "$s12FBSDKCoreKit7ProfileC10CodingKeysO", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "CodingKey", + "printedName": "CodingKey", + "usr": "s:s9CodingKeyP", + "mangledName": "$ss9CodingKeyP" + }, + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessG9Providing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphgH0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10DeliveringpvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV18notificationCenterSo25_FBSDKNotificationPosting_So0H10DeliveringpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlHoster", + "printedName": "urlHoster", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvp", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvg", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvs", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvM", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV9urlHosterSo15FBSDKURLHosting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenProvider:dataStore:graphRequestFactory:notificationCenter:settings:urlHoster:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProvider9dataStore19graphRequestFactory18notificationCenter8settings9urlHosterAESo011FBSDKAccessG9Providing_pXp_So19FBSDKDataPersisting_pSo010FBSDKGraphlM0_pSo25_FBSDKNotificationPosting_So0X10DeliveringpAA16SettingsProtocol_pSo15FBSDKURLHosting_ptcfc", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV19accessTokenProvider9dataStore19graphRequestFactory18notificationCenter8settings9urlHosterAESo011FBSDKAccessG9Providing_pXp_So19FBSDKDataPersisting_pSo010FBSDKGraphlM0_pSo25_FBSDKNotificationPosting_So0X10DeliveringpAA16SettingsProtocol_pSo15FBSDKURLHosting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit7ProfileC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC22configuredDependenciesAC04TypeE0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit.Profile.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit7ProfileC19defaultDependenciesAC04TypeE0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile", + "mangledName": "$s12FBSDKCoreKit7ProfileC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProfile", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ProfileProviding", + "printedName": "ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit.Profile.TypeDependencies", + "usr": "s:12FBSDKCoreKit7ProfileC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfilePictureViewState", + "printedName": "ProfilePictureViewState", + "children": [ + { + "kind": "Var", + "name": "profileID", + "printedName": "profileID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileIDSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "size", + "printedName": "size", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "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:12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV4sizeSo6CGSizeVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "scale", + "printedName": "scale", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV5scale14CoreFoundation7CGFloatVvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV5scale12CoreGraphics7CGFloatVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "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": "s:12FBSDKCoreKit23ProfilePictureViewStateV5scale14CoreFoundation7CGFloatVvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV5scale12CoreGraphics7CGFloatVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pictureMode", + "printedName": "pictureMode", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV11pictureModeAA0C0C0dH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "imageShouldFit", + "printedName": "imageShouldFit", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvp", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvg", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV14imageShouldFitSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profileID:size:scale:pictureMode:imageShouldFit:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "PictureMode", + "printedName": "FBSDKCoreKit.Profile.PictureMode", + "usr": "s:12FBSDKCoreKit7ProfileC11PictureModeO" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV9profileID4size5scale11pictureMode14imageShouldFitACSS_So6CGSizeV14CoreFoundation7CGFloatVAA0C0C0dL0OSbtcfc", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV9profileID4size5scale11pictureMode14imageShouldFitACSS_So6CGSizeV12CoreGraphics7CGFloatVAA0C0C0dL0OSbtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + }, + { + "kind": "TypeNominal", + "name": "ProfilePictureViewState", + "printedName": "FBSDKCoreKit.ProfilePictureViewState", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit23ProfilePictureViewStateV", + "mangledName": "$s12FBSDKCoreKit23ProfilePictureViewStateV", + "moduleName": "FBSDKCoreKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileProviding", + "printedName": "ProfileProviding", + "children": [ + { + "kind": "Var", + "name": "current", + "printedName": "current", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cpy)currentProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "protocolReq": true, + "objc_name": "currentProfile", + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)currentProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvgZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)setCurrentProfile:", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP7currentAA0C0CSgvsZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "fetchCachedProfile", + "printedName": "fetchCachedProfile()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding(cm)fetchCachedProfile", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP011fetchCachedC0AA0C0CSgyFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.ProfileProviding>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding", + "mangledName": "$s12FBSDKCoreKit16ProfileProvidingP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKProfileProviding", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProtectedModeManager", + "printedName": "ProtectedModeManager", + "children": [ + { + "kind": "Var", + "name": "isEnabled", + "printedName": "isEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC9isEnabled013_23E3C687B8F4H18C50A3A25F390F8C518LLSbvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC9isEnabled013_23E3C687B8F4H18C50A3A25F390F8C518LLSbvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "hasStorage": true + }, + { + "kind": "Var", + "name": "standardParametersDefault", + "printedName": "standardParametersDefault", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC25standardParametersDefault013_23E3C687B8F4I18C50A3A25F390F8C518LLShySSGvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC25standardParametersDefault013_23E3C687B8F4I18C50A3A25F390F8C518LLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "standardParameters", + "printedName": "standardParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18standardParameters013_23E3C687B8F4H18C50A3A25F390F8C518LLShySSGvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18standardParameters013_23E3C687B8F4H18C50A3A25F390F8C518LLShySSGvp", + "moduleName": "FBSDKCoreKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 2, + "hasStorage": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)enable", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC6enableyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "enable", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processParameters", + "printedName": "processParameters(_:eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AppEvents.Name?", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)processParameters:eventName:", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC17processParameters_9eventNameSDySo022FBSDKAppEventParameterI0aypGSgAI_So0jkI0aSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "processParameters:eventName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtectedModeManager", + "printedName": "FBSDKCoreKit.ProtectedModeManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager(im)init", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderSo011FBSDKServerI9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV27serverConfigurationProviderAESo011FBSDKServerI9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProtectedModeManager", + "mangledName": "$s12FBSDKCoreKit20ProtectedModeManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKProtectedModeManager", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.ProtectedModeManager.ObjectDependencies", + "usr": "s:12FBSDKCoreKit20ProtectedModeManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginTooltipError", + "printedName": "LoginTooltipError", + "children": [ + { + "kind": "Var", + "name": "missingTooltipText", + "printedName": "missingTooltipText", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.LoginTooltipError.Type) -> FBSDKCoreKit.LoginTooltipError", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.LoginTooltipError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO07missingD4TextyA2CmF", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO07missingD4TextyA2CmF", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + }, + { + "kind": "TypeNominal", + "name": "LoginTooltipError", + "printedName": "FBSDKCoreKit.LoginTooltipError", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO2eeoiySbAC_ACtFZ", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivp", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivg", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO9hashValueSivg", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit17LoginTooltipErrorO4hash4intoys6HasherVz_tF", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit17LoginTooltipErrorO", + "mangledName": "$s12FBSDKCoreKit17LoginTooltipErrorO", + "moduleName": "FBSDKCoreKit", + "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": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConfigurationProvider", + "printedName": "ServerConfigurationProvider", + "children": [ + { + "kind": "Var", + "name": "loggingToken", + "printedName": "loggingToken", + "children": [ + { + "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:12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvp", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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:12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvg", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC12loggingTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit27ServerConfigurationProviderC29shouldUseSafariViewController13forDialogNameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC29shouldUseSafariViewController13forDialogNameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loadServerConfiguration", + "printedName": "loadServerConfiguration(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKLoginTooltip", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip", + "usr": "c:objc(cs)FBSDKLoginTooltip" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit27ServerConfigurationProviderC04loadcD010completionyySo17FBSDKLoginTooltipCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC04loadcD010completionyySo17FBSDKLoginTooltipCSg_s5Error_pSgtcSg_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProvider", + "printedName": "FBSDKCoreKit.ServerConfigurationProvider", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider(im)init", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AdSupport", + "printedName": "AdSupport", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "Settings", + "printedName": "Settings", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC22configuredDependenciesAC06ObjectE0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19defaultDependenciesAC06ObjectE0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(cpy)sharedSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "objc_name": "sharedSettings", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(cm)sharedSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sdkVersion", + "printedName": "sdkVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)sdkVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC10sdkVersionSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "sdkVersion", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)sdkVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC10sdkVersionSSvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "sdkVersion", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultGraphAPIVersion", + "printedName": "defaultGraphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)defaultGraphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC22defaultGraphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)defaultGraphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC22defaultGraphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "jpegCompressionQuality", + "printedName": "jpegCompressionQuality", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)JPEGCompressionQuality", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "JPEGCompressionQuality", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)JPEGCompressionQuality", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setJPEGCompressionQuality:", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC22jpegCompressionQuality14CoreFoundation7CGFloatVvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC22jpegCompressionQuality12CoreGraphics7CGFloatVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "autoLogAppEventsEnabled", + "printedName": "autoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)autoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)autoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAutoLogAppEventsEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23autoLogAppEventsEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAutoLogAppEventsEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAutoLogAppEventsEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAutoLogAppEventsEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isAutoLogAppEventsEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isAutoLogAppEventsEnabled", + "printedName": "_isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isAutoLogAppEventsEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codelessDebugLogEnabled", + "printedName": "codelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "codelessDebugLogEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "codelessDebugLogEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setCodelessDebugLogEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23codelessDebugLogEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isCodelessDebugLogEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isCodelessDebugLogEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsCodelessDebugLogEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25isCodelessDebugLogEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isCodelessDebugLogEnabled", + "printedName": "_isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26_isCodelessDebugLogEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDCollectionEnabled", + "printedName": "advertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "advertiserIDCollectionEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserIDCollectionEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAdvertiserIDCollectionEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC29advertiserIDCollectionEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserIDCollectionEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserIDCollectionEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsAdvertiserIDCollectionEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC31isAdvertiserIDCollectionEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_isAdvertiserIDCollectionEnabled", + "printedName": "_isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC32_isAdvertiserIDCollectionEnabledSbSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "skAdNetworkReportEnabled", + "printedName": "skAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)skAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "declAttributes": [ + "Final", + "AccessControl", + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)skAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setSkAdNetworkReportEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC24skAdNetworkReportEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSKAdNetworkReportEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSKAdNetworkReportEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsSKAdNetworkReportEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isSKAdNetworkReportEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isEventDataUsageLimited", + "printedName": "isEventDataUsageLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEventDataUsageLimited", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEventDataUsageLimited", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsEventDataUsageLimited:", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsEventDataUsageLimited:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC23isEventDataUsageLimitedSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseCachedValuesForExpensiveMetadata", + "printedName": "shouldUseCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseCachedValuesForExpensiveMetadata", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseCachedValuesForExpensiveMetadata", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setShouldUseCachedValuesForExpensiveMetadata:", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setShouldUseCachedValuesForExpensiveMetadata:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC41shouldUseCachedValuesForExpensiveMetadataSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isGraphErrorRecoveryEnabled", + "printedName": "isGraphErrorRecoveryEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isGraphErrorRecoveryEnabled", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "isGraphErrorRecoveryEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsGraphErrorRecoveryEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setIsGraphErrorRecoveryEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isGraphErrorRecoveryEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)appID", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appID", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)appID", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "appID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAppID:", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAppID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC5appIDSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC5appIDSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "appURLSchemeSuffix", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "appURLSchemeSuffix", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAppURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAppURLSchemeSuffix:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18appURLSchemeSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_appURLSchemeSuffix", + "printedName": "_appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_appURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_appURLSchemeSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "clientToken", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "clientToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setClientToken:", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setClientToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC11clientTokenSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC11clientTokenSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_clientToken", + "printedName": "_clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_clientToken", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_clientToken:", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC12_clientTokenSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_clientTokenSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "displayName", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "displayName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDisplayName:", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDisplayName:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC11displayNameSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC11displayNameSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_displayName", + "printedName": "_displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_displayName", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_displayName:", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC12_displayNameSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC12_displayNameSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "facebookDomainPart", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "facebookDomainPart", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setFacebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setFacebookDomainPart:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18facebookDomainPartSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "_facebookDomainPart", + "printedName": "_facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)_facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)_facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)set_facebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC19_facebookDomainPartSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIVersion", + "printedName": "graphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIVersion", + "declAttributes": [ + "Final", + "ObjC", + "Lazy", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "graphAPIVersion", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setGraphAPIVersion:", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setGraphAPIVersion:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC15graphAPIVersionSSvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC15graphAPIVersionSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "userAgentSuffix", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "userAgentSuffix", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setUserAgentSuffix:", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "setUserAgentSuffix:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC15userAgentSuffixSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabled", + "printedName": "advertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "advertiserTrackingEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAdvertiserTrackingEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertiserTrackingEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "implicit": true, + "declAttributes": [ + "Final", + "Available" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserTrackingEnabled", + "printedName": "isAdvertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserTrackingEnabled", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isAdvertiserTrackingEnabled", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setIsAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setIsAdvertiserTrackingEnabled:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27isAdvertiserTrackingEnabledSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertisingTrackingStatus", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertisingTrackingStatus", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setAdvertisingTrackingStatus:", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0Vvs", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0VvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC25advertisingTrackingStatusSo016FBSDKAdvertisingeF0VvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isDataProcessingRestricted", + "printedName": "isDataProcessingRestricted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isDataProcessingRestrictedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isDataProcessingRestricted", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit8SettingsC26isDataProcessingRestrictedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isDataProcessingRestricted", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "persistableDataProcessingOptions", + "printedName": "persistableDataProcessingOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit8SettingsC32persistableDataProcessingOptionsSDySSypGSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "persistableDataProcessingOptions", + "declAttributes": [ + "Final", + "ObjC", + "Lazy", + "SetterAccess", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit8SettingsC32persistableDataProcessingOptionsSDySSypGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "objc_name": "persistableDataProcessingOptions", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDataProcessingOptions:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24setDataProcessingOptionsyySaySSGSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDataProcessingOptions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:country:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setDataProcessingOptions:country:state:", + "mangledName": "$s12FBSDKCoreKit8SettingsC24setDataProcessingOptions_7country5stateySaySSGSg_s5Int32VAJtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "setDataProcessingOptions:country:state:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "loggingBehaviors", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "loggingBehaviors", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setLoggingBehaviors:", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setLoggingBehaviors:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "enableLoggingBehavior", + "printedName": "enableLoggingBehavior(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)enableLoggingBehavior:", + "mangledName": "$s12FBSDKCoreKit8SettingsC21enableLoggingBehavioryySo012FBSDKLoggingF0aF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableLoggingBehavior", + "printedName": "disableLoggingBehavior(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)disableLoggingBehavior:", + "mangledName": "$s12FBSDKCoreKit8SettingsC22disableLoggingBehavioryySo012FBSDKLoggingF0aF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "shouldUseTokenOptimizations", + "printedName": "shouldUseTokenOptimizations", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseTokenOptimizations", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "shouldUseTokenOptimizations", + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(im)setShouldUseTokenOptimizations:", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setShouldUseTokenOptimizations:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC27shouldUseTokenOptimizationsSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isSetATETimeExceedsInstallTime", + "printedName": "isSetATETimeExceedsInstallTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit8SettingsC30isSetATETimeExceedsInstallTimeSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "isSetATETimeExceedsInstallTime", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit8SettingsC30isSetATETimeExceedsInstallTimeSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isSetATETimeExceedsInstallTime", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isATETimeSufficientlyDelayed", + "printedName": "isATETimeSufficientlyDelayed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit8SettingsC28isATETimeSufficientlyDelayedSbvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "isATETimeSufficientlyDelayed", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit8SettingsC28isATETimeSufficientlyDelayedSbvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "isATETimeSufficientlyDelayed", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)installTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC16installTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "installTimestamp", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)installTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC16installTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "installTimestamp", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabledTimestamp", + "printedName": "advertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(py)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabledTimestamp", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit8SettingsC34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "advertiserTrackingEnabledTimestamp", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParamValue", + "printedName": "graphAPIDebugParamValue", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC23graphAPIDebugParamValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "objc_name": "graphAPIDebugParamValue", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "Available", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC23graphAPIDebugParamValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParamValue", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParameterValue", + "printedName": "graphAPIDebugParameterValue", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSettings(py)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC27graphAPIDebugParameterValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParameterValue", + "declAttributes": [ + "Final", + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit8SettingsC27graphAPIDebugParameterValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "graphAPIDebugParameterValue", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings(im)init", + "mangledName": "$s12FBSDKCoreKit8SettingsCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "recordInstall", + "printedName": "recordInstall()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)recordInstall", + "mangledName": "$s12FBSDKCoreKit8SettingsC13recordInstallyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "recordInstall", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordSetAdvertiserTrackingEnabled", + "printedName": "recordSetAdvertiserTrackingEnabled()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)recordSetAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit8SettingsC34recordSetAdvertiserTrackingEnabledyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logWarnings", + "printedName": "logWarnings()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)logWarnings", + "mangledName": "$s12FBSDKCoreKit8SettingsC11logWarningsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logWarnings", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIfSDKSettingsChanged", + "printedName": "logIfSDKSettingsChanged()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)logIfSDKSettingsChanged", + "mangledName": "$s12FBSDKCoreKit8SettingsC23logIfSDKSettingsChangedyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logIfSDKSettingsChanged", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistedStringProperty", + "printedName": "PersistedStringProperty", + "children": [ + { + "kind": "Var", + "name": "persistenceKey", + "printedName": "persistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovp", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovg", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKeyAC011PersistenceH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backingKeyPath", + "printedName": "backingKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14backingKeyPaths017ReferenceWritablehI0CyACSSSgGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18appURLSchemeSuffixAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11clientTokenAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV11displayNameAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV18facebookDomainPartAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(persistenceKey:backingKeyPath:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + }, + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKey07backingH4PathAeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSSSgGtcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV14persistenceKey07backingH4PathAeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSSSgGtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV", + "mangledName": "$s12FBSDKCoreKit8SettingsC23PersistedStringPropertyV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "getPersistedStringProperty", + "printedName": "getPersistedStringProperty(_:)", + "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": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC26getPersistedStringPropertyySSSgAC0efG0VF", + "mangledName": "$s12FBSDKCoreKit8SettingsC26getPersistedStringPropertyySSSgAC0efG0VF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPersistedStringProperty", + "printedName": "setPersistedStringProperty(_:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PersistedStringProperty", + "printedName": "FBSDKCoreKit.Settings.PersistedStringProperty", + "usr": "s:12FBSDKCoreKit8SettingsC23PersistedStringPropertyV" + }, + { + "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:12FBSDKCoreKit8SettingsC26setPersistedStringProperty_2toyAC0efG0V_SSSgtF", + "mangledName": "$s12FBSDKCoreKit8SettingsC26setPersistedStringProperty_2toyAC0efG0V_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistedBooleanValue", + "printedName": "PersistedBooleanValue", + "children": [ + { + "kind": "Var", + "name": "persistenceKey", + "printedName": "persistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKeyAC011PersistenceH0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "backingKeyPath", + "printedName": "backingKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14backingKeyPaths017ReferenceWritablehI0CyACSbSgGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultValue", + "printedName": "defaultValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 2, + "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:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV07defaultF0Sbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isAutoLogAppEventsEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV31isAdvertiserIDCollectionEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvpZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvgZ", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV25isCodelessDebugLogEnabledAEvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(persistenceKey:backingKeyPath:defaultValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + }, + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "ReferenceWritableKeyPath", + "printedName": "Swift.ReferenceWritableKeyPath", + "children": [ + { + "kind": "TypeNominal", + "name": "Settings", + "printedName": "FBSDKCoreKit.Settings", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Bool?", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "usr": "s:Sq" + } + ], + "usr": "s:s24ReferenceWritableKeyPathC" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKey07backingH4Path07defaultF0AeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSbSgGSbtcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV14persistenceKey07backingH4Path07defaultF0AeC011PersistenceH0O_s017ReferenceWritablehJ0CyACSbSgGSbtcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV", + "mangledName": "$s12FBSDKCoreKit8SettingsC21PersistedBooleanValueV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "getPersistedBooleanProperty", + "printedName": "getPersistedBooleanProperty(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC27getPersistedBooleanPropertyySbAC0eF5ValueVF", + "mangledName": "$s12FBSDKCoreKit8SettingsC27getPersistedBooleanPropertyySbAC0eF5ValueVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setPersistedBooleanProperty", + "printedName": "setPersistedBooleanProperty(_:to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "PersistedBooleanValue", + "printedName": "FBSDKCoreKit.Settings.PersistedBooleanValue", + "usr": "s:12FBSDKCoreKit8SettingsC21PersistedBooleanValueV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit8SettingsC27setPersistedBooleanProperty_2toyAC0eF5ValueV_SbtF", + "mangledName": "$s12FBSDKCoreKit8SettingsC27setPersistedBooleanProperty_2toyAC0eF5ValueV_SbtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "PersistenceKey", + "printedName": "PersistenceKey", + "children": [ + { + "kind": "Var", + "name": "urlSchemeSuffix", + "printedName": "urlSchemeSuffix", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO15urlSchemeSuffixyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO15urlSchemeSuffixyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO11clientTokenyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO11clientTokenyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO11displayNameyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO11displayNameyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "domainPart", + "printedName": "domainPart", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO10domainPartyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO10domainPartyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25isAutoLogAppEventsEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25isAutoLogAppEventsEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO31isAdvertiserIDCollectionEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO31isAdvertiserIDCollectionEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25isCodelessDebugLogEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25isCodelessDebugLogEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO16loggingBehaviorsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO16loggingBehaviorsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "appID", + "printedName": "appID", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO5appIDyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO5appIDyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "jpegCompressionQuality", + "printedName": "jpegCompressionQuality", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO22jpegCompressionQualityyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO22jpegCompressionQualityyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO26isSKAdNetworkReportEnabledyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO26isSKAdNetworkReportEnabledyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 10 + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO25advertisingTrackingStatusyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO25advertisingTrackingStatusyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 11 + }, + { + "kind": "Var", + "name": "limitEventAndDataUsage", + "printedName": "limitEventAndDataUsage", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO22limitEventAndDataUsageyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO22limitEventAndDataUsageyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 12 + }, + { + "kind": "Var", + "name": "useCachedValuesForExpensiveMetadata", + "printedName": "useCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO35useCachedValuesForExpensiveMetadatayA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO35useCachedValuesForExpensiveMetadatayA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 13 + }, + { + "kind": "Var", + "name": "useTokenOptimizations", + "printedName": "useTokenOptimizations", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO21useTokenOptimizationsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO21useTokenOptimizationsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 14 + }, + { + "kind": "Var", + "name": "dataProcessingOptions", + "printedName": "dataProcessingOptions", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO21dataProcessingOptionsyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO21dataProcessingOptionsyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 15 + }, + { + "kind": "Var", + "name": "bitmask", + "printedName": "bitmask", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO7bitmaskyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO7bitmaskyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 16 + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO16installTimestampyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO16installTimestampyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 17 + }, + { + "kind": "Var", + "name": "setAdvertiserTrackingEnabledTimestamp", + "printedName": "setAdvertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.Settings.PersistenceKey.Type) -> FBSDKCoreKit.Settings.PersistenceKey", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO37setAdvertiserTrackingEnabledTimestampyA2EmF", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO37setAdvertiserTrackingEnabledTimestampyA2EmF", + "moduleName": "FBSDKCoreKit", + "fixedbinaryorder": 18 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "PersistenceKey", + "printedName": "FBSDKCoreKit.Settings.PersistenceKey", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueAESgSS_tcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueAESgSS_tcfc", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvp", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO8rawValueSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit8SettingsC14PersistenceKeyO", + "mangledName": "$s12FBSDKCoreKit8SettingsC14PersistenceKeyO", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "enumRawTypeName": "String", + "isEnumExhaustive": true, + "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" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "appEventsConfigurationProvider", + "printedName": "appEventsConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProviderSo08FBSDKAppgH9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "infoDictionaryProvider", + "printedName": "infoDictionaryProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV22infoDictionaryProviderSo09FBSDKInfoG9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appEventsConfigurationProvider:dataStore:eventLogger:infoDictionaryProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_AppEventsConfigurationProviding", + "printedName": "FBSDKCoreKit._AppEventsConfigurationProviding", + "usr": "c:objc(pl)FBSDKAppEventsConfigurationProviding" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProvider9dataStore11eventLogger014infoDictionaryI0AESo08FBSDKAppgH9Providing_p_So19FBSDKDataPersisting_pSo17FBSDKEventLogging_pSo09FBSDKInfooQ0_ptcfc", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV30appEventsConfigurationProvider9dataStore11eventLogger014infoDictionaryI0AESo08FBSDKAppgH9Providing_p_So19FBSDKDataPersisting_pSo17FBSDKEventLogging_pSo09FBSDKInfooQ0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit8SettingsC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Function", + "name": "validateConfiguration", + "printedName": "validateConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(im)validateConfiguration", + "mangledName": "$s12FBSDKCoreKit8SettingsC21validateConfigurationyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "unconfiguredDebugMessage", + "printedName": "unconfiguredDebugMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(cpy)unconfiguredDebugMessage", + "mangledName": "$s12FBSDKCoreKit8SettingsC24unconfiguredDebugMessageSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isFromExtension": true, + "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:@CM@FBSDKCoreKit@objc(cs)FBSDKSettings(cm)unconfiguredDebugMessage", + "mangledName": "$s12FBSDKCoreKit8SettingsC24unconfiguredDebugMessageSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit8SettingsC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKSettings", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SettingsProtocol", + "printedName": "SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP" + }, + { + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.Settings.ObjectDependencies", + "usr": "s:12FBSDKCoreKit8SettingsC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SettingsProtocol", + "printedName": "SettingsProtocol", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)appID", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)appID", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAppID:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP5appIDSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "clientToken", + "printedName": "clientToken", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)clientToken", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)clientToken", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setClientToken:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11clientTokenSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "userAgentSuffix", + "printedName": "userAgentSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)userAgentSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setUserAgentSuffix:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15userAgentSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "sdkVersion", + "printedName": "sdkVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)sdkVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP10sdkVersionSSvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)sdkVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP10sdkVersionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "displayName", + "printedName": "displayName", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)displayName", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)displayName", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDisplayName:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP11displayNameSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "facebookDomainPart", + "printedName": "facebookDomainPart", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)facebookDomainPart", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setFacebookDomainPart:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18facebookDomainPartSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "loggingBehaviors", + "printedName": "loggingBehaviors", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)loggingBehaviors", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "LoggingBehavior", + "printedName": "FBSDKCoreKit.LoggingBehavior", + "usr": "c:FBSDKLoggingBehavior.h@T@FBSDKLoggingBehavior" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setLoggingBehaviors:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16loggingBehaviorsShySo20FBSDKLoggingBehavioraGvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeSuffix", + "printedName": "appURLSchemeSuffix", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)appURLSchemeSuffix", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAppURLSchemeSuffix:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP18appURLSchemeSuffixSSSgvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isDataProcessingRestricted", + "printedName": "isDataProcessingRestricted", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isDataProcessingRestrictedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isDataProcessingRestricted", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isDataProcessingRestrictedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isAutoLogAppEventsEnabled", + "printedName": "isAutoLogAppEventsEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isAutoLogAppEventsEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAutoLogAppEventsEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isAutoLogAppEventsEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codelessDebugLogEnabled", + "printedName": "codelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)codelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23codelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isCodelessDebugLogEnabled", + "printedName": "isCodelessDebugLogEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isCodelessDebugLogEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsCodelessDebugLogEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25isCodelessDebugLogEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "advertiserIDCollectionEnabled", + "printedName": "advertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP29advertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserIDCollectionEnabled", + "printedName": "isAdvertiserIDCollectionEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAdvertiserIDCollectionEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsAdvertiserIDCollectionEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP31isAdvertiserIDCollectionEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isSetATETimeExceedsInstallTime", + "printedName": "isSetATETimeExceedsInstallTime", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP30isSetATETimeExceedsInstallTimeSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isSetATETimeExceedsInstallTime", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP30isSetATETimeExceedsInstallTimeSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isATETimeSufficientlyDelayed", + "printedName": "isATETimeSufficientlyDelayed", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP28isATETimeSufficientlyDelayedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isATETimeSufficientlyDelayed", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP28isATETimeSufficientlyDelayedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isSKAdNetworkReportEnabled", + "printedName": "isSKAdNetworkReportEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isSKAdNetworkReportEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isSKAdNetworkReportEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP26isSKAdNetworkReportEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertisingTrackingStatus", + "printedName": "advertisingTrackingStatus", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertisingTrackingStatusSo016FBSDKAdvertisingfG0Vvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AdvertisingTrackingStatus", + "printedName": "FBSDKCoreKit.AdvertisingTrackingStatus", + "usr": "c:@E@FBSDKAdvertisingTrackingStatus" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertisingTrackingStatus", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertisingTrackingStatusSo016FBSDKAdvertisingfG0Vvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "installTimestamp", + "printedName": "installTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)installTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16installTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)installTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP16installTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabledTimestamp", + "printedName": "advertiserTrackingEnabledTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserTrackingEnabledTimestamp", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP34advertiserTrackingEnabledTimestamp10Foundation4DateVSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isEventDataUsageLimited", + "printedName": "isEventDataUsageLimited", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isEventDataUsageLimited", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsEventDataUsageLimited:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23isEventDataUsageLimitedSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseTokenOptimizations", + "printedName": "shouldUseTokenOptimizations", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)shouldUseTokenOptimizations", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setShouldUseTokenOptimizations:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27shouldUseTokenOptimizationsSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIVersion", + "printedName": "graphAPIVersion", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIVersion", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setGraphAPIVersion:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP15graphAPIVersionSSvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isGraphErrorRecoveryEnabled", + "printedName": "isGraphErrorRecoveryEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isGraphErrorRecoveryEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsGraphErrorRecoveryEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isGraphErrorRecoveryEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParamValue", + "printedName": "graphAPIDebugParamValue", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23graphAPIDebugParamValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIDebugParamValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP23graphAPIDebugParamValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "graphAPIDebugParameterValue", + "printedName": "graphAPIDebugParameterValue", + "children": [ + { + "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@FBSDKCoreKit@objc(pl)FBSDKSettings(py)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27graphAPIDebugParameterValueSSSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)graphAPIDebugParameterValue", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27graphAPIDebugParameterValueSSSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "advertiserTrackingEnabled", + "printedName": "advertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "deprecated": true, + "protocolReq": true, + "declAttributes": [ + "Available", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)advertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP25advertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "isAdvertiserTrackingEnabled", + "printedName": "isAdvertiserTrackingEnabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)isAdvertiserTrackingEnabled", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setIsAdvertiserTrackingEnabled:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP27isAdvertiserTrackingEnabledSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldUseCachedValuesForExpensiveMetadata", + "printedName": "shouldUseCachedValuesForExpensiveMetadata", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)shouldUseCachedValuesForExpensiveMetadata", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setShouldUseCachedValuesForExpensiveMetadata:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP41shouldUseCachedValuesForExpensiveMetadataSbvs", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "persistableDataProcessingOptions", + "printedName": "persistableDataProcessingOptions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(py)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP32persistableDataProcessingOptionsSDySSypGSgvp", + "moduleName": "FBSDKCoreKit", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)persistableDataProcessingOptions", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP32persistableDataProcessingOptionsSDySSypGSgvg", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDataProcessingOptions:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP24setDataProcessingOptionsyySaySSGSgF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDataProcessingOptions", + "printedName": "setDataProcessingOptions(_:country:state:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + }, + { + "kind": "TypeNominal", + "name": "Int32", + "printedName": "Swift.Int32", + "usr": "s:s5Int32V" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings(im)setDataProcessingOptions:country:state:", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP24setDataProcessingOptions_7country5stateySaySSGSg_s5Int32VAJtF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit.SettingsProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings", + "mangledName": "$s12FBSDKCoreKit16SettingsProtocolP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSettings", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DialogConfigurationName", + "printedName": "DialogConfigurationName", + "children": [ + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO7messageSSvpZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO7messageSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit23DialogConfigurationNameO7messageSSvgZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO7messageSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO5shareSSvpZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO5shareSSvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "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:12FBSDKCoreKit23DialogConfigurationNameO5shareSSvgZ", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO5shareSSvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:12FBSDKCoreKit23DialogConfigurationNameO", + "mangledName": "$s12FBSDKCoreKit23DialogConfigurationNameO", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareDialogConfiguration", + "printedName": "ShareDialogConfiguration", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV22configuredDependenciesAC05ValueG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV19defaultDependenciesAC05ValueG0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialogConfiguration", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationVACycfc", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationVACycfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "defaultShareMode", + "printedName": "defaultShareMode", + "children": [ + { + "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:12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "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:12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV07defaultC4ModeSSSgvg", + "moduleName": "FBSDKCoreKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "shouldUseNativeDialog", + "printedName": "shouldUseNativeDialog(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV015shouldUseNativeD003forD4NameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV015shouldUseNativeD003forD4NameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV29shouldUseSafariViewController03forD4NameSbSS_tF", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV29shouldUseSafariViewController03forD4NameSbSS_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderSo011FBSDKServerE9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "_ServerConfigurationProviding", + "printedName": "FBSDKCoreKit._ServerConfigurationProviding", + "usr": "c:objc(pl)FBSDKServerConfigurationProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderAESo011FBSDKServerE9Providing_p_tcfc", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV06serverE8ProviderAESo011FBSDKServerE9Providing_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "synchronized", + "printedName": "synchronized(_:closure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() throws -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "typeAttributes": [ + "noescape" + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit12synchronized_7closureyyXl_yyKXEtKF", + "mangledName": "$s12FBSDKCoreKit12synchronized_7closureyyXl_yyKXEtKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Rethrows", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TokenCache", + "printedName": "TokenCache", + "children": [ + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC22configuredDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC19defaultDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessToken", + "printedName": "accessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "accessToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "accessToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAccessToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC06accessC0So011FBSDKAccessC0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvp", + "moduleName": "FBSDKCoreKit", + "objc_name": "authenticationToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvg", + "moduleName": "FBSDKCoreKit", + "objc_name": "authenticationToken", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvs", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvs", + "moduleName": "FBSDKCoreKit", + "objc_name": "setAuthenticationToken:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvM", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC014authenticationC0So019FBSDKAuthenticationC0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "TokenCache", + "printedName": "FBSDKCoreKit.TokenCache", + "usr": "s:12FBSDKCoreKit10TokenCacheC" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10TokenCacheCACycfc", + "mangledName": "$s12FBSDKCoreKit10TokenCacheCACycfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "keychainStore", + "printedName": "keychainStore", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataStore", + "printedName": "dataStore", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV9dataStoreSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:keychainStore:dataStore:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settings13keychainStore04dataI0AeA16SettingsProtocol_p_So013FBSDKKeychainI0_pSo19FBSDKDataPersisting_ptcfc", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV8settings13keychainStore04dataI0AeA16SettingsProtocol_p_So013FBSDKKeychainI0_pSo19FBSDKDataPersisting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "s:12FBSDKCoreKit10TokenCacheC", + "mangledName": "$s12FBSDKCoreKit10TokenCacheC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKCoreKit.TokenCache.ObjectDependencies", + "usr": "s:12FBSDKCoreKit10TokenCacheC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit17DependentAsObjectP", + "mangledName": "$s12FBSDKCoreKit17DependentAsObjectP" + } + ] + }, + { + "kind": "Import", + "name": "FBAEMKit", + "printedName": "FBAEMKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_AEMReporterProtocol", + "printedName": "_AEMReporterProtocol", + "children": [ + { + "kind": "Function", + "name": "enable", + "printedName": "enable()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)enable", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP6enableyyFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "recordAndUpdate", + "printedName": "recordAndUpdate(event:currency:value:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)recordAndUpdateEvent:currency:value:parameters:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP15recordAndUpdate5event8currency5value10parametersySS_SSSgSo8NSNumberCSgSDySSypGSgtFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "objc_name": "recordAndUpdateEvent:currency:value:parameters:", + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setConversionFilteringEnabled", + "printedName": "setConversionFilteringEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setConversionFilteringEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP29setConversionFilteringEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCatalogMatchingEnabled", + "printedName": "setCatalogMatchingEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setCatalogMatchingEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP25setCatalogMatchingEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setAdvertiserRuleMatchInServerEnabled", + "printedName": "setAdvertiserRuleMatchInServerEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)setAdvertiserRuleMatchInServerEnabled:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP37setAdvertiserRuleMatchInServerEnabledyySbFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handle", + "printedName": "handle(_:)", + "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": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter(cm)handle:", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP6handleyy10Foundation3URLVSgFZ", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKCoreKit._AEMReporterProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKAEMReporter", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_AccessTokenExpirer", + "printedName": "_AccessTokenExpirer", + "children": [ + { + "kind": "Var", + "name": "notificationCenter", + "printedName": "notificationCenter", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(py)notificationCenter", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)notificationCenter", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterSo25_FBSDKNotificationPosting_So0H10Deliveringpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(notificationCenter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpirer", + "printedName": "FBSDKCoreKit._AccessTokenExpirer", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)initWithNotificationCenter:", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC18notificationCenterACSo25_FBSDKNotificationPosting_So0H10Deliveringp_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "checkAccessTokenExpirationDate", + "printedName": "checkAccessTokenExpirationDate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)checkAccessTokenExpirationDate", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC05checkcD14ExpirationDateyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "timerDidFire", + "printedName": "timerDidFire()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)timerDidFire", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC12timerDidFireyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenExpirer", + "printedName": "FBSDKCoreKit._AccessTokenExpirer", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer(im)init", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_FBSDKAccessTokenExpirer", + "mangledName": "$s12FBSDKCoreKit19_AccessTokenExpirerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "_FBSDKAccessTokenExpirer", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_AccessTokenExpiring", + "printedName": "_AccessTokenExpiring", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring", + "mangledName": "$s12FBSDKCoreKit20_AccessTokenExpiringP" + }, + { + "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": "_AccessTokenExpiring", + "printedName": "_AccessTokenExpiring", + "declKind": "Protocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)_FBSDKAccessTokenExpiring", + "mangledName": "$s12FBSDKCoreKit20_AccessTokenExpiringP", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "_FBSDKAccessTokenExpiring", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "AuthenticationServices", + "printedName": "AuthenticationServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "SafariServices", + "printedName": "SafariServices", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPI", + "printedName": "_BridgeAPI", + "children": [ + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6loggerSo11FBSDKLoggerCvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC9urlOpenerSo22FBSDKInternalURLOpener_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIResponseFactory", + "printedName": "bridgeAPIResponseFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC24bridgeAPIResponseFactoryAA0cF8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appURLSchemeProvider", + "printedName": "appURLSchemeProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20appURLSchemeProviderSo08FBSDKAppF9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pendingRequest", + "printedName": "pendingRequest", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC14pendingRequestSo21FBSDKBridgeAPIRequest_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pendingRequestCompletionBlock", + "printedName": "pendingRequestCompletionBlock", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.BridgeAPIResponse) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29pendingRequestCompletionBlockySo22FBSDKBridgeAPIResponseCcSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pendingURLOpener", + "printedName": "pendingURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC16pendingURLOpenerSo15FBSDKURLOpening_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSession", + "printedName": "authenticationSession", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionProtocol", + "printedName": "FBSDKCoreKit.AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21authenticationSessionAA014AuthenticationF8Protocol_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSessionCompletionHandler", + "printedName": "authenticationSessionCompletionHandler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((Foundation.URL?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Foundation.URL?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC38authenticationSessionCompletionHandlery10Foundation3URLVSg_s5Error_pSgtcSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationSessionState", + "printedName": "authenticationSessionState", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationSessionState", + "printedName": "FBSDKCoreKit.AuthenticationSessionState", + "usr": "s:12FBSDKCoreKit26AuthenticationSessionStateO" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0Ovs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0OvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26authenticationSessionStateAA014AuthenticationfG0OvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isExpectingBackground", + "printedName": "isExpectingBackground", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC21isExpectingBackgroundSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "safariViewController", + "printedName": "safariViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "SafariServices.SFSafariViewController?", + "children": [ + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC20safariViewControllerSo08SFSafarifG0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isDismissingSafariViewController", + "printedName": "isDismissingSafariViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32isDismissingSafariViewControllerSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isActive", + "printedName": "isActive", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvp", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvg", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvs", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC8isActiveSbvM", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC8isActiveSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6sharedACvpZ", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6sharedACvgZ", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(logger:urlOpener:bridgeAPIResponseFactory:appURLSchemeProvider:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + }, + { + "kind": "TypeNominal", + "name": "_Logger", + "printedName": "FBSDKCoreKit._Logger", + "usr": "c:objc(cs)FBSDKLogger" + }, + { + "kind": "TypeNominal", + "name": "_InternalURLOpener", + "printedName": "FBSDKCoreKit._InternalURLOpener", + "usr": "c:objc(pl)FBSDKInternalURLOpener" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponseCreating", + "printedName": "FBSDKCoreKit.BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP" + }, + { + "kind": "TypeNominal", + "name": "AppURLSchemeProviding", + "printedName": "FBSDKCoreKit.AppURLSchemeProviding", + "usr": "c:objc(pl)FBSDKAppURLSchemeProviding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC6logger9urlOpener24bridgeAPIResponseFactory20appURLSchemeProvider05errorJ0ACSo11FBSDKLoggerC_So22FBSDKInternalURLOpener_pAA0cI8Creating_pSo08FBSDKAppL9Providing_pSo010FBSDKErrorR0_ptcfc", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC6logger9urlOpener24bridgeAPIResponseFactory20appURLSchemeProvider05errorJ0ACSo11FBSDKLoggerC_So22FBSDKInternalURLOpener_pAA0cI8Creating_pSo08FBSDKAppL9Providing_pSo010FBSDKErrorR0_ptcfc", + "moduleName": "FBSDKCoreKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "bridgeAPIRequestCompletionBlock", + "printedName": "bridgeAPIRequestCompletionBlock(request:completion:)", + "children": [ + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC31bridgeAPIRequestCompletionBlock7request10completionySb_s5Error_pSgtcSo011FBSDKBridgeF0_p_ySo0L11APIResponseCctF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC31bridgeAPIRequestCompletionBlock7request10completionySb_s5Error_pSgtcSo011FBSDKBridgeF0_p_ySo0L11APIResponseCctF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURLWithAuthenticationSession", + "printedName": "openURLWithAuthenticationSession(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC32openURLWithAuthenticationSession3urly10Foundation3URLV_tF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC32openURLWithAuthenticationSession3urly10Foundation3URLV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSessionCompletionHandler", + "printedName": "setSessionCompletionHandler(calling:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC27setSessionCompletionHandler7callingyySb_s5Error_pSgtc_tF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC27setSessionCompletionHandler7callingyySb_s5Error_pSgtc_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "clearSession", + "printedName": "clearSession()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC12clearSessionyyF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC12clearSessionyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewControllerDidDisappear", + "printedName": "viewControllerDidDisappear(_:animated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ContainerViewController", + "printedName": "FBSDKCoreKit._ContainerViewController", + "usr": "c:objc(cs)FBSDKContainerViewController" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI(im)viewControllerDidDisappear:animated:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26viewControllerDidDisappear_8animatedySo018FBSDKContainerViewF0C_SbtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "viewControllerDidDisappear:animated:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleBridgeAPIResponse", + "printedName": "handleBridgeAPIResponse(url:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit10_BridgeAPIC06handleC11APIResponse3url17sourceApplicationSb10Foundation3URLV_SSSgtF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC06handleC11APIResponse3url17sourceApplicationSb10Foundation3URLV_SSSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancelBridgeRequest", + "printedName": "cancelBridgeRequest()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit10_BridgeAPIC06cancelC7RequestyyF", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC06cancelC7RequestyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPI", + "printedName": "FBSDKCoreKit._BridgeAPI", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI(im)init", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPICACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "applicationWillResignActive", + "printedName": "applicationWillResignActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationWillResignActive:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC27applicationWillResignActiveyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationWillResignActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationDidBecomeActive:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC26applicationDidBecomeActiveyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationDidBecomeActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29applicationDidEnterBackgroundyySo13UIApplicationCSgF", + "moduleName": "FBSDKCoreKit", + "objc_name": "applicationDidEnterBackground:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC11application_4open17sourceApplication10annotationSbSo13UIApplicationC_10Foundation3URLVSSSgypSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:didFinishLaunchingWithOptions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[UIKit.UIApplication.LaunchOptionsKey : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "LaunchOptionsKey", + "printedName": "UIKit.UIApplication.LaunchOptionsKey", + "usr": "c:@T@UIApplicationLaunchOptionsKey" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)application:didFinishLaunchingWithOptions:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC11application_29didFinishLaunchingWithOptionsSbSo13UIApplicationC_SDySo0k6LaunchJ3KeyaypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "application:didFinishLaunchingWithOptions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "open", + "printedName": "open(_:sender:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "usr": "s:Sq" + }, + { + "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openURL:sender:handler:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC4open_6sender7handlery10Foundation3URLV_So15FBSDKURLOpening_pSgySb_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openURL:sender:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "open", + "printedName": "open(_:useSafariViewController:from:completionBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "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": "(FBSDKCoreKit.BridgeAPIResponse) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openBridgeAPIRequest:useSafariViewController:fromViewController:completionBlock:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC4open_23useSafariViewController4from15completionBlockySo21FBSDKBridgeAPIRequest_p_SbSo06UIViewI0CSgySo0M11APIResponseCctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openBridgeAPIRequest:useSafariViewController:fromViewController:completionBlock:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "openURLWithSafariViewController", + "printedName": "openURLWithSafariViewController(url:sender:from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.URLOpening?", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpening", + "printedName": "FBSDKCoreKit.URLOpening", + "usr": "c:objc(pl)FBSDKURLOpening" + } + ], + "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": "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": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)openURLWithSafariViewController:sender:fromViewController:handler:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC31openURLWithSafariViewController3url6sender4from7handlery10Foundation3URLV_So15FBSDKURLOpening_pSgSo06UIViewI0CSgySb_s5Error_pSgtctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "openURLWithSafariViewController:sender:fromViewController:handler:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "safariViewControllerDidFinish", + "printedName": "safariViewControllerDidFinish(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SFSafariViewController", + "printedName": "SafariServices.SFSafariViewController", + "usr": "c:objc(cs)SFSafariViewController" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)safariViewControllerDidFinish:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC29safariViewControllerDidFinishyySo08SFSafarifG0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "safariViewControllerDidFinish:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "presentationAnchor", + "printedName": "presentationAnchor(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIWindow", + "printedName": "UIKit.UIWindow", + "usr": "c:objc(cs)UIWindow" + }, + { + "kind": "TypeNominal", + "name": "ASWebAuthenticationSession", + "printedName": "AuthenticationServices.ASWebAuthenticationSession", + "usr": "c:objc(cs)ASWebAuthenticationSession" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)_BridgeAPI(im)presentationAnchorForWebAuthenticationSession:", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC18presentationAnchor3forSo8UIWindowCSo26ASWebAuthenticationSessionC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "presentationAnchorForWebAuthenticationSession:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPI", + "mangledName": "$s12FBSDKCoreKit10_BridgeAPIC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "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": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "_BridgeAPIProtocolNativeV1", + "children": [ + { + "kind": "Var", + "name": "appScheme", + "printedName": "appScheme", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)appScheme", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)appScheme", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "dataLengthThreshold", + "printedName": "dataLengthThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)dataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19dataLengthThresholdSuvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)dataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19dataLengthThresholdSuvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shouldIncludeAppIcon", + "printedName": "shouldIncludeAppIcon", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)shouldIncludeAppIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C20shouldIncludeAppIconSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)shouldIncludeAppIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C20shouldIncludeAppIconSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pasteboard", + "printedName": "pasteboard", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)pasteboard", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10pasteboardSo15FBSDKPasteboard_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)pasteboard", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10pasteboardSo15FBSDKPasteboard_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "defaultMaxBase64DataLengthThreshold", + "printedName": "defaultMaxBase64DataLengthThreshold", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(cpy)defaultMaxBase64DataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C35defaultMaxBase64DataLengthThresholdSuvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(cm)defaultMaxBase64DataLengthThreshold", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C35defaultMaxBase64DataLengthThresholdSuvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "appIcon", + "printedName": "appIcon", + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(py)appIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C7appIconSo7UIImageCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)appIcon", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C7appIconSo7UIImageCSgvg", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appScheme:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)initWithAppScheme:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appSchemeACSSSg_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppScheme:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appScheme:pasteboard:dataLengthThreshold:shouldIncludeAppIcon:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + }, + { + "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": "FBSDKCoreKit._Pasteboard?", + "children": [ + { + "kind": "TypeNominal", + "name": "_Pasteboard", + "printedName": "FBSDKCoreKit._Pasteboard", + "usr": "c:objc(pl)FBSDKPasteboard" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C9appScheme10pasteboard19dataLengthThreshold20shouldIncludeAppIconACSSSg_So15FBSDKPasteboard_pSgSuSbtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "requestURL", + "printedName": "requestURL(actionID:scheme:methodName:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)requestURLWithActionID:scheme:methodName:parameters:error:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C10requestURL8actionID6scheme10methodName10parameters10Foundation0H0VSS_S2SSDySSypGtKF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requestURLWithActionID:scheme:methodName:parameters:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "responseParameters", + "printedName": "responseParameters(actionID:queryParameters:cancelled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.UnsafeMutablePointer?", + "children": [ + { + "kind": "TypeNominal", + "name": "UnsafeMutablePointer", + "printedName": "Swift.UnsafeMutablePointer", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjCBool", + "printedName": "ObjectiveC.ObjCBool", + "usr": "s:10ObjectiveC8ObjCBoolV" + } + ], + "usr": "s:Sp" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)responseParametersForActionID:queryParameters:cancelled:error:", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C18responseParameters8actionID05queryH09cancelledSDySSypGSS_AHSpy10ObjectiveC8ObjCBoolVGSgtKF", + "moduleName": "FBSDKCoreKit", + "objc_name": "responseParametersForActionID:queryParameters:cancelled:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIProtocolNativeV1", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1(im)init", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1CACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bundle", + "printedName": "bundle", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV6bundleSo28FBSDKInfoDictionaryProviding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationDeliverer", + "printedName": "notificationDeliverer", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:bundle:notificationDeliverer:internalUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "InfoDictionaryProviding", + "printedName": "FBSDKCoreKit_Basics.InfoDictionaryProviding", + "usr": "c:objc(pl)FBSDKInfoDictionaryProviding" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactory6bundle21notificationDeliverer15internalUtilityAESo18FBSDKErrorCreating_p_So28FBSDKInfoDictionaryProviding_pSo27FBSDKNotificationDelivering_pSo013FBSDKInternalO0_ptcfc", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV12errorFactory6bundle21notificationDeliverer15internalUtilityAESo18FBSDKErrorCreating_p_So28FBSDKInfoDictionaryProviding_pSo27FBSDKNotificationDelivering_pSo013FBSDKInternalO0_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIProtocolNativeV1", + "mangledName": "$s12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKBridgeAPIProtocolNativeV1", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._BridgeAPIProtocolNativeV1.TypeDependencies", + "usr": "s:12FBSDKCoreKit26_BridgeAPIProtocolNativeV1C16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIRequestFactory", + "printedName": "_BridgeAPIRequestFactory", + "children": [ + { + "kind": "Function", + "name": "bridgeAPIRequest", + "printedName": "bridgeAPIRequest(with:scheme:methodName:parameters:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "FBSDKBridgeAPIProtocolType", + "printedName": "FBSDKCoreKit.FBSDKBridgeAPIProtocolType", + "usr": "c:@E@FBSDKBridgeAPIProtocolType" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory(im)bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryC06bridgeD04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeD0_pSgSo0N15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIRequestFactory", + "printedName": "FBSDKCoreKit._BridgeAPIRequestFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory(im)init", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKBridgeAPIRequestFactory", + "mangledName": "$s12FBSDKCoreKit24_BridgeAPIRequestFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKBridgeAPIRequestFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "_BridgeAPIResponseFactory", + "printedName": "_BridgeAPIResponseFactory", + "children": [ + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request5errorSo011FBSDKBridgeD0CSo0J10APIRequest_p_s5Error_ptF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponse", + "printedName": "createResponse(request:responseURL:sourceApplication:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "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:12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC14createResponse7request11responseURL17sourceApplicationSo011FBSDKBridgeD0CSo0M10APIRequest_p_10Foundation0J0VSSSgtKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "createResponseCancelled", + "printedName": "createResponseCancelled(request:)", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit25_BridgeAPIResponseFactoryC23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC23createResponseCancelled7requestSo011FBSDKBridgeD0CSo0J10APIRequest_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_BridgeAPIResponseFactory", + "printedName": "FBSDKCoreKit._BridgeAPIResponseFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory(im)init", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)_BridgeAPIResponseFactory", + "mangledName": "$s12FBSDKCoreKit25_BridgeAPIResponseFactoryC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "BridgeAPIResponseCreating", + "printedName": "BridgeAPIResponseCreating", + "usr": "s:12FBSDKCoreKit25BridgeAPIResponseCreatingP", + "mangledName": "$s12FBSDKCoreKit25BridgeAPIResponseCreatingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_DialogConfigurationMapBuilder", + "printedName": "_DialogConfigurationMapBuilder", + "children": [ + { + "kind": "Function", + "name": "buildDialogConfigurationMap", + "printedName": "buildDialogConfigurationMap(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : FBSDKCoreKit._DialogConfiguration]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "_DialogConfiguration", + "printedName": "FBSDKCoreKit._DialogConfiguration", + "usr": "c:objc(cs)FBSDKDialogConfiguration" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[[Swift.String : Any]]", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder(im)buildDialogConfigurationMapWithRawConfigurations:", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderC05buildcdE04fromSDySSSo011FBSDKDialogD0CGSaySDySSypGG_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "buildDialogConfigurationMapWithRawConfigurations:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_DialogConfigurationMapBuilder", + "printedName": "FBSDKCoreKit._DialogConfigurationMapBuilder", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder(im)init", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKDialogConfigurationMapBuilder", + "mangledName": "$s12FBSDKCoreKit30_DialogConfigurationMapBuilderC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKDialogConfigurationMapBuilder", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_ErrorFactory", + "printedName": "_ErrorFactory", + "children": [ + { + "kind": "Function", + "name": "error", + "printedName": "error(code:userInfo:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)errorWithCode:userInfo:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC5error4code8userInfo7message010underlyingC0s0C0_pSi_SDySSypGSgSSSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "errorWithCode:userInfo:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(domain:code:userInfo:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)errorWithDomain:code:userInfo:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC5error6domain4code8userInfo7message010underlyingC0s0C0_pSS_SiSDySSypGSgSSSgsAJ_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "errorWithDomain:code:userInfo:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidArgumentError", + "printedName": "invalidArgumentError(name:value:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)invalidArgumentErrorWithName:value:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC015invalidArgumentC04name5value7message010underlyingC0s0C0_pSS_ypSgSSSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "invalidArgumentErrorWithName:value:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "invalidArgumentError", + "printedName": "invalidArgumentError(domain:name:value:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "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.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)invalidArgumentErrorWithDomain:name:value:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC015invalidArgumentC06domain4name5value7message010underlyingC0s0C0_pSS_SSypSgSSSgsAJ_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "invalidArgumentErrorWithDomain:name:value:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requiredArgumentError", + "printedName": "requiredArgumentError(name:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)requiredArgumentErrorWithName:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC016requiredArgumentC04name7message010underlyingC0s0C0_pSS_SSSgsAH_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requiredArgumentErrorWithName:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "requiredArgumentError", + "printedName": "requiredArgumentError(domain:name:message:underlyingError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)requiredArgumentErrorWithDomain:name:message:underlyingError:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC016requiredArgumentC06domain4name7message010underlyingC0s0C0_pSS_S2SSgsAI_pSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "requiredArgumentErrorWithDomain:name:message:underlyingError:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "unknownError", + "printedName": "unknownError(message:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)unknownErrorWithMessage:userInfo:", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC07unknownC07message8userInfos0C0_pSSSg_SDySSypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "unknownErrorWithMessage:userInfo:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reportError", + "printedName": "reportError(code:domain:message:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC06reportC04code6domain7messageySi_S2SSgtF", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC06reportC04code6domain7messageySi_S2SSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ErrorFactory", + "printedName": "FBSDKCoreKit._ErrorFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory(im)init", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "reporter", + "printedName": "reporter", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvp", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvg", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvs", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvM", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterSo19FBSDKErrorReporting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(reporter:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorReporting", + "printedName": "FBSDKCoreKit.ErrorReporting", + "usr": "c:objc(pl)FBSDKErrorReporting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterAESo19FBSDKErrorReporting_p_tcfc", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV8reporterAESo19FBSDKErrorReporting_p_tcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ErrorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKErrorFactory", + "mangledName": "$s12FBSDKCoreKit13_ErrorFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKErrorFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ErrorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit13_ErrorFactoryC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_FBCloseIcon", + "printedName": "_FBCloseIcon", + "children": [ + { + "kind": "Function", + "name": "image", + "printedName": "image(size:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)imageWithSize:", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC5image4sizeSo7UIImageCSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(size:primaryColor:secondaryColor:scale:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "UIColor", + "printedName": "UIKit.UIColor", + "usr": "c:objc(cs)UIColor" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)imageWithSize:primaryColor:secondaryColor:scale:", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC5image4size12primaryColor09secondaryH05scaleSo7UIImageCSgSo6CGSizeV_So7UIColorCAO12CoreGraphics7CGFloatVtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FBCloseIcon", + "printedName": "FBSDKCoreKit._FBCloseIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon(im)init", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKCloseIcon", + "mangledName": "$s12FBSDKCoreKit12_FBCloseIconC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKCloseIcon", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_FBLogo", + "printedName": "_FBLogo", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit7_FBLogoC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FBLogo", + "printedName": "FBSDKCoreKit._FBLogo", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo(im)init", + "mangledName": "$s12FBSDKCoreKit7_FBLogoCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKLogo", + "mangledName": "$s12FBSDKCoreKit7_FBLogoC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKLogo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_FeatureManager", + "printedName": "_FeatureManager", + "children": [ + { + "kind": "Var", + "name": "featureManagerPrefix", + "printedName": "featureManagerPrefix", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(py)featureManagerPrefix", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07featureD6PrefixSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)featureManagerPrefix", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07featureD6PrefixSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(cpy)shared", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC6sharedACvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(cm)shared", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC6sharedACvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEnabled", + "printedName": "isEnabled(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)isEnabled:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC9isEnabledySbSo12FBSDKFeatureVF", + "moduleName": "FBSDKCoreKit", + "objc_name": "isEnabled:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "check", + "printedName": "check(_:completionBlock:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + }, + { + "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:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)checkFeature:completionBlock:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC5check_15completionBlockySo12FBSDKFeatureV_ySbctF", + "moduleName": "FBSDKCoreKit", + "objc_name": "checkFeature:completionBlock:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableFeature", + "printedName": "disableFeature(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)disableFeature:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC07disableC0yySo12FBSDKFeatureVF", + "moduleName": "FBSDKCoreKit", + "objc_name": "disableFeature:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "storageKey", + "printedName": "storageKey(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)storageKeyFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC10storageKey3forSSSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "checkGateKeeper", + "printedName": "checkGateKeeper(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)checkGateKeeperFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC15checkGateKeeper3forSbSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "defaultStatus", + "printedName": "defaultStatus(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)defaultStatusFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC13defaultStatus3forSbSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getParentFeature", + "printedName": "getParentFeature(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.SDKFeature?", + "children": [ + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC09getParentC03forSo12FBSDKFeatureVSgAG_tF", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC09getParentC03forSo12FBSDKFeatureVSgAG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "featureName", + "printedName": "featureName(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "SDKFeature", + "printedName": "FBSDKCoreKit.SDKFeature", + "usr": "c:@E@FBSDKFeature" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)featureNameFor:", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC11featureName3forSSSo12FBSDKFeatureV_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_FeatureManager", + "printedName": "FBSDKCoreKit._FeatureManager", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager(im)init", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD0So09FBSDKGateH8Managing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "store", + "printedName": "store", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(gateKeeperManager:settings:store:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD08settings5storeAESo09FBSDKGateH8Managing_pXp_AA16SettingsProtocol_pSo19FBSDKDataPersisting_ptcfc", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV010gateKeeperD08settings5storeAESo09FBSDKGateH8Managing_pXp_AA16SettingsProtocol_pSo19FBSDKDataPersisting_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._FeatureManager.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKFeatureManager", + "mangledName": "$s12FBSDKCoreKit15_FeatureManagerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKFeatureManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._FeatureManager.TypeDependencies", + "usr": "s:12FBSDKCoreKit15_FeatureManagerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_HumanSilhouetteIcon", + "printedName": "_HumanSilhouetteIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon(im)pathWith:", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_HumanSilhouetteIcon", + "printedName": "FBSDKCoreKit._HumanSilhouetteIcon", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon(im)init", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKHumanSilhouetteIcon", + "mangledName": "$s12FBSDKCoreKit20_HumanSilhouetteIconC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKHumanSilhouetteIcon", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_MeasurementEvent", + "printedName": "_MeasurementEvent", + "children": [ + { + "kind": "Function", + "name": "postNotification", + "printedName": "postNotification(eventName:arguments:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent(im)postNotificationForEventName:args:", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventC16postNotification9eventName9argumentsySS_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "postNotificationForEventName:args:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_MeasurementEvent", + "printedName": "FBSDKCoreKit._MeasurementEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent(im)init", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKMeasurementEvent", + "mangledName": "$s12FBSDKCoreKit17_MeasurementEventC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKMeasurementEvent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_PaymentObserver", + "printedName": "_PaymentObserver", + "children": [ + { + "kind": "Var", + "name": "isObservingTransactions", + "printedName": "isObservingTransactions", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvs", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvM", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC23isObservingTransactionsSbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "paymentQueue", + "printedName": "paymentQueue", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueueSo09SKPaymentF0Cvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestorFactory", + "printedName": "requestorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC16requestorFactorySo36FBSDKPaymentProductRequestorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(paymentQueue:paymentProductRequestorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserver", + "printedName": "FBSDKCoreKit._PaymentObserver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + }, + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorCreating", + "printedName": "FBSDKCoreKit._PaymentProductRequestorCreating", + "usr": "c:objc(pl)FBSDKPaymentProductRequestorCreating" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)initWithPaymentQueue:paymentProductRequestorFactory:", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueue0E23ProductRequestorFactoryACSo09SKPaymentF0C_So012FBSDKPaymentgH8Creating_ptcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithPaymentQueue:paymentProductRequestorFactory:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startObservingTransactions", + "printedName": "startObservingTransactions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)startObservingTransactions", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC26startObservingTransactionsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "startObservingTransactions", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopObservingTransactions", + "printedName": "stopObservingTransactions()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)stopObservingTransactions", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC25stopObservingTransactionsyyF", + "moduleName": "FBSDKCoreKit", + "objc_name": "stopObservingTransactions", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentObserver", + "printedName": "FBSDKCoreKit._PaymentObserver", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)init", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "paymentQueue", + "printedName": "paymentQueue(_:updatedTransactions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentQueue", + "printedName": "StoreKit.SKPaymentQueue", + "usr": "c:objc(cs)SKPaymentQueue" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[StoreKit.SKPaymentTransaction]", + "children": [ + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver(im)paymentQueue:updatedTransactions:", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC12paymentQueue_19updatedTransactionsySo09SKPaymentF0C_SaySo0I11TransactionCGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "paymentQueue:updatedTransactions:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleTransaction", + "printedName": "handleTransaction(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "declKind": "Func", + "usr": "s:12FBSDKCoreKit16_PaymentObserverC17handleTransactionyySo09SKPaymentF0CF", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC17handleTransactionyySo09SKPaymentF0CF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentObserver", + "mangledName": "$s12FBSDKCoreKit16_PaymentObserverC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKPaymentObserver", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_PaymentProductRequestorFactory", + "printedName": "_PaymentProductRequestorFactory", + "children": [ + { + "kind": "Function", + "name": "createRequestor", + "printedName": "createRequestor(transaction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "PaymentProductRequestor", + "printedName": "FBSDKCoreKit.PaymentProductRequestor", + "usr": "c:objc(cs)FBSDKPaymentProductRequestor" + }, + { + "kind": "TypeNominal", + "name": "SKPaymentTransaction", + "printedName": "StoreKit.SKPaymentTransaction", + "usr": "c:objc(cs)SKPaymentTransaction" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory(im)createRequestorWithTransaction:", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC06createE011transactionSo012FBSDKPaymentdE0CSo20SKPaymentTransactionC_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createRequestorWithTransaction:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_PaymentProductRequestorFactory", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory(im)init", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settingsAA16SettingsProtocol_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV11eventLoggerSo17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "gateKeeperManager", + "printedName": "gateKeeperManager", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV17gateKeeperManagerSo09FBSDKGateJ8Managing_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "store", + "printedName": "store", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV5storeSo19FBSDKDataPersisting_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loggerFactory", + "printedName": "loggerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV06loggerF0So21__FBSDKLoggerCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "productsRequestFactory", + "printedName": "productsRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV015productsRequestF0So013FBSDKProductsJ8Creating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appStoreReceiptProvider", + "printedName": "appStoreReceiptProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvp", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvg", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvs", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvM", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV23appStoreReceiptProviderSo08FBSDKAppjK9Providing_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(settings:eventLogger:gateKeeperManager:store:loggerFactory:productsRequestFactory:appStoreReceiptProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._GateKeeperManaging.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_GateKeeperManaging", + "printedName": "FBSDKCoreKit._GateKeeperManaging", + "usr": "c:objc(pl)FBSDKGateKeeperManaging" + } + ] + }, + { + "kind": "TypeNominal", + "name": "DataPersisting", + "printedName": "FBSDKCoreKit_Basics.DataPersisting", + "usr": "c:objc(pl)FBSDKDataPersisting" + }, + { + "kind": "TypeNominal", + "name": "_LoggerCreating", + "printedName": "FBSDKCoreKit._LoggerCreating", + "usr": "c:objc(pl)__FBSDKLoggerCreating" + }, + { + "kind": "TypeNominal", + "name": "_ProductsRequestCreating", + "printedName": "FBSDKCoreKit._ProductsRequestCreating", + "usr": "c:objc(pl)FBSDKProductsRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "_AppStoreReceiptProviding", + "printedName": "FBSDKCoreKit._AppStoreReceiptProviding", + "usr": "c:objc(pl)FBSDKAppStoreReceiptProviding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settings11eventLogger17gateKeeperManager5store06loggerF0015productsRequestF023appStoreReceiptProviderAeA16SettingsProtocol_p_So17FBSDKEventLogging_pSo09FBSDKGateM8Managing_pXpSo19FBSDKDataPersisting_pSo21__FBSDKLoggerCreating_pSo013FBSDKProductsR8Creating_pSo08FBSDKApptU9Providing_ptcfc", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV8settings11eventLogger17gateKeeperManager5store06loggerF0015productsRequestF023appStoreReceiptProviderAeA16SettingsProtocol_p_So17FBSDKEventLogging_pSo09FBSDKGateM8Managing_pXpSo19FBSDKDataPersisting_pSo21__FBSDKLoggerCreating_pSo013FBSDKProductsR8Creating_pSo08FBSDKApptU9Providing_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKPaymentProductRequestorFactory", + "mangledName": "$s12FBSDKCoreKit31_PaymentProductRequestorFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKPaymentProductRequestorFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._PaymentProductRequestorFactory.TypeDependencies", + "usr": "s:12FBSDKCoreKit31_PaymentProductRequestorFactoryC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_RestrictiveEventFilter", + "printedName": "_RestrictiveEventFilter", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(py)eventName", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventNameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)eventName", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventNameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "restrictiveParameters", + "printedName": "restrictiveParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(py)restrictiveParameters", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC21restrictiveParametersSDySSypGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)restrictiveParameters", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC21restrictiveParametersSDySSypGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventName:restrictiveParameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_RestrictiveEventFilter", + "printedName": "FBSDKCoreKit._RestrictiveEventFilter", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)initWithEventName:restrictiveParameters:", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC9eventName21restrictiveParametersACSS_SDySSypGtcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEventName:restrictiveParameters:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_RestrictiveEventFilter", + "printedName": "FBSDKCoreKit._RestrictiveEventFilter", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter(im)init", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKRestrictiveEventFilter", + "mangledName": "$s12FBSDKCoreKit23_RestrictiveEventFilterC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKRestrictiveEventFilter", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_SKAdNetworkEvent", + "printedName": "_SKAdNetworkEvent", + "children": [ + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(py)eventName", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC9eventNameSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "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": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)eventName", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC9eventNameSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "values", + "printedName": "values", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(py)values", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)values", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.Double]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Swift.Double]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)setValues:", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvM", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC6valuesSDySSSdGSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(json:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent?", + "children": [ + { + "kind": "TypeNominal", + "name": "_SKAdNetworkEvent", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)initWithJSON:", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC4jsonACSgSDySSypG_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithJSON:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_SKAdNetworkEvent", + "printedName": "FBSDKCoreKit._SKAdNetworkEvent", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent(im)init", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKSKAdNetworkEvent", + "mangledName": "$s12FBSDKCoreKit17_SKAdNetworkEventC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKSKAdNetworkEvent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKCoreKit" + }, + { + "kind": "TypeDecl", + "name": "_ViewImpressionLogger", + "printedName": "_ViewImpressionLogger", + "children": [ + { + "kind": "Var", + "name": "impressionTrackers", + "printedName": "impressionTrackers", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cpy)impressionTrackers", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)impressionTrackers", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvgZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.Name : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)setImpressionTrackers:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18impressionTrackersSDySo17FBSDKAppEventNameaypGvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventName", + "printedName": "eventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(py)eventName", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameSo013FBSDKAppEventG0avp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)eventName", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameSo013FBSDKAppEventG0avg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "trackedImpressions", + "printedName": "trackedImpressions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(py)trackedImpressions", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)trackedImpressions", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<[Swift.String : Swift.String]>", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)setTrackedImpressions:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC18trackedImpressionsShySDyS2SGGvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)initWithEventName:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC9eventNameACSo013FBSDKAppEventG0a_tcfc", + "moduleName": "FBSDKCoreKit", + "objc_name": "initWithEventName:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "retrieveLogger", + "printedName": "retrieveLogger(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(cm)retrieveLoggerWith:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC08retrieveE04withACSo17FBSDKAppEventNamea_tFZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidEnterBackground", + "printedName": "applicationDidEnterBackground(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)applicationDidEnterBackground:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC29applicationDidEnterBackgroundyy10Foundation12NotificationVF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logImpression", + "printedName": "logImpression(withIdentifier:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)logImpressionWithIdentifier:parameters:", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC03logD014withIdentifier10parametersySS_SDySo26FBSDKAppEventParameterNameaypGSgtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "logImpressionWithIdentifier:parameters:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_ViewImpressionLogger", + "printedName": "FBSDKCoreKit._ViewImpressionLogger", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger(im)init", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV05eventE0So17FBSDKEventLogging_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "notificationDeliverer", + "printedName": "notificationDeliverer", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV21notificationDelivererSo27FBSDKNotificationDelivering_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tokenWallet", + "printedName": "tokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvs", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvM", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV11tokenWalletSo25FBSDKAccessTokenProviding_pXpvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(graphRequestFactory:eventLogger:notificationDeliverer:tokenWallet:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "EventLogging", + "printedName": "FBSDKCoreKit.EventLogging", + "usr": "c:objc(pl)FBSDKEventLogging" + }, + { + "kind": "TypeNominal", + "name": "NotificationDelivering", + "printedName": "FBSDKCoreKit_Basics.NotificationDelivering", + "usr": "c:objc(pl)FBSDKNotificationDelivering" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactory05eventE021notificationDeliverer11tokenWalletAESo010FBSDKGraphiJ0_p_So17FBSDKEventLogging_pSo27FBSDKNotificationDelivering_pSo25FBSDKAccessTokenProviding_pXptcfc", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV19graphRequestFactory05eventE021notificationDeliverer11tokenWalletAESo010FBSDKGraphiJ0_p_So17FBSDKEventLogging_pSo27FBSDKNotificationDelivering_pSo25FBSDKAccessTokenProviding_pXptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKViewImpressionLogger", + "mangledName": "$s12FBSDKCoreKit21_ViewImpressionLoggerC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKViewImpressionLogger", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._ViewImpressionLogger.TypeDependencies", + "usr": "s:12FBSDKCoreKit21_ViewImpressionLoggerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_WebDialog", + "printedName": "_WebDialog", + "children": [ + { + "kind": "Var", + "name": "shouldDeferVisibility", + "printedName": "shouldDeferVisibility", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)shouldDeferVisibility", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)shouldDeferVisibility", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvg", + "moduleName": "FBSDKCoreKit", + "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@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setShouldDeferVisibility:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC21shouldDeferVisibilitySbvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKCoreKit.WebDialogDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)delegate", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.WebDialogDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebDialogDelegate", + "printedName": "FBSDKCoreKit.WebDialogDelegate", + "usr": "c:objc(pl)FBSDKWebDialogDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)delegate", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.WebDialogDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "WebDialogDelegate", + "printedName": "FBSDKCoreKit.WebDialogDelegate", + "usr": "c:objc(pl)FBSDKWebDialogDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setDelegate:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8delegateSo08FBSDKWebD8Delegate_pSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "name", + "printedName": "name", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)name", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)name", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setName:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC4nameSSvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameSSvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "webViewFrame", + "printedName": "webViewFrame", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)webViewFrame", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webViewFrame", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setWebViewFrame:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12webViewFrameSo6CGRectVvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)parameters", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)parameters", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setParameters:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10parametersSDyS2SGSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "backgroundView", + "printedName": "backgroundView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)backgroundView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)backgroundView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIView?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setBackgroundView:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC14backgroundViewSo6UIViewCSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dialogView", + "printedName": "dialogView", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)dialogView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)dialogView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBWebDialogView?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setDialogView:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10dialogViewSo08FBSDKWebdF0CSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "path", + "printedName": "path", + "children": [ + { + "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@FBSDKCoreKit@objc(cs)FBSDKWebDialog(py)path", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)path", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)setPath:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC4pathSSSgvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4pathSSSgvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:parameters:webViewFrame:path:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)initWithName:parameters:webViewFrame:path:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4name10parameters12webViewFrame4pathACSS_SDyS2SGSgSo6CGRectVSSSgtcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)initWithName:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4nameACSS_tcfc", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)show", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4showyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "addObservers", + "printedName": "addObservers()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)addObservers", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC12addObserversyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deviceOrientationDidChangeNotification", + "printedName": "deviceOrientationDidChangeNotification(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)deviceOrientationDidChangeNotification:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC38deviceOrientationDidChangeNotificationyy10Foundation0I0VF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "removeObservers", + "printedName": "removeObservers()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)removeObservers", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC15removeObserversyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)cancel", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC6cancelyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "complete", + "printedName": "complete(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)completeWith:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC8complete4withySDySSypG_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismiss", + "printedName": "dismiss(animated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)dismissWithAnimated:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC7dismiss8animatedySb_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fail", + "printedName": "fail(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)failWith:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC4fail4withys5Error_p_tF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "generateURL", + "printedName": "generateURL()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)generateURLAndReturnError:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC11generateURL10Foundation0F0VyKF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showWebView", + "printedName": "showWebView()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)showWebView", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC04showC4ViewyyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationFrameForOrientation", + "printedName": "applicationFrameForOrientation()", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)applicationFrameForOrientation", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC30applicationFrameForOrientationSo6CGRectVyF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateView", + "printedName": "updateView(scale:alpha:animationDuration:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "CGFloat", + "printedName": "CoreGraphics.CGFloat", + "usr": "s:14CoreFoundation7CGFloatV" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + }, + { + "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:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)updateViewWithScale:alpha:animationDuration:completion:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC10updateView5scale5alpha17animationDuration10completiony12CoreGraphics7CGFloatV_AKSdySbcSgtF", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)init", + "mangledName": "$s12FBSDKCoreKit10_WebDialogCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "webDialogView", + "printedName": "webDialogView(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogView:didCompleteWithResults:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD4View_22didCompleteWithResultsySo08FBSDKWebdF0C_SDySSypGtF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogView:didCompleteWithResults:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogView", + "printedName": "webDialogView(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogView:didFailWithError:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD4View_16didFailWithErrorySo08FBSDKWebdF0C_s0J0_ptF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogView:didFailWithError:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogViewDidCancel", + "printedName": "webDialogViewDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogViewDidCancel:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD13ViewDidCancelyySo08FBSDKWebdF0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogViewDidCancel:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogViewDidFinishLoad", + "printedName": "webDialogViewDidFinishLoad(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBWebDialogView", + "printedName": "FBSDKCoreKit.FBWebDialogView", + "usr": "c:objc(cs)FBSDKWebDialogView" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKCoreKit@objc(cs)FBSDKWebDialog(im)webDialogViewDidFinishLoad:", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC03webD17ViewDidFinishLoadyySo08FBSDKWebdF0CF", + "moduleName": "FBSDKCoreKit", + "objc_name": "webDialogViewDidFinishLoad:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "windowFinder", + "printedName": "windowFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:windowFinder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Constructor", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactory12windowFinderAESo18FBSDKErrorCreating_p_So19_FBSDKWindowFinding_ptcfc", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV12errorFactory12windowFinderAESo18FBSDKErrorCreating_p_So19_FBSDKWindowFinding_ptcfc", + "moduleName": "FBSDKCoreKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC16TypeDependenciesV", + "moduleName": "FBSDKCoreKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKCoreKit", + "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": "FBSDKCoreKit._WebDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKCoreKit", + "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:12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKCoreKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog", + "mangledName": "$s12FBSDKCoreKit10_WebDialogC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKWebDialog", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKCoreKit._WebDialog.TypeDependencies", + "usr": "s:12FBSDKCoreKit10_WebDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit15DependentAsTypeP", + "mangledName": "$s12FBSDKCoreKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "_WebViewFactory", + "printedName": "_WebViewFactory", + "children": [ + { + "kind": "Function", + "name": "createWebView", + "printedName": "createWebView(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebView", + "printedName": "FBSDKCoreKit.WebView", + "usr": "c:objc(pl)FBSDKWebView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory(im)createWebViewWithFrame:", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryC06createcD05frameSo08FBSDKWebD0_pSo6CGRectV_tF", + "moduleName": "FBSDKCoreKit", + "objc_name": "createWebViewWithFrame:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebViewFactory", + "printedName": "FBSDKCoreKit._WebViewFactory", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory(im)init", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryCACycfc", + "moduleName": "FBSDKCoreKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebViewFactory", + "mangledName": "$s12FBSDKCoreKit15_WebViewFactoryC", + "moduleName": "FBSDKCoreKit", + "objc_name": "FBSDKWebViewFactory", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AccessToken", + "printedName": "AccessToken", + "children": [ + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE11permissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE19declinedPermissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "expiredPermissions", + "printedName": "expiredPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvp", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvp", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvg", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE18expiredPermissionsShyAC10PermissionOGvg", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "hasGranted", + "printedName": "hasGranted(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "declKind": "Func", + "usr": "s:So16FBSDKAccessTokenC12FBSDKCoreKitE10hasGrantedySbAC10PermissionOF", + "mangledName": "$sSo16FBSDKAccessTokenC12FBSDKCoreKitE10hasGrantedySbAC10PermissionOF", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAccessToken", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAccessToken", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ASWebAuthenticationSession", + "printedName": "ASWebAuthenticationSession", + "declKind": "Class", + "usr": "c:objc(cs)ASWebAuthenticationSession", + "moduleName": "AuthenticationServices", + "isOpen": true, + "intro_iOS": "12.0", + "objc_name": "ASWebAuthenticationSession", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "AuthenticationSessionProtocol", + "printedName": "AuthenticationSessionProtocol", + "usr": "s:12FBSDKCoreKit29AuthenticationSessionProtocolP", + "mangledName": "$s12FBSDKCoreKit29AuthenticationSessionProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Comparable", + "printedName": "Comparable", + "children": [ + { + "kind": "Function", + "name": "fb_clamped", + "printedName": "fb_clamped(to:)", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "ClosedRange", + "printedName": "Swift.ClosedRange<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:SN" + } + ], + "declKind": "Func", + "usr": "s:SL12FBSDKCoreKitE10fb_clamped2toxSNyxG_tF", + "mangledName": "$sSL12FBSDKCoreKitE10fb_clamped2toxSNyxG_tF", + "moduleName": "FBSDKCoreKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Comparable>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:SL", + "mangledName": "$sSL", + "moduleName": "Swift", + "genericSig": "<τ_0_0 : Swift.Equatable>", + "sugared_genericSig": "", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AEMReporter", + "printedName": "AEMReporter", + "declKind": "Class", + "usr": "c:@M@FBAEMKit@objc(cs)FBAEMReporter", + "mangledName": "$s8FBAEMKit11AEMReporterC", + "moduleName": "FBAEMKit", + "objc_name": "FBAEMReporter", + "declAttributes": [ + "Final", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "_AEMReporterProtocol", + "printedName": "_AEMReporterProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKAEMReporter", + "mangledName": "$s12FBSDKCoreKit20_AEMReporterProtocolP" + }, + { + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLink.swift", + "kind": "StringLiteral", + "offset": 396, + "length": 7, + "value": "\"FBSDKCoreKit.AppLink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10839, + "length": 17, + "value": "\"outputURLScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10884, + "length": 11, + "value": "\"outputURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10923, + "length": 11, + "value": "\"sourceURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 10963, + "length": 12, + "value": "\"sourceHost\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11006, + "length": 14, + "value": "\"sourceScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11046, + "length": 9, + "value": "\"success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11078, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11108, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11175, + "length": 3, + "value": "\"1\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 11204, + "length": 3, + "value": "\"0\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkNavigation.swift", + "kind": "StringLiteral", + "offset": 609, + "length": 17, + "value": "\"FBSDKCoreKit.AppLinkNavigation\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 671, + "length": 5, + "value": "\"url\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 708, + "length": 14, + "value": "\"app_store_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 751, + "length": 10, + "value": "\"app_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 5, + "value": "\"web\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 810, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 840, + "length": 8, + "value": "\"iphone\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 871, + "length": 6, + "value": "\"ipad\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 910, + "length": 17, + "value": "\"should_fallback\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolver.swift", + "kind": "StringLiteral", + "offset": 954, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 493, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 493, + "length": 11, + "value": "\"app_links\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/Resolver\/AppLinkResolverRequestBuilder.swift", + "kind": "StringLiteral", + "offset": 318, + "length": 29, + "value": "\"FBSDKCoreKit.AppLinkResolverRequestBuilder\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppLink\/AppLinkTarget.swift", + "kind": "StringLiteral", + "offset": 419, + "length": 13, + "value": "\"FBSDKCoreKit.AppLinkTarget\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 908, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "BooleanLiteral", + "offset": 954, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 1141, + "length": 31, + "value": "\"com.facebook.sdk.kits.bitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18010, + "length": 15, + "value": "\"fb_al_inbound\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18059, + "length": 17, + "value": "\"fb_auto_applink\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18210, + "length": 11, + "value": "\"targetURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18257, + "length": 15, + "value": "\"targetURLHost\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18312, + "length": 19, + "value": "\"referralTargetURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18365, + "length": 13, + "value": "\"referralURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18416, + "length": 17, + "value": "\"referralAppName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18464, + "length": 10, + "value": "\"inputURL\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18511, + "length": 16, + "value": "\"inputURLScheme\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18567, + "length": 19, + "value": "\"core_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18631, + "length": 20, + "value": "\"login_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18700, + "length": 24, + "value": "\"marketing_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18773, + "length": 24, + "value": "\"messenger_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18843, + "length": 21, + "value": "\"places_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18909, + "length": 20, + "value": "\"share_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 18971, + "length": 17, + "value": "\"tv_lib_included\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ApplicationDelegate.swift", + "kind": "StringLiteral", + "offset": 19024, + "length": 15, + "value": "\"SchemeWarning\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 369, + "length": 5, + "value": "\"aud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 398, + "length": 7, + "value": "\"email\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 427, + "length": 5, + "value": "\"exp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 461, + "length": 13, + "value": "\"family_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 502, + "length": 12, + "value": "\"given_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 5, + "value": "\"iat\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 563, + "length": 5, + "value": "\"iss\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 590, + "length": 5, + "value": "\"jti\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 624, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 660, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 690, + "length": 7, + "value": "\"nonce\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 723, + "length": 9, + "value": "\"picture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 754, + "length": 5, + "value": "\"sub\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 790, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 837, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 925, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 969, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1011, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1053, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1125, + "length": 14, + "value": "\"facebook.com\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 1173, + "length": 15, + "value": "\".facebook.com\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AuthenticationTokenClaims.swift", + "kind": "StringLiteral", + "offset": 287, + "length": 25, + "value": "\"FBSDKCoreKit.AuthenticationTokenClaims\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BackgroundEventLogger.swift", + "kind": "StringLiteral", + "offset": 327, + "length": 37, + "value": "\"BGTaskSchedulerPermittedIdentifiers\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BackgroundEventLogger.swift", + "kind": "StringLiteral", + "offset": 1623, + "length": 9, + "value": "\"version\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13668, + "length": 74, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13700, + "length": 1, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13735, + "length": 5, + "value": "\"nil\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Configuration\/CoreKitComponents.swift", + "kind": "StringLiteral", + "offset": 13741, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 444, + "length": 7, + "value": "\"event\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 529, + "length": 18, + "value": "\"deprecated_param\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "StringLiteral", + "offset": 583, + "length": 21, + "value": "\"is_deprecated_event\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "BooleanLiteral", + "offset": 653, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/EventDeactivation\/EventDeactivationManager.swift", + "kind": "BooleanLiteral", + "offset": 1361, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1349, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1422, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "BooleanLiteral", + "offset": 1460, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/FBProfilePictureView.swift", + "kind": "StringLiteral", + "offset": 1543, + "length": 4, + "value": "\"me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 32, + "value": "\"fb_mobile_achievement_unlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 24, + "value": "\"fb_mobile_activate_app\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 28, + "value": "\"fb_mobile_add_payment_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 23, + "value": "\"fb_mobile_add_to_cart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 27, + "value": "\"fb_mobile_add_to_wishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 33, + "value": "\"fb_mobile_complete_registration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 633, + "length": 24, + "value": "\"fb_mobile_content_view\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 30, + "value": "\"fb_mobile_initiated_checkout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 739, + "length": 26, + "value": "\"fb_mobile_level_achieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 20, + "value": "\"fb_mobile_purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 16, + "value": "\"fb_mobile_rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 856, + "length": 18, + "value": "\"fb_mobile_search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 897, + "length": 25, + "value": "\"fb_mobile_spent_credits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 31, + "value": "\"fb_mobile_tutorial_completion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 32, + "value": "\"fb_mobile_achievement_unlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 24, + "value": "\"fb_mobile_activate_app\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 418, + "length": 28, + "value": "\"fb_mobile_add_payment_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 23, + "value": "\"fb_mobile_add_to_cart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 27, + "value": "\"fb_mobile_add_to_wishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 576, + "length": 33, + "value": "\"fb_mobile_complete_registration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 633, + "length": 24, + "value": "\"fb_mobile_content_view\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 685, + "length": 30, + "value": "\"fb_mobile_initiated_checkout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 739, + "length": 26, + "value": "\"fb_mobile_level_achieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 785, + "length": 20, + "value": "\"fb_mobile_purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 821, + "length": 16, + "value": "\"fb_mobile_rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 856, + "length": 18, + "value": "\"fb_mobile_search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 897, + "length": 25, + "value": "\"fb_mobile_spent_credits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 950, + "length": 31, + "value": "\"fb_mobile_tutorial_completion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1036, + "length": 10, + "value": "\"_logTime\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1066, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 13, + "value": "\"_valueToSum\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1165, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1202, + "length": 17, + "value": "\"fb_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1241, + "length": 16, + "value": "\"fb_description\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1273, + "length": 10, + "value": "\"fb_level\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 21, + "value": "\"fb_max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 14, + "value": "\"fb_num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1393, + "length": 27, + "value": "\"fb_payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 24, + "value": "\"fb_registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 18, + "value": "\"fb_search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 12, + "value": "\"fb_success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 13, + "value": "\"fb_order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1620, + "length": 13, + "value": "\"fb_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1036, + "length": 10, + "value": "\"_logTime\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1066, + "length": 12, + "value": "\"_eventName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1099, + "length": 13, + "value": "\"_valueToSum\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1165, + "length": 15, + "value": "\"fb_content_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1202, + "length": 17, + "value": "\"fb_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1241, + "length": 16, + "value": "\"fb_description\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1273, + "length": 10, + "value": "\"fb_level\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1308, + "length": 21, + "value": "\"fb_max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1348, + "length": 14, + "value": "\"fb_num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1393, + "length": 27, + "value": "\"fb_payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1449, + "length": 24, + "value": "\"fb_registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 18, + "value": "\"fb_search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1532, + "length": 12, + "value": "\"fb_success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1562, + "length": 13, + "value": "\"fb_order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1620, + "length": 13, + "value": "\"fb_currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1988, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 13, + "value": "\"app_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2053, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2085, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2203, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2248, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2340, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2396, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2489, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2534, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2575, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 1988, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 13, + "value": "\"app_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2053, + "length": 15, + "value": "\"advertiser_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2085, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2121, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2161, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2203, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2248, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2302, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2340, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2396, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2443, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2489, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2534, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2575, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2610, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2645, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2754, + "length": 11, + "value": "\"user_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 10, + "value": "\"app_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2814, + "length": 13, + "value": "\"custom_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2850, + "length": 15, + "value": "\"custom_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2754, + "length": 11, + "value": "\"user_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2783, + "length": 10, + "value": "\"app_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2814, + "length": 13, + "value": "\"custom_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2850, + "length": 15, + "value": "\"custom_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2962, + "length": 12, + "value": "\"event_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2994, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3027, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3078, + "length": 14, + "value": "\"content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3149, + "length": 18, + "value": "\"max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3186, + "length": 11, + "value": "\"num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3228, + "length": 24, + "value": "\"payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3281, + "length": 21, + "value": "\"registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 15, + "value": "\"search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3373, + "length": 10, + "value": "\"order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3400, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2935, + "length": 7, + "value": "\"value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2962, + "length": 12, + "value": "\"event_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 2994, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3027, + "length": 13, + "value": "\"content_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3078, + "length": 14, + "value": "\"content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3149, + "length": 18, + "value": "\"max_rating_value\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3186, + "length": 11, + "value": "\"num_items\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3228, + "length": 24, + "value": "\"payment_info_available\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3281, + "length": 21, + "value": "\"registration_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3325, + "length": 15, + "value": "\"search_string\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3373, + "length": 10, + "value": "\"order_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3400, + "length": 9, + "value": "\"ad_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3516, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 13, + "value": "\"fb_login_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3588, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3624, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3664, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3751, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3805, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3843, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3899, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3946, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3992, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4037, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4078, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4148, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3516, + "length": 9, + "value": "\"anon_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3545, + "length": 13, + "value": "\"fb_login_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3588, + "length": 9, + "value": "\"page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3624, + "length": 21, + "value": "\"page_scoped_user_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3664, + "length": 4, + "value": "\"ud\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3706, + "length": 29, + "value": "\"advertiser_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3751, + "length": 30, + "value": "\"application_tracking_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3805, + "length": 16, + "value": "\"consider_views\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3843, + "length": 14, + "value": "\"device_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3899, + "length": 20, + "value": "\"include_dwell_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3946, + "length": 20, + "value": "\"include_video_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 3992, + "length": 18, + "value": "\"install_referrer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4037, + "length": 19, + "value": "\"installer_package\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4078, + "length": 14, + "value": "\"receipt_data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4113, + "length": 13, + "value": "\"url_schemes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4148, + "length": 14, + "value": "\"campaign_ids\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4234, + "length": 21, + "value": "\"AchievementUnlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4277, + "length": 13, + "value": "\"ActivateApp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4315, + "length": 16, + "value": "\"AddPaymentInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4351, + "length": 11, + "value": "\"AddToCart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4386, + "length": 15, + "value": "\"AddToWishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4432, + "length": 22, + "value": "\"CompleteRegistration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4476, + "length": 13, + "value": "\"ViewContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 18, + "value": "\"InitiateCheckout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4558, + "length": 15, + "value": "\"LevelAchieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4592, + "length": 10, + "value": "\"Purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4617, + "length": 6, + "value": "\"Rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4640, + "length": 8, + "value": "\"Search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4671, + "length": 14, + "value": "\"SpentCredits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4714, + "length": 20, + "value": "\"TutorialCompletion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4234, + "length": 21, + "value": "\"AchievementUnlocked\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4277, + "length": 13, + "value": "\"ActivateApp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4315, + "length": 16, + "value": "\"AddPaymentInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4351, + "length": 11, + "value": "\"AddToCart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4386, + "length": 15, + "value": "\"AddToWishlist\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4432, + "length": 22, + "value": "\"CompleteRegistration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4476, + "length": 13, + "value": "\"ViewContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4516, + "length": 18, + "value": "\"InitiateCheckout\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4558, + "length": 15, + "value": "\"LevelAchieved\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4592, + "length": 10, + "value": "\"Purchase\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4617, + "length": 6, + "value": "\"Rate\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4640, + "length": 8, + "value": "\"Search\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4671, + "length": 14, + "value": "\"SpentCredits\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4714, + "length": 20, + "value": "\"TutorialCompletion\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 15, + "value": "\"action_source\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4861, + "length": 18, + "value": "\"MobileAppInstall\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4906, + "length": 19, + "value": "\"install_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4808, + "length": 15, + "value": "\"action_source\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4861, + "length": 18, + "value": "\"MobileAppInstall\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 4906, + "length": 19, + "value": "\"install_timestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8628, + "length": 25, + "value": "\"data_processing_options\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8673, + "length": 33, + "value": "\"data_processing_options_country\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8724, + "length": 31, + "value": "\"data_processing_options_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8628, + "length": 25, + "value": "\"data_processing_options\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8673, + "length": 33, + "value": "\"data_processing_options_country\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventConversionsAPITransformer.swift", + "kind": "StringLiteral", + "offset": 8724, + "length": 31, + "value": "\"data_processing_options_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 10, + "value": "\"endpoint\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 12, + "value": "\"is_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 377, + "length": 12, + "value": "\"dataset_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 12, + "value": "\"access_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 10, + "value": "\"endpoint\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 345, + "length": 12, + "value": "\"is_enabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 377, + "length": 12, + "value": "\"dataset_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 409, + "length": 12, + "value": "\"access_key\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 22, + "value": "\"cloudbridge_settings\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "StringLiteral", + "offset": 736, + "length": 20, + "value": "\"capi_gateway_queue\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "BooleanLiteral", + "offset": 849, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "BooleanLiteral", + "offset": 1029, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "Array", + "offset": 1083, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKAppEventsCAPIManager.swift", + "kind": "IntegerLiteral", + "offset": 1163, + "length": 5, + "value": "86400" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "StringLiteral", + "offset": 380, + "length": 18, + "value": "\"application\/json\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 423, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 4, + "value": "1000" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "IntegerLiteral", + "offset": 482, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "Array", + "offset": 518, + "length": 192, + "value": "[1009, 1004, 429, 503, 504]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/CAPIGateway\/FBSDKTransformerGraphRequestFactory.swift", + "kind": "Array", + "offset": 977, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 485, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 521, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 569, + "length": 20, + "value": "\"oauth\/access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 617, + "length": 12, + "value": "\"grant_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 654, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 689, + "length": 11, + "value": "\"client_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 728, + "length": 12, + "value": "\"expires_at\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 29, + "value": "\"data_access_expiration_time\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 841, + "length": 12, + "value": "\"permission\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 878, + "length": 8, + "value": "\"status\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 912, + "length": 9, + "value": "\"granted\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 948, + "length": 10, + "value": "\"declined\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 984, + "length": 9, + "value": "\"expired\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1077, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1082, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1087, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1159, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "IntegerLiteral", + "offset": 1164, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1211, + "length": 21, + "value": "\"fb_extend_sso_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1275, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1311, + "length": 16, + "value": "\"me\/permissions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/Network\/GraphRequestPiggybackManager.swift", + "kind": "StringLiteral", + "offset": 1370, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/MACARuleMatchingManager.swift", + "kind": "BooleanLiteral", + "offset": 357, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/MACARuleMatchingManager.swift", + "kind": "Array", + "offset": 422, + "length": 262, + "value": "[\"event\", \"_locale\", \"_appVersion\", \"_deviceOS\", \"_platform\", \"_deviceModel\", \"_nativeAppID\", \"_nativeAppShortVersion\", \"_timezone\", \"_carrier\", \"_deviceOSTypeName\", \"_deviceOSVersion\", \"_remainingDiskGB\"]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7931, + "length": 16, + "value": "\"public_profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 15, + "value": "\"user_about_me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8060, + "length": 20, + "value": "\"user_actions.books\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8109, + "length": 21, + "value": "\"user_action.fitness\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8157, + "length": 20, + "value": "\"user_actions.music\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 19, + "value": "\"user_actions.news\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8249, + "length": 20, + "value": "\"user_actions.video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8292, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8338, + "length": 24, + "value": "\"user_education_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8383, + "length": 13, + "value": "\"user_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8424, + "length": 21, + "value": "\"user_games_activity\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8466, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8502, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8537, + "length": 12, + "value": "\"user_likes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8572, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8615, + "length": 21, + "value": "\"user_managed_groups\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8657, + "length": 13, + "value": "\"user_photos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8690, + "length": 12, + "value": "\"user_posts\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8730, + "length": 20, + "value": "\"user_relationships\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8784, + "length": 27, + "value": "\"user_relationship_details\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8842, + "length": 24, + "value": "\"user_religion_politics\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8893, + "length": 20, + "value": "\"user_tagged_places\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8934, + "length": 13, + "value": "\"user_videos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8969, + "length": 14, + "value": "\"user_website\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9009, + "length": 19, + "value": "\"user_work_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9060, + "length": 25, + "value": "\"read_custom_friendlists\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9108, + "length": 15, + "value": "\"read_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 32, + "value": "\"read_audience_network_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9221, + "length": 21, + "value": "\"read_page_mailboxes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9266, + "length": 17, + "value": "\"pages_show_list\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9308, + "length": 18, + "value": "\"pages_manage_cta\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 31, + "value": "\"pages_manage_instant_articles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9412, + "length": 10, + "value": "\"ads_read\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9441, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9475, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7931, + "length": 16, + "value": "\"public_profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 7969, + "length": 14, + "value": "\"user_friends\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8018, + "length": 15, + "value": "\"user_about_me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8060, + "length": 20, + "value": "\"user_actions.books\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8109, + "length": 21, + "value": "\"user_action.fitness\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8157, + "length": 20, + "value": "\"user_actions.music\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8203, + "length": 19, + "value": "\"user_actions.news\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8249, + "length": 20, + "value": "\"user_actions.video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8292, + "length": 15, + "value": "\"user_birthday\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8338, + "length": 24, + "value": "\"user_education_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8383, + "length": 13, + "value": "\"user_events\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8424, + "length": 21, + "value": "\"user_games_activity\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8466, + "length": 13, + "value": "\"user_gender\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8502, + "length": 15, + "value": "\"user_hometown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8537, + "length": 12, + "value": "\"user_likes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8572, + "length": 15, + "value": "\"user_location\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8615, + "length": 21, + "value": "\"user_managed_groups\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8657, + "length": 13, + "value": "\"user_photos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8690, + "length": 12, + "value": "\"user_posts\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8730, + "length": 20, + "value": "\"user_relationships\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8784, + "length": 27, + "value": "\"user_relationship_details\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8842, + "length": 24, + "value": "\"user_religion_politics\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8893, + "length": 20, + "value": "\"user_tagged_places\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8934, + "length": 13, + "value": "\"user_videos\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 8969, + "length": 14, + "value": "\"user_website\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9009, + "length": 19, + "value": "\"user_work_history\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9060, + "length": 25, + "value": "\"read_custom_friendlists\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9108, + "length": 15, + "value": "\"read_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9161, + "length": 32, + "value": "\"read_audience_network_insights\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9221, + "length": 21, + "value": "\"read_page_mailboxes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9266, + "length": 17, + "value": "\"pages_show_list\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9308, + "length": 18, + "value": "\"pages_manage_cta\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9363, + "length": 31, + "value": "\"pages_manage_instant_articles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9412, + "length": 10, + "value": "\"ads_read\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9441, + "length": 11, + "value": "\"user_link\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Permission.swift", + "kind": "StringLiteral", + "offset": 9475, + "length": 16, + "value": "\"user_age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 591, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 699, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 806, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 5, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 591, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 699, + "length": 5, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 806, + "length": 5, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 5, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2718, + "length": 7, + "value": "\"graph\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2748, + "length": 9, + "value": "\"picture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2857, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2817, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ImageURL.swift", + "kind": "StringLiteral", + "offset": 2857, + "length": 6, + "value": "\"type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 292, + "length": 12, + "value": "\"MM\/dd\/yyyy\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5901, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5957, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6060, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6095, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6129, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5901, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 5957, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6060, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6095, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6129, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6238, + "length": 4, + "value": "\"me\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6275, + "length": 8, + "value": "\"fields\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6316, + "length": 3, + "value": "\",\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6378, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6404, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6439, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6473, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6505, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6378, + "length": 4, + "value": "\"id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6404, + "length": 12, + "value": "\"first_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6439, + "length": 13, + "value": "\"middle_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6473, + "length": 11, + "value": "\"last_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6505, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "StringLiteral", + "offset": 6596, + "length": 11, + "value": "\"age_range\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6725, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6744, + "length": 2, + "value": "60" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+Loading.swift", + "kind": "IntegerLiteral", + "offset": 6763, + "length": 2, + "value": "24" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile+ProfileProviding.swift", + "kind": "StringLiteral", + "offset": 2627, + "length": 46, + "value": "\"com.facebook.sdk.FBSDKProfile.currentProfile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile.swift", + "kind": "BooleanLiteral", + "offset": 3836, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Profile.swift", + "kind": "StringLiteral", + "offset": 858, + "length": 7, + "value": "\"FBSDKCoreKit.Profile\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "BooleanLiteral", + "offset": 365, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "Array", + "offset": 426, + "length": 3246, + "value": "[\"_currency\", \"_valueToSum\", \"fb_availability\", \"fb_body_style\", \"fb_checkin_date\", \"fb_checkout_date\", \"fb_city\", \"fb_condition_of_vehicle\", \"fb_content_category\", \"fb_content_ids\", \"fb_content_name\", \"fb_content_type\", \"fb_contents\", \"fb_country\", \"fb_currency\", \"fb_delivery_category\", \"fb_departing_arrival_date\", \"fb_departing_departure_date\", \"fb_destination_airport\", \"fb_destination_ids\", \"fb_dma_code\", \"fb_drivetrain\", \"fb_exterior_color\", \"fb_fuel_type\", \"fb_hotel_score\", \"fb_interior_color\", \"fb_lease_end_date\", \"fb_lease_start_date\", \"fb_listing_type\", \"fb_make\", \"fb_mileage.unit\", \"fb_mileage.value\", \"fb_model\", \"fb_neighborhood\", \"fb_num_adults\", \"fb_num_children\", \"fb_num_infants\", \"fb_num_items\", \"fb_order_id\", \"fb_origin_airport\", \"fb_postal_code\", \"fb_predicted_ltv\", \"fb_preferred_baths_range\", \"fb_preferred_beds_range\", \"fb_preferred_neighborhoods\", \"fb_preferred_num_stops\", \"fb_preferred_price_range\", \"fb_preferred_star_ratings\", \"fb_price\", \"fb_property_type\", \"fb_region\", \"fb_returning_arrival_date\", \"fb_returning_departure_date\", \"fb_search_string\", \"fb_state_of_vehicle\", \"fb_status\", \"fb_suggested_destinations\", \"fb_suggested_home_listings\", \"fb_suggested_hotels\", \"fb_suggested_jobs\", \"fb_suggested_local_service_businesses\", \"fb_suggested_location_based_items\", \"fb_suggested_vehicles\", \"fb_transmission\", \"fb_travel_class\", \"fb_travel_end\", \"fb_travel_start\", \"fb_trim\", \"fb_user_bucket\", \"fb_value\", \"fb_vin\", \"fb_year\", \"lead_event_source\", \"predicted_ltv\", \"product_catalog_id\", \"app_user_id\", \"appVersion\", \"_eventName\", \"_eventName_md5\", \"_currency\", \"_implicitlyLogged\", \"_inBackground\", \"_isTimedEvent\", \"_logTime\", \"fb_order_id\", \"_session_id\", \"_ui\", \"_valueToSum\", \"_valueToUpdate\", \"_is_fb_codeless\", \"_is_suggested_event\", \"_fb_pixel_referral_id\", \"fb_pixel_id\", \"trace_id\", \"user_agent\", \"subscription_id\", \"predicted_ltv\", \"event_id\", \"_restrictedParams\", \"_onDeviceParams\", \"purchase_valid_result_type\", \"core_lib_included\", \"login_lib_included\", \"share_lib_included\", \"place_lib_included\", \"messenger_lib_included\", \"applinks_lib_included\", \"marketing_lib_included\", \"_codeless_action\", \"sdk_initialized\", \"billing_client_lib_included\", \"billing_service_lib_included\", \"user_data_keys\", \"device_push_token\", \"fb_mobile_pckg_fp\", \"fb_mobile_app_cert_hash\", \"aggregate_id\", \"anonymous_id\", \"campaign_ids\", \"fb_post_attachment\", \"receipt_data\", \"ad_type\", \"fb_content\", \"fb_content_id\", \"fb_content_type\", \"fb_currency\", \"fb_description\", \"fb_level\", \"fb_max_rating_value\", \"fb_num_items\", \"fb_order_id\", \"fb_payment_info_available\", \"fb_registration_method\", \"fb_search_string\", \"fb_success\", \"pm\", \"_audiencePropertyIds\", \"cs_maca\"]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/ProtectedModeManager.swift", + "kind": "Array", + "offset": 3721, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 3661, + "length": 460, + "value": "\": Please set a value for FacebookAutoLogAppEventsEnabled. Set the flag to TRUE if you want to collect app install, app launch and in-app purchase events automatically. To request user consent before collecting data, set the flag value to FALSE, then change to TRUE once user consent is received. Learn more: https:\/\/developers.facebook.com\/docs\/app-events\/getting-started-app-events-ios#disable-auto-events.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4177, + "length": 209, + "value": "\": You haven't set a value for FacebookAdvertiserIDCollectionEnabled. Set the flag to TRUE if you want to collect Advertiser ID for better advertising and analytics results.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4441, + "length": 250, + "value": "\": The value for FacebookAdvertiserIDCollectionEnabled is currently set to FALSE so you're sending app events without collecting Advertiser ID. This can affect the quality of your advertising and analytics results.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4842, + "length": 7, + "value": "\"usage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4897, + "length": 9, + "value": "\"initial\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 4955, + "length": 10, + "value": "\"previous\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+Logging.swift", + "kind": "StringLiteral", + "offset": 5013, + "length": 9, + "value": "\"current\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2021, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2222, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistedProperties.swift", + "kind": "BooleanLiteral", + "offset": 2405, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 25, + "value": "\"FacebookUrlSchemeSuffix\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 340, + "length": 21, + "value": "\"FacebookClientToken\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 21, + "value": "\"FacebookDisplayName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 20, + "value": "\"FacebookDomainPart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 33, + "value": "\"FacebookAutoLogAppEventsEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 39, + "value": "\"FacebookAdvertiserIDCollectionEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 33, + "value": "\"FacebookCodelessDebugLogEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 703, + "length": 25, + "value": "\"FacebookLoggingBehavior\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 746, + "length": 15, + "value": "\"FacebookAppID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 796, + "length": 32, + "value": "\"FacebookJpegCompressionQuality\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 867, + "length": 34, + "value": "\"FacebookSKAdNetworkReportEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 939, + "length": 57, + "value": "\"com.facebook.sdk:FBSDKSettingsAdvertisingTrackingStatus\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 54, + "value": "\"com.facebook.sdk:FBSDKSettingsLimitEventAndDataUsage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 67, + "value": "\"com.facebook.sdk:FBSDKSettingsUseCachedValuesForExpensiveMetadata\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 53, + "value": "\"com.facebook.sdk.FBSDKSettingsUseTokenOptimizations\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 53, + "value": "\"com.facebook.sdk:FBSDKSettingsDataProcessingOptions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1394, + "length": 39, + "value": "\"com.facebook.sdk:FBSDKSettingsBitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKSettingsInstallTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1560, + "length": 69, + "value": "\"com.facebook.sdk:FBSDKSettingsSetAdvertiserTrackingEnabledTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 291, + "length": 25, + "value": "\"FacebookUrlSchemeSuffix\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 340, + "length": 21, + "value": "\"FacebookClientToken\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 21, + "value": "\"FacebookDisplayName\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 20, + "value": "\"FacebookDomainPart\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 487, + "length": 33, + "value": "\"FacebookAutoLogAppEventsEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 564, + "length": 39, + "value": "\"FacebookAdvertiserIDCollectionEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 33, + "value": "\"FacebookCodelessDebugLogEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 703, + "length": 25, + "value": "\"FacebookLoggingBehavior\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 746, + "length": 15, + "value": "\"FacebookAppID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 796, + "length": 32, + "value": "\"FacebookJpegCompressionQuality\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 867, + "length": 34, + "value": "\"FacebookSKAdNetworkReportEnabled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 939, + "length": 57, + "value": "\"com.facebook.sdk:FBSDKSettingsAdvertisingTrackingStatus\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 54, + "value": "\"com.facebook.sdk:FBSDKSettingsLimitEventAndDataUsage\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1133, + "length": 67, + "value": "\"com.facebook.sdk:FBSDKSettingsUseCachedValuesForExpensiveMetadata\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1234, + "length": 53, + "value": "\"com.facebook.sdk.FBSDKSettingsUseTokenOptimizations\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1321, + "length": 53, + "value": "\"com.facebook.sdk:FBSDKSettingsDataProcessingOptions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1394, + "length": 39, + "value": "\"com.facebook.sdk:FBSDKSettingsBitmask\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1462, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKSettingsInstallTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings+PersistenceKey.swift", + "kind": "StringLiteral", + "offset": 1560, + "length": 69, + "value": "\"com.facebook.sdk:FBSDKSettingsSetAdvertiserTrackingEnabledTimestamp\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "FloatLiteral", + "offset": 1347, + "length": 3, + "value": "0.9" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 5615, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 6356, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 7159, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 7308, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "StringLiteral", + "offset": 12338, + "length": 5, + "value": "\"ldu\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "BooleanLiteral", + "offset": 16945, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Settings.swift", + "kind": "StringLiteral", + "offset": 20579, + "length": 391, + "value": "\"As of v9.0, you must initialize the SDK prior to calling any methods or setting any properties. You can do this by calling `ApplicationDelegate.application(_:didFinishLaunchingWithOptions:)`. Learn more: https:\/\/developers.facebook.com\/docs\/ios\/getting-started. If no `UIApplication` instance is available, you can use `ApplicationDelegate.initializeSDK()`.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ShareDialogConfiguration.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 9, + "value": "\"message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/ShareDialogConfiguration.swift", + "kind": "StringLiteral", + "offset": 395, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 314, + "length": 52, + "value": "\"com.facebook.sdk.v4.FBSDKAccessTokenInformationKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 404, + "length": 60, + "value": "\"com.facebook.sdk.v4.FBSDKAccessTokenInformationKeychainKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 514, + "length": 60, + "value": "\"com.facebook.sdk.v9.FBSDKAuthenticationTokenInformationKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 620, + "length": 68, + "value": "\"com.facebook.sdk.v9.FBSDKAuthenticationTokenInformationKeychainKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 716, + "length": 11, + "value": "\"tokenUUID\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/TokenCache.swift", + "kind": "StringLiteral", + "offset": 758, + "length": 14, + "value": "\"tokenEncoded\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/TokenCaching\/_AccessTokenExpirer.swift", + "kind": "StringLiteral", + "offset": 483, + "length": 19, + "value": "\"FBSDKCoreKit._AccessTokenExpirer\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 682, + "length": 59, + "value": "\"com.apple.AuthenticationServices.WebAuthenticationSession\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 777, + "length": 11, + "value": "\"com.apple\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 825, + "length": 8, + "value": "\"bridge\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1420, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1519, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "BooleanLiteral", + "offset": 1542, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_BridgeAPI.swift", + "kind": "StringLiteral", + "offset": 445, + "length": 10, + "value": "\"FBSDKCoreKit._BridgeAPI\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "IntegerLiteral", + "offset": 693, + "length": 4, + "value": "1024" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "IntegerLiteral", + "offset": 700, + "length": 2, + "value": "16" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1272, + "length": 6, + "value": "\"data\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1417, + "length": 5, + "value": "\"png\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1486, + "length": 10, + "value": "\"isBase64\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1527, + "length": 14, + "value": "\"isPasteboard\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1563, + "length": 5, + "value": "\"tag\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1592, + "length": 32, + "value": "\"fbAppBridgeType_jsonReadyValue\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 39, + "value": "\"com.facebook.Facebook.FBAppBridgeType\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 15, + "value": "\"CFBundleIcons\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1802, + "length": 21, + "value": "\"CFBundlePrimaryIcon\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1851, + "length": 19, + "value": "\"CFBundleIconFiles\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1926, + "length": 7, + "value": "\"error\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 1965, + "length": 16, + "value": "\"method_results\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2017, + "length": 19, + "value": "\"completionGesture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2061, + "length": 8, + "value": "\"cancel\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2094, + "length": 8, + "value": "\"dialog\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2177, + "length": 11, + "value": "\"action_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2214, + "length": 10, + "value": "\"app_icon\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2250, + "length": 10, + "value": "\"app_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2289, + "length": 13, + "value": "\"sdk_version\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2360, + "length": 13, + "value": "\"bridge_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2398, + "length": 13, + "value": "\"method_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2466, + "length": 6, + "value": "\"code\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2497, + "length": 8, + "value": "\"domain\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 2532, + "length": 11, + "value": "\"user_info\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/BridgeAPI\/ProtocolVersions\/_BridgeAPIProtocolNativeV1.swift", + "kind": "StringLiteral", + "offset": 457, + "length": 26, + "value": "\"FBSDKCoreKit._BridgeAPIProtocolNativeV1\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 587, + "length": 6, + "value": "\"name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 615, + "length": 5, + "value": "\"url\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/ServerConfiguration\/_DialogConfigurationMapBuilder.swift", + "kind": "StringLiteral", + "offset": 647, + "length": 10, + "value": "\"versions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 529, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 578, + "length": 48, + "value": "\"com.facebook.sdk:FBSDKErrorDeveloperMessageKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 44, + "value": "\"com.facebook.sdk:FBSDKErrorArgumentNameKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/_ErrorFactory.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 45, + "value": "\"com.facebook.sdk:FBSDKErrorArgumentValueKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/FeatureManager\/_FeatureManager.swift", + "kind": "StringLiteral", + "offset": 571, + "length": 51, + "value": "\"com.facebook.sdk:FBSDKFeatureManager.FBSDKFeature\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_MeasurementEvent.swift", + "kind": "StringLiteral", + "offset": 691, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/_MeasurementEvent.swift", + "kind": "StringLiteral", + "offset": 792, + "length": 12, + "value": "\"event_args\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/_PaymentObserver.swift", + "kind": "BooleanLiteral", + "offset": 594, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/_PaymentObserver.swift", + "kind": "StringLiteral", + "offset": 514, + "length": 16, + "value": "\"FBSDKCoreKit._PaymentObserver\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/Integrity\/_RestrictiveEventFilter.swift", + "kind": "StringLiteral", + "offset": 459, + "length": 23, + "value": "\"FBSDKCoreKit._RestrictiveEventFilter\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 604, + "length": 12, + "value": "\"event_name\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 641, + "length": 8, + "value": "\"values\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 10, + "value": "\"currency\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 711, + "length": 8, + "value": "\"amount\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/AppEvents\/Internal\/SKAdNetwork\/_SKAdNetworkEvent.swift", + "kind": "StringLiteral", + "offset": 453, + "length": 17, + "value": "\"FBSDKCoreKit._SKAdNetworkEvent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/UI\/_ViewImpressionLogger.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 21, + "value": "\"FBSDKCoreKit._ViewImpressionLogger\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "BooleanLiteral", + "offset": 507, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "FloatLiteral", + "offset": 785, + "length": 3, + "value": "0.2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "FloatLiteral", + "offset": 814, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 882, + "length": 9, + "value": "\"display\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 913, + "length": 5, + "value": "\"sdk\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 948, + "length": 14, + "value": "\"redirect_uri\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 986, + "length": 8, + "value": "\"app_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1024, + "length": 14, + "value": "\"access_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1103, + "length": 7, + "value": "\"touch\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1139, + "length": 35, + "value": "\"ios-\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1173, + "length": 1, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 1200, + "length": 21, + "value": "\"fbconnect:\/\/success\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKCoreKit\/FBSDKCoreKit\/Internal\/WebDialog\/_WebDialog.swift", + "kind": "StringLiteral", + "offset": 447, + "length": 10, + "value": "\"FBSDKCoreKit._WebDialog\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface similarity index 52% rename from ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface rename to ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface index 2522eea2..67e30f1e 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -1,14 +1,19 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit +// 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-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import AdSupport +import AuthenticationServices +import FBAEMKit @_exported import FBSDKCoreKit import FBSDKCoreKit_Basics import Foundation +import SafariServices import StoreKit import Swift import UIKit import _Concurrency +import _StringProcessing extension FBSDKCoreKit.AccessToken { public var permissions: Swift.Set { get @@ -21,6 +26,69 @@ extension FBSDKCoreKit.AccessToken { } public func hasGranted(_ permission: FBSDKCoreKit.Permission) -> Swift.Bool } +@objcMembers @objc(FBSDKAppLink) final public class AppLink : ObjectiveC.NSObject, FBSDKCoreKit._AppLinkProtocol { + @objc final public let sourceURL: Foundation.URL? + @objc final public let targets: [FBSDKCoreKit.AppLinkTargetProtocol] + @objc final public let webURL: Foundation.URL? + @objc final public var isBackToReferrer: Swift.Bool + @objc(initWithSourceURL:targets:webURL:) convenience public init(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLink. This method will be removed in future releases.\"") + @objc(appLinkWithSourceURL:targets:webURL:) public static func appLink(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?) -> FBSDKCoreKit._AppLinkProtocol + @objc(initWithSourceURL:targets:webURL:isBackToReferrer:) public init(sourceURL: Foundation.URL?, targets: [FBSDKCoreKit.AppLinkTargetProtocol], webURL: Foundation.URL?, isBackToReferrer: Swift.Bool) + @objc deinit +} +@available(iOSApplicationExtension, unavailable, message: "Not available in app extension") +@objcMembers @objc(FBSDKAppLinkNavigation) final public class AppLinkNavigation : ObjectiveC.NSObject { + @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `defaultResolver` instead.") + @nonobjc public static var `default`: FBSDKCoreKit.AppLinkResolving { + get + set + } + @objc(defaultResolver) public static var defaultResolver: FBSDKCoreKit.AppLinkResolving { + @objc get + @objc set + } + @objc final public let extras: [Swift.String : Any] + @objc final public let appLinkData: [Swift.String : Any] + @objc final public let appLink: FBSDKCoreKit.AppLink + @objc final public var navigationType: FBSDKCoreKit.AppLinkNavigationType { + @objc get + } + @objc(initWithAppLink:extras:appLinkData:) public init(appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any]) + @available(*, deprecated, message: "Please use init(appLink:extras:appLinkData:) to instantiate an `AppLinkNavigation`.\nThis method will be removed in the next major version.\"") + @objc(initWithAppLink:extras:appLinkData:settings:) convenience public init(appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any], settings: FBSDKCoreKit.SettingsProtocol) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLinkNavigation. This method will be removed in future releases.\"") + @objc(navigationWithAppLink:extras:appLinkData:settings:) public static func navigation(with appLink: FBSDKCoreKit.AppLink, extras: [Swift.String : Any], appLinkData: [Swift.String : Any], settings: FBSDKCoreKit.SettingsProtocol) -> FBSDKCoreKit.AppLinkNavigation + @objc(callbackAppLinkDataForAppWithName:url:) public static func callbackAppLinkData(forApp appName: Swift.String, url: Swift.String) -> [Swift.String : [Swift.String : Swift.String]] + @available(swift, obsoleted: 0.1) + @objc(navigate:) final public func navigate(error errorPointer: Foundation.NSErrorPointer) -> FBSDKCoreKit.AppLinkNavigationType + @nonobjc final public func navigate() throws -> FBSDKCoreKit.AppLinkNavigationType + @objc(resolveAppLink:handler:) public static func resolveAppLink(_ destination: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @objc(resolveAppLink:resolver:handler:) public static func resolveAppLink(_ destination: Foundation.URL, resolver: FBSDKCoreKit.AppLinkResolving, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @available(swift, obsoleted: 0.1) + @objc(navigateToAppLink:error:) public static func navigate(to appLink: FBSDKCoreKit.AppLink, errorPointer: Foundation.ErrorPointer) -> FBSDKCoreKit.AppLinkNavigationType + @nonobjc public static func navigate(to appLink: FBSDKCoreKit.AppLink) throws -> FBSDKCoreKit.AppLinkNavigationType + @objc(navigationTypeForLink:) public static func navigationType(for appLink: FBSDKCoreKit.AppLink) -> FBSDKCoreKit.AppLinkNavigationType + @objc(navigateToURL:handler:) public static func navigate(to destination: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkNavigationBlock) + @objc(navigateToURL:resolver:handler:) public static func navigate(to destination: Foundation.URL, resolver: FBSDKCoreKit.AppLinkResolving, handler: @escaping FBSDKCoreKit.AppLinkNavigationBlock) + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKAppLinkResolver) final public class AppLinkResolver : ObjectiveC.NSObject, FBSDKCoreKit.AppLinkResolving { + @objc final public func appLink(from url: Foundation.URL, handler: @escaping FBSDKCoreKit.AppLinkBlock) + @objc @available(iOSApplicationExtension, unavailable, message: "Not available in app extension") + final public func appLinks(from urls: [Foundation.URL], handler: @escaping FBSDKCoreKit.AppLinksBlock) + @objc override dynamic public init() + @objc deinit +} +@objcMembers @objc(FBSDKAppLinkTarget) final public class AppLinkTarget : ObjectiveC.NSObject, FBSDKCoreKit.AppLinkTargetProtocol { + @objc final public let url: Foundation.URL? + @objc final public let appStoreId: Swift.String? + @objc final public let appName: Swift.String + @objc(initWithURL:appStoreId:appName:) public init(url: Foundation.URL?, appStoreId: Swift.String?, appName: Swift.String) + @available(*, deprecated, message: "Please use designated init to instantiate an AppLinkTarget. This method will be removed in future releases.\"") + @objc(appLinkTargetWithURL:appStoreId:appName:) public static func appLinkTargetWithURL(url: Foundation.URL?, appStoreId: Swift.String?, appName: Swift.String) -> FBSDKCoreKit.AppLinkTarget + @objc deinit +} @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKApplicationDelegate) final public class ApplicationDelegate : ObjectiveC.NSObject { @objc(sharedInstance) public static var shared: FBSDKCoreKit.ApplicationDelegate { get @@ -67,15 +135,45 @@ extension FBSDKCoreKit.AccessToken { @objc func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) @objc func recordEvent(_ parameters: [Swift.String : Any]) } +@_inheritsConvenienceInitializers @objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { + @objc public static let shared: FBSDKCoreKit._InternalURLOpener + @objc override dynamic public init() + @objc deinit +} @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKIcon) open class FBIcon : ObjectiveC.NSObject { - @objc open func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? - @objc public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, scale: CoreGraphics.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? + @objc open func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, scale: CoreFoundation.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? @objc override dynamic public init() @objc deinit } +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { + @objc @_Concurrency.MainActor(unsafe) final public var pictureMode: FBSDKCoreKit.Profile.PictureMode { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var profileID: Swift.String { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreFoundation.CGRect { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc override final public var contentMode: UIKit.UIView.ContentMode { + @objc get + @objc set + } + @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, profile: FBSDKCoreKit.Profile? = nil) + @objc(initWithProfile:) @_Concurrency.MainActor(unsafe) convenience public init(profile: FBSDKCoreKit.Profile? = nil) + @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreFoundation.CGRect) + @objc(initWithCoder:) @_Concurrency.MainActor(unsafe) required dynamic public init?(coder: Foundation.NSCoder) + @objc @_Concurrency.MainActor(unsafe) final public func setNeedsImageUpdate() + @objc deinit +} public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager +public typealias CAPIGBlock = (Swift.Bool) -> Swift.Void @objc @_inheritsConvenienceInitializers @objcMembers final public class FBSDKAppEventsCAPIManager : ObjectiveC.NSObject, FBSDKCoreKit.CAPIReporter { @objc public static let shared: FBSDKCoreKit.FBSDKAppEventsCAPIManager @objc override dynamic public init() @@ -96,7 +194,7 @@ public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager } @objc override dynamic public init() @objc public func configure(datasetID: Swift.String, url: Swift.String, accessKey: Swift.String) - @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any]) + @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any], userAgent: Swift.String) @objc deinit } final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @@ -104,6 +202,10 @@ final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @objc final public func createKeychainStore(service: Swift.String, accessGroup: Swift.String?) -> FBSDKCoreKit.KeychainStoreProtocol @objc deinit } +@objc(FBSDKMACARuleMatching) public protocol MACARuleMatching { + @objc func enable() + @objc func processParameters(_ params: Foundation.NSDictionary?, event: Swift.String?) -> Foundation.NSDictionary? +} public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { case publicProfile case userFriends @@ -156,6 +258,69 @@ public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { get } } +extension FBSDKCoreKit.Profile { + @objc(FBSDKProfilePictureMode) public enum PictureMode : Swift.UInt { + case square + case normal + case album + case small + case large + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreFoundation.CGSize) -> Foundation.URL? +} +extension FBSDKCoreKit.Profile { + @objc(loadCurrentProfileWithCompletion:) public static func loadCurrentProfile(completion: FBSDKCoreKit.ProfileBlock?) +} +extension FBSDKCoreKit.Profile : FBSDKCoreKit.ProfileProviding { + @objc(currentProfile) public static var current: FBSDKCoreKit.Profile? { + @objc get + @objc set + } + @objc public static func fetchCachedProfile() -> Self? +} +extension FBSDKCoreKit.Profile : Foundation.NSSecureCoding { + @objc public static var supportsSecureCoding: Swift.Bool { + @objc get + } + @objc convenience dynamic public init?(coder decoder: Foundation.NSCoder) + @objc final public func encode(with encoder: Foundation.NSCoder) +} +@objcMembers @objc(FBSDKProfile) final public class Profile : ObjectiveC.NSObject { + @objc final public let userID: FBSDKCoreKit.UserIdentifier + @objc final public let firstName: Swift.String? + @objc final public let middleName: Swift.String? + @objc final public let lastName: Swift.String? + @objc final public let name: Swift.String? + @objc final public let linkURL: Foundation.URL? + @objc final public let refreshDate: Foundation.Date + @objc final public let imageURL: Foundation.URL? + @objc final public let email: Swift.String? + @objc final public let friendIDs: [FBSDKCoreKit.UserIdentifier]? + @objc final public let birthday: Foundation.Date? + @objc final public let ageRange: FBSDKCoreKit.UserAgeRange? + @objc final public let hometown: FBSDKCoreKit.Location? + @objc final public let location: FBSDKCoreKit.Location? + @objc final public let gender: Swift.String? + @objc public static var isUpdatedWithAccessTokenChange: Swift.Bool { + @objc get + @objc set + } + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:) convenience public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String?, middleName: Swift.String?, lastName: Swift.String?, name: Swift.String?, linkURL: Foundation.URL?, refreshDate: Foundation.Date?) + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:) convenience public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String? = nil, middleName: Swift.String? = nil, lastName: Swift.String? = nil, name: Swift.String? = nil, linkURL: Foundation.URL? = nil, refreshDate: Foundation.Date? = Date(), imageURL: Foundation.URL? = nil, email: Swift.String? = nil, friendIDs: [FBSDKCoreKit.UserIdentifier]? = nil, birthday: Foundation.Date? = nil, ageRange: FBSDKCoreKit.UserAgeRange? = nil, hometown: FBSDKCoreKit.Location? = nil, location: FBSDKCoreKit.Location? = nil, gender: Swift.String? = nil) + @objc(initWithUserID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:) public init(userID: FBSDKCoreKit.UserIdentifier, firstName: Swift.String?, middleName: Swift.String?, lastName: Swift.String?, name: Swift.String?, linkURL: Foundation.URL?, refreshDate: Foundation.Date?, imageURL: Foundation.URL?, email: Swift.String?, friendIDs: [FBSDKCoreKit.UserIdentifier]?, birthday: Foundation.Date?, ageRange: FBSDKCoreKit.UserAgeRange?, hometown: FBSDKCoreKit.Location?, location: FBSDKCoreKit.Location?, gender: Swift.String?, isLimited: Swift.Bool) + @available(*, deprecated, message: "This method is deprecated and will be removed in the next major release. Use `isUpdatedWithAccessTokenChange` instead.") + @objc(enableUpdatesOnAccessTokenChange:) public static func enableUpdatesOnAccessTokenChange(_ enabled: Swift.Bool) + @objc deinit +} +@objc(FBSDKProfileProviding) public protocol ProfileProviding { + @objc(currentProfile) static var current: FBSDKCoreKit.Profile? { get set } + @objc static func fetchCachedProfile() -> FBSDKCoreKit.Profile? +} public typealias LoginTooltipBlock = (FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> Swift.Void public enum LoginTooltipError : Swift.Error { case missingTooltipText @@ -187,7 +352,7 @@ extension FBSDKCoreKit.Settings { @objc final public var defaultGraphAPIVersion: Swift.String { @objc get } - @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreGraphics.CGFloat { + @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreFoundation.CGFloat { @objc get @objc set } @@ -358,7 +523,6 @@ public enum DialogConfigurationName { public static let message: Swift.String public static let share: Swift.String } -@available(tvOS, unavailable) public struct ShareDialogConfiguration { public init() public var defaultShareMode: Swift.String? { @@ -367,12 +531,58 @@ public struct ShareDialogConfiguration { public func shouldUseNativeDialog(forDialogName dialogName: Swift.String) -> Swift.Bool public func shouldUseSafariViewController(forDialogName dialogName: Swift.String) -> Swift.Bool } +@objc(FBSDKAEMReporter) public protocol _AEMReporterProtocol { + @objc static func enable() + @objc(recordAndUpdateEvent:currency:value:parameters:) static func recordAndUpdate(event: Swift.String, currency: Swift.String?, value: Foundation.NSNumber?, parameters: [Swift.String : Any]?) + @objc static func setConversionFilteringEnabled(_ isEnabled: Swift.Bool) + @objc static func setCatalogMatchingEnabled(_ isEnabled: Swift.Bool) + @objc static func setAdvertiserRuleMatchInServerEnabled(_ isEnabled: Swift.Bool) + @objc static func handle(_ url: Foundation.URL?) +} +extension FBAEMKit.AEMReporter : FBSDKCoreKit._AEMReporterProtocol { +} @objcMembers @objc(_FBSDKAccessTokenExpirer) final public class _AccessTokenExpirer : ObjectiveC.NSObject, FBSDKCoreKit._AccessTokenExpiring { @objc public init(notificationCenter: FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering) @objc deinit } @objc(_FBSDKAccessTokenExpiring) public protocol _AccessTokenExpiring { } +@objc @_hasMissingDesignatedInitializers final public class _BridgeAPI : ObjectiveC.NSObject, FBSDKCoreKit.FBSDKApplicationObserving, FBSDKCoreKit.URLOpener, FBSDKCoreKit.BridgeAPIRequestOpening, FBSDKCoreKit._ContainerViewControllerDelegate, SafariServices.SFSafariViewControllerDelegate { + public static let shared: FBSDKCoreKit._BridgeAPI + @objc final public func viewControllerDidDisappear(_ viewController: FBSDKCoreKit._ContainerViewController, animated: Swift.Bool) + @objc deinit +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func applicationWillResignActive(_ application: UIKit.UIApplication?) + @objc final public func applicationDidBecomeActive(_ application: UIKit.UIApplication?) + @objc final public func applicationDidEnterBackground(_ application: UIKit.UIApplication?) + @objc final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func application(_ application: UIKit.UIApplication, didFinishLaunchingWithOptions launchOptions: [UIKit.UIApplication.LaunchOptionsKey : Any]? = nil) -> Swift.Bool +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func open(_ url: Foundation.URL, sender: FBSDKCoreKit.URLOpening?, handler: @escaping FBSDKCoreKit.SuccessBlock) + @objc final public func open(_ request: FBSDKCoreKit.BridgeAPIRequestProtocol, useSafariViewController: Swift.Bool, from fromViewController: UIKit.UIViewController?, completionBlock: @escaping FBSDKCoreKit.BridgeAPIResponseBlock) + @objc final public func openURLWithSafariViewController(url: Foundation.URL, sender: FBSDKCoreKit.URLOpening?, from fromViewController: UIKit.UIViewController?, handler: @escaping FBSDKCoreKit.SuccessBlock) +} +extension FBSDKCoreKit._BridgeAPI { + @objc final public func safariViewControllerDidFinish(_ safariViewController: SafariServices.SFSafariViewController) +} +@available(iOS 13, *) +extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPresentationContextProviding { + @objc final public func presentationAnchor(for session: AuthenticationServices.ASWebAuthenticationSession) -> AuthenticationServices.ASPresentationAnchor +} +@objcMembers @objc(FBSDKBridgeAPIProtocolNativeV1) final public class _BridgeAPIProtocolNativeV1 : ObjectiveC.NSObject, FBSDKCoreKit.BridgeAPIProtocol { + @objc(initWithAppScheme:) convenience public init(appScheme: Swift.String?) + @objc(initWithAppScheme:pasteboard:dataLengthThreshold:includeAppIcon:) public init(appScheme: Swift.String?, pasteboard: FBSDKCoreKit._Pasteboard?, dataLengthThreshold: Swift.UInt, shouldIncludeAppIcon: Swift.Bool) + @objc deinit + @objc final public func requestURL(actionID: Swift.String, scheme: Swift.String, methodName: Swift.String, parameters: [Swift.String : Any]) throws -> Foundation.URL + @objc final public func responseParameters(actionID: Swift.String, queryParameters: [Swift.String : Any], cancelled cancelledRef: Swift.UnsafeMutablePointer?) throws -> [Swift.String : Any] +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKBridgeAPIRequestFactory) final public class _BridgeAPIRequestFactory : ObjectiveC.NSObject, FBSDKCoreKit.BridgeAPIRequestCreating { + @objc final public func bridgeAPIRequest(with protocolType: FBSDKCoreKit.FBSDKBridgeAPIProtocolType, scheme: Swift.String, methodName: Swift.String?, parameters: [Swift.String : Any]?, userInfo: [Swift.String : Any]? = nil) -> FBSDKCoreKit.BridgeAPIRequestProtocol? + @objc override dynamic public init() + @objc deinit +} @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKDialogConfigurationMapBuilder) final public class _DialogConfigurationMapBuilder : ObjectiveC.NSObject, FBSDKCoreKit._DialogConfigurationMapBuilding { @objc final public func buildDialogConfigurationMap(from rawConfigurations: [[Swift.String : Any]]) -> [Swift.String : FBSDKCoreKit._DialogConfiguration] @objc override dynamic public init() @@ -389,8 +599,13 @@ public struct ShareDialogConfiguration { @objc override dynamic public init() @objc deinit } +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCloseIcon) final public class _FBCloseIcon : ObjectiveC.NSObject { + @objc final public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLogo) final public class _FBLogo : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? @objc override dynamic public init() @objc deinit } @@ -402,6 +617,16 @@ public struct ShareDialogConfiguration { @objc override dynamic public init() @objc deinit } +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKHumanSilhouetteIcon) final public class _HumanSilhouetteIcon : FBSDKCoreKit.FBIcon { + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKMeasurementEvent) final public class _MeasurementEvent : ObjectiveC.NSObject, FBSDKCoreKit._AppLinkEventPosting { + @objc(postNotificationForEventName:args:) final public func postNotification(eventName: Swift.String, arguments: [Swift.String : Any]) + @objc override dynamic public init() + @objc deinit +} @objc(FBSDKPaymentObserver) final public class _PaymentObserver : ObjectiveC.NSObject, FBSDKCoreKit._PaymentObserving { @objc(initWithPaymentQueue:paymentProductRequestorFactory:) public init(paymentQueue: StoreKit.SKPaymentQueue, paymentProductRequestorFactory: FBSDKCoreKit._PaymentProductRequestorCreating) @objc(startObservingTransactions) final public func startObservingTransactions() @@ -422,11 +647,39 @@ extension FBSDKCoreKit._PaymentObserver : StoreKit.SKPaymentTransactionObserver @objc(initWithEventName:restrictiveParameters:) public init(eventName: Swift.String, restrictiveParameters: [Swift.String : Any]) @objc deinit } +@objcMembers @objc(FBSDKSKAdNetworkEvent) final public class _SKAdNetworkEvent : ObjectiveC.NSObject { + @objc final public let eventName: Swift.String? + @objc final public var values: [Swift.String : Swift.Double]? + @objc(initWithJSON:) public init?(json: [Swift.String : Any]) + @objc deinit +} @objcMembers @objc(FBSDKViewImpressionLogger) final public class _ViewImpressionLogger : ObjectiveC.NSObject, FBSDKCoreKit.ImpressionLogging { @objc(initWithEventName:) public init(eventName: FBSDKCoreKit.AppEvents.Name) @objc public static func retrieveLogger(with eventName: FBSDKCoreKit.AppEvents.Name) -> FBSDKCoreKit._ViewImpressionLogger @objc final public func logImpression(withIdentifier identifier: Swift.String, parameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]?) @objc deinit } +@objcMembers @objc(FBSDKWebDialog) final public class _WebDialog : ObjectiveC.NSObject { + @objc final public var shouldDeferVisibility: Swift.Bool + @objc weak final public var delegate: FBSDKCoreKit.WebDialogDelegate? + @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreFoundation.CGRect = .zero, path: Swift.String? = nil) + @objc convenience public init(name: Swift.String) + @objc final public func show() + @objc deinit +} +extension FBSDKCoreKit._WebDialog : FBSDKCoreKit.WebDialogViewDelegate { + @objc final public func webDialogView(_ webDialogView: FBSDKCoreKit.FBWebDialogView, didCompleteWithResults results: [Swift.String : Any]) + @objc final public func webDialogView(_ webDialogView: FBSDKCoreKit.FBWebDialogView, didFailWithError error: Swift.Error) + @objc final public func webDialogViewDidCancel(_ webDialogView: FBSDKCoreKit.FBWebDialogView) + @objc final public func webDialogViewDidFinishLoad(_ webDialogView: FBSDKCoreKit.FBWebDialogView) +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKWebViewFactory) final public class _WebViewFactory : ObjectiveC.NSObject, FBSDKCoreKit._WebViewProviding { + @objc final public func createWebView(frame: CoreFoundation.CGRect) -> FBSDKCoreKit.WebView + @objc override dynamic public init() + @objc deinit +} +extension FBSDKCoreKit.Profile.PictureMode : Swift.Equatable {} +extension FBSDKCoreKit.Profile.PictureMode : Swift.Hashable {} +extension FBSDKCoreKit.Profile.PictureMode : Swift.RawRepresentable {} extension FBSDKCoreKit.LoginTooltipError : Swift.Equatable {} extension FBSDKCoreKit.LoginTooltipError : Swift.Hashable {} diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index a9d4935b..092993a6 100644 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 1eb1e0e1..67e30f1e 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import AdSupport import AuthenticationServices import FBAEMKit @@ -12,6 +13,7 @@ import StoreKit import Swift import UIKit import _Concurrency +import _StringProcessing extension FBSDKCoreKit.AccessToken { public var permissions: Swift.Set { get @@ -133,22 +135,20 @@ extension FBSDKCoreKit.AccessToken { @objc func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) @objc func recordEvent(_ parameters: [Swift.String : Any]) } -@_inheritsConvenienceInitializers @available(tvOS, unavailable) -@objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { +@_inheritsConvenienceInitializers @objcMembers @objc final public class CoreUIApplication : ObjectiveC.NSObject { @objc public static let shared: FBSDKCoreKit._InternalURLOpener @objc override dynamic public init() @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKIcon) open class FBIcon : ObjectiveC.NSObject { - @objc open func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? - @objc public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, scale: CoreGraphics.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? + @objc open func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? + @objc public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? + @objc public func image(size: CoreFoundation.CGSize, scale: CoreFoundation.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? @objc override dynamic public init() @objc deinit } -@_inheritsConvenienceInitializers @available(tvOS, unavailable) -@objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKProfilePictureView) @_Concurrency.MainActor(unsafe) final public class FBProfilePictureView : UIKit.UIView { @objc @_Concurrency.MainActor(unsafe) final public var pictureMode: FBSDKCoreKit.Profile.PictureMode { @objc get @objc set @@ -157,22 +157,23 @@ extension FBSDKCoreKit.AccessToken { @objc get @objc set } - @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreGraphics.CGRect { - @_Concurrency.MainActor(unsafe) @objc get - @_Concurrency.MainActor(unsafe) @objc set + @_Concurrency.MainActor(unsafe) @objc override final public var bounds: CoreFoundation.CGRect { + @objc get + @objc set } @_Concurrency.MainActor(unsafe) @objc override final public var contentMode: UIKit.UIView.ContentMode { - @_Concurrency.MainActor(unsafe) @objc get - @_Concurrency.MainActor(unsafe) @objc set + @objc get + @objc set } - @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreGraphics.CGRect, profile: FBSDKCoreKit.Profile? = nil) + @objc(initWith:profile:) @_Concurrency.MainActor(unsafe) public init(frame: CoreFoundation.CGRect, profile: FBSDKCoreKit.Profile? = nil) @objc(initWithProfile:) @_Concurrency.MainActor(unsafe) convenience public init(profile: FBSDKCoreKit.Profile? = nil) - @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreGraphics.CGRect) + @objc(initWithFrame:) @_Concurrency.MainActor(unsafe) override dynamic public init(frame: CoreFoundation.CGRect) @objc(initWithCoder:) @_Concurrency.MainActor(unsafe) required dynamic public init?(coder: Foundation.NSCoder) @objc @_Concurrency.MainActor(unsafe) final public func setNeedsImageUpdate() @objc deinit } public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager +public typealias CAPIGBlock = (Swift.Bool) -> Swift.Void @objc @_inheritsConvenienceInitializers @objcMembers final public class FBSDKAppEventsCAPIManager : ObjectiveC.NSObject, FBSDKCoreKit.CAPIReporter { @objc public static let shared: FBSDKCoreKit.FBSDKAppEventsCAPIManager @objc override dynamic public init() @@ -193,7 +194,7 @@ public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager } @objc override dynamic public init() @objc public func configure(datasetID: Swift.String, url: Swift.String, accessKey: Swift.String) - @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any]) + @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any], userAgent: Swift.String) @objc deinit } final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @@ -201,6 +202,10 @@ final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { @objc final public func createKeychainStore(service: Swift.String, accessGroup: Swift.String?) -> FBSDKCoreKit.KeychainStoreProtocol @objc deinit } +@objc(FBSDKMACARuleMatching) public protocol MACARuleMatching { + @objc func enable() + @objc func processParameters(_ params: Foundation.NSDictionary?, event: Swift.String?) -> Foundation.NSDictionary? +} public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { case publicProfile case userFriends @@ -266,7 +271,7 @@ extension FBSDKCoreKit.Profile { get } } - @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreGraphics.CGSize) -> Foundation.URL? + @objc(imageURLForPictureMode:size:) final public func imageURL(forMode pictureMode: FBSDKCoreKit.Profile.PictureMode, size: CoreFoundation.CGSize) -> Foundation.URL? } extension FBSDKCoreKit.Profile { @objc(loadCurrentProfileWithCompletion:) public static func loadCurrentProfile(completion: FBSDKCoreKit.ProfileBlock?) @@ -347,7 +352,7 @@ extension FBSDKCoreKit.Settings { @objc final public var defaultGraphAPIVersion: Swift.String { @objc get } - @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreGraphics.CGFloat { + @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreFoundation.CGFloat { @objc get @objc set } @@ -518,7 +523,6 @@ public enum DialogConfigurationName { public static let message: Swift.String public static let share: Swift.String } -@available(tvOS, unavailable) public struct ShareDialogConfiguration { public init() public var defaultShareMode: Swift.String? { @@ -533,6 +537,7 @@ public struct ShareDialogConfiguration { @objc static func setConversionFilteringEnabled(_ isEnabled: Swift.Bool) @objc static func setCatalogMatchingEnabled(_ isEnabled: Swift.Bool) @objc static func setAdvertiserRuleMatchInServerEnabled(_ isEnabled: Swift.Bool) + @objc static func handle(_ url: Foundation.URL?) } extension FBAEMKit.AEMReporter : FBSDKCoreKit._AEMReporterProtocol { } @@ -595,12 +600,12 @@ extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPr @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCloseIcon) final public class _FBCloseIcon : ObjectiveC.NSObject { - @objc final public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? + @objc final public func image(size: CoreFoundation.CGSize) -> UIKit.UIImage? @objc override dynamic public init() @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLogo) final public class _FBLogo : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? @objc override dynamic public init() @objc deinit } @@ -613,7 +618,7 @@ extension FBSDKCoreKit._BridgeAPI : AuthenticationServices.ASWebAuthenticationPr @objc deinit } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKHumanSilhouetteIcon) final public class _HumanSilhouetteIcon : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? + @objc override final public func path(with size: CoreFoundation.CGSize) -> CoreGraphics.CGPath? @objc override dynamic public init() @objc deinit } @@ -657,7 +662,7 @@ extension FBSDKCoreKit._PaymentObserver : StoreKit.SKPaymentTransactionObserver @objcMembers @objc(FBSDKWebDialog) final public class _WebDialog : ObjectiveC.NSObject { @objc final public var shouldDeferVisibility: Swift.Bool @objc weak final public var delegate: FBSDKCoreKit.WebDialogDelegate? - @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreGraphics.CGRect = .zero, path: Swift.String? = nil) + @objc public init(name: Swift.String, parameters: [Swift.String : Swift.String]?, webViewFrame: CoreFoundation.CGRect = .zero, path: Swift.String? = nil) @objc convenience public init(name: Swift.String) @objc final public func show() @objc deinit @@ -669,7 +674,7 @@ extension FBSDKCoreKit._WebDialog : FBSDKCoreKit.WebDialogViewDelegate { @objc final public func webDialogViewDidFinishLoad(_ webDialogView: FBSDKCoreKit.FBWebDialogView) } @_inheritsConvenienceInitializers @objcMembers @objc(FBSDKWebViewFactory) final public class _WebViewFactory : ObjectiveC.NSObject, FBSDKCoreKit._WebViewProviding { - @objc final public func createWebView(frame: CoreGraphics.CGRect) -> FBSDKCoreKit.WebView + @objc final public func createWebView(frame: CoreFoundation.CGRect) -> FBSDKCoreKit.WebView @objc override dynamic public init() @objc deinit } diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/module.modulemap b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/module.modulemap index f951cee0..0680aff1 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/module.modulemap +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/module.modulemap @@ -6,6 +6,6 @@ framework module FBSDKCoreKit { } module FBSDKCoreKit.Swift { - header "FBSDKCoreKit-Swift.h" - requires objc + header "FBSDKCoreKit-Swift.h" + requires objc } diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeDirectory b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeDirectory new file mode 100644 index 00000000..e451b26c Binary files /dev/null and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeDirectory differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeRequirements b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeRequirements new file mode 100644 index 00000000..dbf9d614 Binary files /dev/null and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeRequirements differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeRequirements-1 b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeRequirements-1 new file mode 100644 index 00000000..e1ee7499 Binary files /dev/null and b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeResources b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeResources index 00314be4..8330a78b 100644 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeResources +++ b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeResources @@ -4,6 +4,10 @@ files + Headers/FBSDKAEMManager.h + + Yj5aPKxlx+gRF70J6qlF3vXE4mk= + Headers/FBSDKATEPublisherCreating.h HCKpYddhfbeOKPVi+PyxpQEl/Sw= @@ -82,11 +86,11 @@ Headers/FBSDKAppEventsConfiguring.h - 3xZDGCRx9i/mb5l3w5mi5yRC1b0= + vLCgc1EenGOlUV7TqFKOMR2SIvM= Headers/FBSDKAppEventsDeviceInfo.h - AOT2KxgIf9QNXM8dP6Biz1GohZU= + lxNBU5JbE1EzvJILyZqG6AfaTjU= Headers/FBSDKAppEventsFlushBehavior.h @@ -102,7 +106,7 @@ Headers/FBSDKAppEventsParameterProcessing.h - kyJmkHdvNcJrZrTL9vhuJLzossg= + lSEA6VeT3RQ/9OIKlCWKuogT/fc= Headers/FBSDKAppEventsReporter.h @@ -130,7 +134,7 @@ Headers/FBSDKAppEventsUtilityProtocol.h - B92A9n5nK+eW2zqCL/7Wnm44kqQ= + w++q3FMjWosIk0QoN6chRjfvng8= Headers/FBSDKAppLinkCreating.h @@ -232,6 +236,10 @@ zDTRRbEFRongbmR9iUSO35PCbhs= + Headers/FBSDKAutoSetup.h + + ZrZsPjcuQHmtIb0VA/2JxYjo0Bk= + Headers/FBSDKBridgeAPIProtocol.h tLjX3wSZTxU3/edMWI3RtKPsv+A= @@ -294,15 +302,15 @@ Headers/FBSDKCoreKit-Swift.h - n2964vV58yxGdO1yselrCvElzYo= + jGAs0yHQhkgQVeEsGRW3ZOQzKMA= Headers/FBSDKCoreKit.h - NzyPajYS+MbRN9lkLeOOXWCF7aU= + Jsrlxil9MFCYDnKBZlD23Xn+4IA= Headers/FBSDKCoreKitVersions.h - Gf0IjCE1D3g5hMXVZM2QlVDIWqg= + GYna3ZEW1ZZckHVZ33U8fTQRZnI= Headers/FBSDKCrashObserver.h @@ -316,17 +324,9 @@ 2KTIgp4tO9oDInYHDKE4PkSZtuo= - Headers/FBSDKDeviceDialogView.h - - S5gTg7o6KRYGlXEXHFmdw6g1gNw= - Headers/FBSDKDeviceInformationProviding.h - 3+cqw5KcT8s8WjJEM521e1sJaQk= - - Headers/FBSDKDeviceViewControllerBase.h - - Ek0UvT0wVyIfiMyquI5e1G5PRmg= + niQvYxBUmUJacylI3yqRhyzFK5Y= Headers/FBSDKDialogConfiguration.h @@ -390,7 +390,7 @@ Headers/FBSDKFeature.h - AVSp3DCyIilpMbS1GwuTyR6Ds30= + Ni2ngv4Ol38UQ6jsS8uQKwF32pA= Headers/FBSDKFeatureChecking.h @@ -650,7 +650,7 @@ Headers/FBSDKRestrictiveDataFilterManager.h - FAJ1OhsZC8A6rE672mgzHs6ryVM= + FhBIBCgefnNx6Hx9hBvjEQxlgTk= Headers/FBSDKRulesFromKeyProvider.h @@ -662,7 +662,7 @@ Headers/FBSDKServerConfiguration.h - pnkpYZNDaRSznKnX+dt14h3hg9E= + RYI0UXlgPIsiOA6XYUAwFpiCST0= Headers/FBSDKServerConfigurationManager.h @@ -838,41 +838,72 @@ Info.plist - an5/X/yNDeRSqlfD6gXMv3cqMgo= + LH4Ux1I41umEuVii4Cef5NzfXCI= + + Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.abi.json + + rFb7gfyrZpV1HqB4Kls67SYGw6k= + + Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + +GU5gBQfJX0ZEJ/EbL98yBHA9I4= Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc - sslXO5+5L7Q1riaPs29DDMsAR1c= + vleBA2LNKEA9bqKyygB84o7ibik= Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface - zOIjHnLyHQjpX1BLeAqK8OzL2A0= + +GU5gBQfJX0ZEJ/EbL98yBHA9I4= Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule - 51W4m3FLpA3qYs77xaNge8Myavc= + 9LZk9z9DT4kGmVwTvIsl3ZBEf/I= + + Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.abi.json + + rFb7gfyrZpV1HqB4Kls67SYGw6k= + + Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + wbLGZjKmrOSfjlu94xUhZSFwgUw= Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - M2bgTWI06m4KQRf9J5NB3aLDtno= + hOlI1tyeptO0z1GXBajoQNo1TR4= Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - y46KhNNs2BAHPLrC6nHX4JFcw+U= + wbLGZjKmrOSfjlu94xUhZSFwgUw= Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - BMs1TS4FrNuZsHZpmxnVsqzybiA= + Xgn+mbht7912vJH9vcatEuPYhkM= Modules/module.modulemap - dqxVNYXT9nBvFc3sI+M8nUrDXuA= + 130ouJhMpZj1Z376F5gsUfoyxyc= files2 + Headers/FBSDKAEMManager.h + + hash + + Yj5aPKxlx+gRF70J6qlF3vXE4mk= + + hash2 + + RRWu3ofQe/GuFslThfnBEdL+ks4YVUnKAckD+t6Kw78= + + Headers/FBSDKATEPublisherCreating.h + hash + + HCKpYddhfbeOKPVi+PyxpQEl/Sw= + hash2 4DAoEwvpFC6T6PC5EJZwpa4Ey+A8LZo6rz/k/078BUM= @@ -880,6 +911,10 @@ Headers/FBSDKATEPublisherFactory.h + hash + + o4BqZ5pce+E7bPPdIkkE30cwTuI= + hash2 cW1M/vPKiBNWmJ+XzS8iFtLl9s1+5ahOBCQWQ33lFfA= @@ -887,6 +922,10 @@ Headers/FBSDKAccessToken.h + hash + + 52NScPmZOyhPECDbdwVz3SgFfnU= + hash2 oFHJEVxEJrVA9Y7bNOjGQZ28+CrbY+rbVTIA+GC3LWs= @@ -894,6 +933,10 @@ Headers/FBSDKAccessTokenProviding.h + hash + + 8ssoFJOvhs7F3QcUOp076HcFlTA= + hash2 ttnRwTC/lx3T/wwxDPI/n0tOC8tMavvDSKnOHYtwmJ0= @@ -901,6 +944,10 @@ Headers/FBSDKAdvertiserIDProviding.h + hash + + spPSWUz3WKLY8u+9ZEUgThNQTMY= + hash2 3TS/lxGjmXQaqCF4fgbFoM/w3nXircZe7UfQRibtXh0= @@ -908,6 +955,10 @@ Headers/FBSDKAdvertisingTrackingStatus.h + hash + + s2/tT+xSXPH4xXaQ+yW41JtgT58= + hash2 pj5HBFKU2AJRVkryxLDxsNyV+Hq0vhsL7ESLeXA7gco= @@ -915,6 +966,10 @@ Headers/FBSDKAppAvailabilityChecker.h + hash + + Wyf9l4OPVlNw4rmgihSwsLLXekY= + hash2 WCKAfRQSLZ76amGNcy7D85Zr0FqbK3yqgD2x9Q2KMVc= @@ -922,6 +977,10 @@ Headers/FBSDKAppEventDropDetermining.h + hash + + kuHhyp+2GLTjun17XfcnCE5AhEU= + hash2 L9oIxJipjM/MQk2hCZ2frITY+t5sCEXfXwbMQZJm5P4= @@ -929,6 +988,10 @@ Headers/FBSDKAppEventName.h + hash + + 07b3Q5GK1Tcy4tddROpfhlXqIZY= + hash2 IbaSicmcV89DKoSmNOXsRxZa9tNM9O/AnRwQMF1wQrM= @@ -936,6 +999,10 @@ Headers/FBSDKAppEventParameterName.h + hash + + jMPwz6fdms/XUiUDkGZXO8LsEPs= + hash2 P5BcIc7FNHua2MKnE3mmflQlvvdqk25zXugjGZGRhJk= @@ -943,6 +1010,10 @@ Headers/FBSDKAppEventParameterProduct.h + hash + + r+KeRcYNIPkXBrMbyUHT2wI7s9Y= + hash2 FIPXmw+JMv7bBSbF0zhfVC2Ib03Sx9JYrwjlNp1XInI= @@ -950,6 +1021,10 @@ Headers/FBSDKAppEventParameterValue.h + hash + + 040yhBlHKamIDlwNu0ImpgLTCqc= + hash2 Q2olYJJI/DN976h566Nwy3D+obhtAQAKHOJ5lKeTfm8= @@ -957,6 +1032,10 @@ Headers/FBSDKAppEventParametersExtracting.h + hash + + 9pOtxV2/CHu04fcr39VsN+sfZ+s= + hash2 BdY6x122D6MPzxunayL68o6siMnk1pbG9+SIttD3Er0= @@ -964,6 +1043,10 @@ Headers/FBSDKAppEventUserDataType.h + hash + + A3lEI7gxtNx4AHoXWeE0s7u1zK8= + hash2 7pjsRgcXBeV8tJeLjrQvQ/3ZBmzY9k086Z46TsArMag= @@ -971,6 +1054,10 @@ Headers/FBSDKAppEvents.h + hash + + SL8q6r3LX7NML3rTd5Ww+Q1D63k= + hash2 JHjQehs8qf1edGakmK1Z/sUwAiVGmG1fGWJ0Vj/vtsA= @@ -978,6 +1065,10 @@ Headers/FBSDKAppEventsConfiguration.h + hash + + CsclPdVYbZT/d3vyIc3T73E3GWM= + hash2 12Q0lH0ENEJ3QHnAx0iNZI2iSHDqHghwhm4R6NJU5OA= @@ -985,6 +1076,10 @@ Headers/FBSDKAppEventsConfigurationManager.h + hash + + ANbr0kXkjHZjFTN/QfFH+kdJmYI= + hash2 9Hd2vCTkBhdhGl2O0GrDnmf5Dk+9LGUCubPXDNOSj9M= @@ -992,6 +1087,10 @@ Headers/FBSDKAppEventsConfigurationProtocol.h + hash + + i0NY+J4ygH/XbFXvvUo0/vgSW1k= + hash2 Ytel7wjTc1/St9RwbbKygzhhgJo6bOhIkanOGTl8BWI= @@ -999,6 +1098,10 @@ Headers/FBSDKAppEventsConfigurationProviding.h + hash + + Q6UHSFjjvfBNsl6lIgbm+E/xdvg= + hash2 Sxr+A8kVMuZThRbBh4I4DH8boozZFBrhAwev32Vh5Hw= @@ -1006,20 +1109,32 @@ Headers/FBSDKAppEventsConfiguring.h + hash + + vLCgc1EenGOlUV7TqFKOMR2SIvM= + hash2 - x5C/reqxwAtsM0s8vWoVJiD7gd4zRTTPQxeIg4J5bDU= + TBPqDviEQ5e7DxwXOqrXJUISxZ7b8ombjqiyHOCTpes= Headers/FBSDKAppEventsDeviceInfo.h + hash + + lxNBU5JbE1EzvJILyZqG6AfaTjU= + hash2 - hQpq3SMYZtXgV9zIP/PCCQUzV4e+HhgfZ7bnChgFqPI= + Yg0xP3sqqEBYBW2Xd/ml9h4+VE5EC85H+p8ZitKXIHA= Headers/FBSDKAppEventsFlushBehavior.h + hash + + tGoQfvz6uAy5DjnhPnzX/Ai2vl4= + hash2 iUxqEKL4pmF7f47Qul2Oe8QI0MjDPnOn3VhWjVQWe90= @@ -1027,6 +1142,10 @@ Headers/FBSDKAppEventsFlushReason.h + hash + + CVXh0F8QRsx+pTFSV0t8r1QBBAQ= + hash2 z4aL5e8KYk3I9292BbvFVfL7VvGSXi8r1ULbNY9qC+o= @@ -1034,6 +1153,10 @@ Headers/FBSDKAppEventsNotificationName.h + hash + + y7c3PKWx/w77oSbeugClHIvTMS8= + hash2 7JmzpHhHPCXS4WcGYrhN2g1u5YXUgR/ltWdRyfv8l0I= @@ -1041,13 +1164,21 @@ Headers/FBSDKAppEventsParameterProcessing.h + hash + + lSEA6VeT3RQ/9OIKlCWKuogT/fc= + hash2 - Hh/ftLatxrxdg6JLHUHXij8MNITHHHkWpAx3+fQWWEg= + pCHyiWkvDhXpHUHpcTQYsXWk6DNMxor1yUXbLb1zJoM= Headers/FBSDKAppEventsReporter.h + hash + + j2aR5673Kbc66xveJIq2h8rsKLk= + hash2 wg1FOXDGXyIdKy7bYj+hrqcKxtTG/paGmTO6QAjIyZ0= @@ -1055,6 +1186,10 @@ Headers/FBSDKAppEventsState.h + hash + + GeLYTkB6KF0pJhMf3EGqH/Sr9QM= + hash2 ddxD44Pj0UBj4Pw1GV61mCMahvKYawuiFhg2LfvRUCI= @@ -1062,6 +1197,10 @@ Headers/FBSDKAppEventsStateManager.h + hash + + 1npaFG2cN1/3fD1rD7gXkZmnUbI= + hash2 QFynSzFRj8ZNs48YxDNrvOzNjk/5/TKdEvOpAV6gfAo= @@ -1069,6 +1208,10 @@ Headers/FBSDKAppEventsStatePersisting.h + hash + + oylwsOMHWTY2ag3rphOgwSAfz7c= + hash2 89C3WF44BG25E9QGywyeFSIhzSN3vIZ8j0Cf1zBc7Nw= @@ -1076,6 +1219,10 @@ Headers/FBSDKAppEventsStateProviding.h + hash + + KzGafbBYik5zyGw1bm76HKS7Tc0= + hash2 /cQous3za5Y8sBNc9gJnSblGnlcQJNisDkxD0q+XHUg= @@ -1083,6 +1230,10 @@ Headers/FBSDKAppEventsUtility.h + hash + + 5vrPi5Z7t//eIoz9u9sQrS88V8E= + hash2 pGuB3yod13iFDnnyRtuUuYaX7VHyqUUmVwj8DUHOU1Q= @@ -1090,13 +1241,21 @@ Headers/FBSDKAppEventsUtilityProtocol.h + hash + + w++q3FMjWosIk0QoN6chRjfvng8= + hash2 - GqSDBtnO6Rl9YeKVM4HW9KL0ei1VQnXIZ4Z4Ucg6Frc= + 5XYISqTXIOZPBrYNgUjayHCm4HMFKWuvcjLD+DYj3GA= Headers/FBSDKAppLinkCreating.h + hash + + nqhYr/0Yijl6YG6zjg69DkIZMdo= + hash2 TIES03/iWapcNCC9q93neFaUJvaUs7+RvhH7EO++7NE= @@ -1104,6 +1263,10 @@ Headers/FBSDKAppLinkEventPosting.h + hash + + Unlyk7QfK8RMiwI6wrySVV1IWP4= + hash2 ynWClusbalHB6D8+QrD6JmUW1Gr2JdcsDTxToJtiJ/I= @@ -1111,6 +1274,10 @@ Headers/FBSDKAppLinkNavigationBlock.h + hash + + 1PU/0JKCKzJJV3POVzX50kAFA0o= + hash2 JmQsfAZrZwAJH5qlBBRvvfzK10IKeqMWfuyED+KYNmU= @@ -1118,6 +1285,10 @@ Headers/FBSDKAppLinkNavigationType.h + hash + + 3fSnRUTotphysdDrdAvLMxLPW+k= + hash2 hwFJL88C4bRrHRe3Y4ljnl5aCOTIvPg7Oqmz7nhwygo= @@ -1125,6 +1296,10 @@ Headers/FBSDKAppLinkProtocol.h + hash + + FaTKQ3PKUnwjWoYivjhBcoWCvf8= + hash2 4DXqK//wHh7BOXM1el/fpSnI2itx5Xvq5U9scd3DtTE= @@ -1132,6 +1307,10 @@ Headers/FBSDKAppLinkResolverRequestBuilding.h + hash + + SXBVCFpg1usB96KY2Km7m8BU4PQ= + hash2 e+6RKqsAlhAYxmTXpFwikKmionJN86SP5HKrZXbAkNs= @@ -1139,6 +1318,10 @@ Headers/FBSDKAppLinkResolving.h + hash + + vW0iP2TWioh9F2xVFhjb96AWH/M= + hash2 qb3BIqDSak/QEJVHaa0UyJE2SIhRWJTvILOUETHKNbU= @@ -1146,6 +1329,10 @@ Headers/FBSDKAppLinkTargetCreating.h + hash + + CSjhIDvr2Fy0xL6BAuVxNcPFzdg= + hash2 YPM7wFIveXtTUS5N5/9q/A437m7KU0YQ6H6B206u6R4= @@ -1153,6 +1340,10 @@ Headers/FBSDKAppLinkTargetProtocol.h + hash + + KjpJOKaE7Hu4fZ/kcuexDfd7h/E= + hash2 xRIohRLTU/DyWAlvJeGXzuTsyj3d0Pb9Erqu0nLl2Qo= @@ -1160,6 +1351,10 @@ Headers/FBSDKAppLinkURL.h + hash + + QygAk/iNI8C9zeo9e0YUgaIWY7g= + hash2 GAKSBD0rwQ0puEpcq+BbmYBTAYi4nS6GrhNxJ1vQoKQ= @@ -1167,6 +1362,10 @@ Headers/FBSDKAppLinkURLCreating.h + hash + + oN/+vlRMv1IvKkWrsh+VtDwu92U= + hash2 sKw0E6SLYUeeNW0wOHnRp9kQIhstniWV4X8zLvnmzVU= @@ -1174,6 +1373,10 @@ Headers/FBSDKAppLinkURLKeys.h + hash + + 9Ke3NaIqqmJ0mx/UMz1Vw+/X9hA= + hash2 Up9j6FGSd/tWYjJkFp+P1BcOj9PPjDtXZlpdfizgL4s= @@ -1181,6 +1384,10 @@ Headers/FBSDKAppLinkUtility.h + hash + + CSxGCvSd3TFNsqT26linPXGDWM4= + hash2 kp2CnE92bsV1FLjTg72fYgYnBgr5Jsp2QEI1Efop6JQ= @@ -1188,6 +1395,10 @@ Headers/FBSDKAppLinkVersion.h + hash + + 4lyPD97ZcXbRvhIigNtr3LGnzKo= + hash2 ApoRkmalk5WwUDAjytM+t8cyZVllZTYJC92Fbu0c22s= @@ -1195,6 +1406,10 @@ Headers/FBSDKAppLinksBlock.h + hash + + TPb6CeLZPTcgS7hT6GviE2JRz4k= + hash2 ummPfWNsfoi+QpV6yx2bMpP5IvBHvQkfcON2myGbUy4= @@ -1202,6 +1417,10 @@ Headers/FBSDKAppStoreReceiptProviding.h + hash + + YAWUu9gn0hfRwdt2dscR4Pjncb0= + hash2 x7PPCf3qyw2K0DAl7af8aPMLzR2TVekwBP1nj0J4Ro4= @@ -1209,6 +1428,10 @@ Headers/FBSDKAppURLSchemeProviding.h + hash + + G7H5ArEaw56tAdukKkeFnHJW3yM= + hash2 o9vW113QSBrXeTu8w1RgrMfMpi3Li+ZHpavPt/xYGa4= @@ -1216,6 +1439,10 @@ Headers/FBSDKApplicationActivating.h + hash + + oHcGo1IxNL4whFjkCAqY0Bezu1A= + hash2 N3sSrIIH8n9PUXaO6Ko042/wGj7FjgmjMz09LpHRsKk= @@ -1223,6 +1450,10 @@ Headers/FBSDKApplicationLifecycleNotifications.h + hash + + HZOemKjr7HIyL3ND764s1sIhRdA= + hash2 gVCQIdprFkqHFWN03C0LuQuv1i9nrhtP3G3t03o3SUM= @@ -1230,6 +1461,10 @@ Headers/FBSDKApplicationLifecycleObserving.h + hash + + tM9oT+qXMwjCWeGffrZ/7pU9dhk= + hash2 wPjg8wCzbmbbm8y0dJZMh/wce2hP0UMVUsa2oZnCv6E= @@ -1237,6 +1472,10 @@ Headers/FBSDKApplicationObserving.h + hash + + xJEwA88eDINbA4Kq2mRmWsoZVaE= + hash2 jUSJX2r8mLJr8u+wAn2jLp571gJ3SriNQhCpnkSNEfw= @@ -1244,6 +1483,10 @@ Headers/FBSDKApplicationStateSetting.h + hash + + fy5bOvCaeEMdMssTZs5062vJuLs= + hash2 th4kWyfL9axOR4QeSZnS2+ff21hvfrJBKkVqOS9qpY4= @@ -1251,6 +1494,10 @@ Headers/FBSDKAuthenticationStatusUtility.h + hash + + NzmrmWDBawgvUzFKUTG4Zq+D8PQ= + hash2 eSjfSzpHEMWVAvxBo7bJWUgrhMNFvTx8WmBhyasQcEY= @@ -1258,6 +1505,10 @@ Headers/FBSDKAuthenticationToken.h + hash + + Hbt4TrpEQ1E7m0cPJVPJrvfOMYE= + hash2 hc6XPooa0mMb1VzLG43orpr9kKXVeMa+FrWuKr51KE0= @@ -1265,13 +1516,32 @@ Headers/FBSDKAuthenticationTokenProviding.h + hash + + zDTRRbEFRongbmR9iUSO35PCbhs= + hash2 mfib/LOFoh5fxGgumdwep5nNFARnqYaIQPovjFKmlwo= + Headers/FBSDKAutoSetup.h + + hash + + ZrZsPjcuQHmtIb0VA/2JxYjo0Bk= + + hash2 + + ex/CIuIAAIQMIaocCGblxTLzDaMcZuJvi3MU6lxdgM0= + + Headers/FBSDKBridgeAPIProtocol.h + hash + + tLjX3wSZTxU3/edMWI3RtKPsv+A= + hash2 o6EBabARMQ/jGNCu0KhpTrBsI6PnWr6akob4aCraUv4= @@ -1279,6 +1549,10 @@ Headers/FBSDKBridgeAPIProtocolType.h + hash + + DblZg5KWlfoY7uhozPWbR8A+C+Q= + hash2 A5XYnc2oBVddlLz3wGiibtMvO6i/A+82gXL5XY+AsgA= @@ -1286,6 +1560,10 @@ Headers/FBSDKBridgeAPIRequest.h + hash + + 9p88MKTDxjMSnhRmD3tBUBpyKP0= + hash2 /2BV782KXKlCMETLnCxG2DLQWT+tVDZ/Ijo516KxeVY= @@ -1293,6 +1571,10 @@ Headers/FBSDKBridgeAPIRequestCreating.h + hash + + fSrgRjXiEf48iO5SW4tUzCK4Dfw= + hash2 NX+gToQ0lPJ7TSH2qMy4mIDEYMYzkZhwyZbP0XvC1iI= @@ -1300,6 +1582,10 @@ Headers/FBSDKBridgeAPIRequestOpening.h + hash + + 0yprixA39qr6F++QUQmDaS+kI5c= + hash2 RkLNO6zfPQbD2c3NWSSdmM3tTFBY3GPfYgBqxAleaf8= @@ -1307,6 +1593,10 @@ Headers/FBSDKBridgeAPIRequestProtocol.h + hash + + QvIJ69YhObUzXyvQTDogepJbLIY= + hash2 zXyn4IrEQSs/K0vIuWaHZHWeYSHJfjrS2xjq3hrHThs= @@ -1314,6 +1604,10 @@ Headers/FBSDKBridgeAPIResponse.h + hash + + 0xHREU5UN9V2806Plbv9YnZCtvo= + hash2 VpEoCY99wbTWk0mTFsof9zSkSb9JK0bc0ty0LHM0GGE= @@ -1321,6 +1615,10 @@ Headers/FBSDKButton.h + hash + + nRauGR6uRcDNSlw5mNra+SReMhI= + hash2 3PYcJgi9ksT3Oh7qkXSmtIZ4zC05ftjnedLkaQyiEEc= @@ -1328,6 +1626,10 @@ Headers/FBSDKButtonImpressionLogging.h + hash + + LsVpQhR6smaHCPnF/ITEWiKGkKA= + hash2 pShKA3myYUve8S5W/TI08BTWmhPh0RgoZQ6lY9c5S9g= @@ -1335,6 +1637,10 @@ Headers/FBSDKClientTokenProviding.h + hash + + W+JNLAn4YexFixxEQGR3Q9RH0KI= + hash2 GvqZ0xNKA6tPwu3fX7MjAlOAhByiiNjI7PR4KRn+IbU= @@ -1342,6 +1648,10 @@ Headers/FBSDKCodelessIndexer.h + hash + + ua4gDNRjw0KAFXM4vqI1AxIhmgQ= + hash2 FcsOP37OoWFHJHceDyLXTSnifB7NTvxbg8l+Ea2N7KE= @@ -1349,6 +1659,10 @@ Headers/FBSDKCodelessIndexing.h + hash + + vvo1NJ1mTuIU5ZOEX1L9qWcyo+s= + hash2 pLXLVKuG6Qa9BS6uHD2G6ofjKsDr28Rz0u2tNx1QKBM= @@ -1356,6 +1670,10 @@ Headers/FBSDKConstants.h + hash + + D8KfnDhhBY1wExKSXz3swq16lTE= + hash2 FhwOaPhmdYaDveEEpkZpS+FYAManp/GC+vHLW+hAU6A= @@ -1363,6 +1681,10 @@ Headers/FBSDKContainerViewController.h + hash + + U4pg9nowPmFOUC9fvIpLijlN6fg= + hash2 29xbe5Cc1TOVvV8YSvMCywrkYejv/ToTkWJXi96mSh0= @@ -1370,6 +1692,10 @@ Headers/FBSDKConversionValueUpdating.h + hash + + tVm8eFtv5wqn2YrSeXuGtSfgvg4= + hash2 5E8XPutqDSDuiYYe0JSrgVtDG/toGn2z1kD+4FzcjN0= @@ -1377,27 +1703,43 @@ Headers/FBSDKCoreKit-Swift.h + hash + + jGAs0yHQhkgQVeEsGRW3ZOQzKMA= + hash2 - lwDsWa4Axffjio+4WUz/CZs/32jMJpxsatQDxG8/aJc= + Z1dpc7FKWNI29p12wLncWxWejnOwqnFyOe8GCLuSY3M= Headers/FBSDKCoreKit.h + hash + + Jsrlxil9MFCYDnKBZlD23Xn+4IA= + hash2 - 8BgyKic5tlOlaz1aqPqUflVfvHCMI/KEAkiuqIF9am4= + HQ5NkLp3cIax6APKr1JvEl9LMyMVbYmvh2ITMrxyJew= Headers/FBSDKCoreKitVersions.h + hash + + GYna3ZEW1ZZckHVZ33U8fTQRZnI= + hash2 - pYn5q/zPxrVGrnk9V1iUYdwAIGNNZ0CRI5THFfiM0HU= + z4UQLBxeswftuVxkMbLKOrV3AtRVh+JHauNJdxsYZsc= Headers/FBSDKCrashObserver.h + hash + + i5LsrVb8OhFQsCQv02NggyWl4qk= + hash2 VLAJlXn/MRpH+6S2wXiJ2MMHTkHfS7Iiq8J4ETcBHo0= @@ -1405,6 +1747,10 @@ Headers/FBSDKCrashShield.h + hash + + 488qfAna0UU+EgR6ICrzMNPuE+Y= + hash2 wrUKA5GCwCODrnCFSkEOYMuhWsXWs+v3tqHYUpWF3JE= @@ -1412,34 +1758,32 @@ Headers/FBSDKDataProcessingOptionKey.h - hash2 + hash - N45K4T1fNjF4+O/UVhpkoNMCpF0tstXjwLVZpz1m/E0= + 2KTIgp4tO9oDInYHDKE4PkSZtuo= - - Headers/FBSDKDeviceDialogView.h - hash2 - iKW1ZrMsoImJAXe+icRWx7HghfksByJiJKxiErudJTU= + N45K4T1fNjF4+O/UVhpkoNMCpF0tstXjwLVZpz1m/E0= Headers/FBSDKDeviceInformationProviding.h - hash2 + hash - s8EkAVAv6h26gfb/l1Q1SkelW9JA5mFmKroeMC+iC1M= + niQvYxBUmUJacylI3yqRhyzFK5Y= - - Headers/FBSDKDeviceViewControllerBase.h - hash2 - /vhDk0BkrcnZ0HGw4V/wB9ZMWp8TkPnrq/xo8/ZCKj4= + IJXk7fQRgQBewAcMjEsddHB9W+plE/8Y9akiUQvQz0o= Headers/FBSDKDialogConfiguration.h + hash + + BkHb91/H2f5w4nnsjzWvACP+LO8= + hash2 sxJ8YoB2cRIbhfFUnxXIe0KRF4COPsi4Zlpo/qsKI/Q= @@ -1447,6 +1791,10 @@ Headers/FBSDKDialogConfigurationMapBuilding.h + hash + + 3JigPqy5HGPxZ1EfvLl6K2r09G4= + hash2 DoHcwC+ItwFyYXOM+3jsJKQDRSVYaPDdnK5QjYY6Bdg= @@ -1454,6 +1802,10 @@ Headers/FBSDKDynamicFrameworkLoaderProxy.h + hash + + gQze+1wXFmg8HHDE0Ba4/AdlSbk= + hash2 DKzc5A2VHGjb5zjiW11FfYE+be1Je5rxetWvpGpLWP8= @@ -1461,6 +1813,10 @@ Headers/FBSDKErrorConfiguration.h + hash + + t9pebtrwIlsvol930VzK/Afs/8E= + hash2 DhLqWnWnnr8IYmWabnEPwwtlgNNnXJV/K4weIvUDLz4= @@ -1468,6 +1824,10 @@ Headers/FBSDKErrorConfigurationProtocol.h + hash + + rWzO75a4AGVSBUj9usd195pV1pw= + hash2 +cf3Zndluf4/nH6CRo8QwhZjyyogyQr9rRGqFSJJ/Qw= @@ -1475,6 +1835,10 @@ Headers/FBSDKErrorConfigurationProvider.h + hash + + /NYL7EwesbS1Jj4zI5j/M36RrP4= + hash2 hujKKoeVm3HeeiIxu8JoiRbP5INzeD2/vMsdcL57FLM= @@ -1482,6 +1846,10 @@ Headers/FBSDKErrorConfigurationProviding.h + hash + + 8oEeLY1N7YRaIXucUhviYIeCeUA= + hash2 disBMqvoKxnyr7jUVHZSCd0dYEdLy+w18e3cMgW5INU= @@ -1489,6 +1857,10 @@ Headers/FBSDKErrorCreating.h + hash + + hSTHauBFdEYzYLgpazD8Nu2mbvA= + hash2 J1rXYSPoy877pIwlZKDP6n/b3DufexQeIl0pOymmYVY= @@ -1496,6 +1868,10 @@ Headers/FBSDKErrorRecoveryAttempting.h + hash + + woJpc0K7/L9yeXE4C+9IxIUoyNo= + hash2 W0d5bC9aorrzc9ohCQNpLCX0lFAN0NEWcKF8J0wW/rs= @@ -1503,6 +1879,10 @@ Headers/FBSDKErrorRecoveryConfiguration.h + hash + + ycgx9i+ACoXgcR7EKbYFYCxzlOg= + hash2 sxH7BnnlsngUMLwevQeegntSFKDRSmTEKtWhPQj/1Gs= @@ -1510,6 +1890,10 @@ Headers/FBSDKErrorReporter.h + hash + + mr/DzUsbnLVLYMNNABg7aaa45vw= + hash2 rcdsRdF/ar59iiIPHyagPto5zGT/Sxfh95CnVdi22+w= @@ -1517,6 +1901,10 @@ Headers/FBSDKErrorReporting.h + hash + + QPo2mKvh+gBY7bUYxLIRori3P84= + hash2 akNPfvBbZsCgwyqes5+H7hRxxdGAzyQYxlJqnkGK4hA= @@ -1524,6 +1912,10 @@ Headers/FBSDKEventLogging.h + hash + + L6nJnJNu/myQTc/c5cLNo6NnGoU= + hash2 FYa1ulMDCMfXCVRDa7WlspX+5kyUfFcu8Yf6tqIMQ/4= @@ -1531,6 +1923,10 @@ Headers/FBSDKEventProcessing.h + hash + + gp3AdngU5TgiopBE4rJMoR6ANSg= + hash2 XdMXEDfV+PUzUnWtYK5vvmDq15EbhKM7Msfu34hUKZ8= @@ -1538,6 +1934,10 @@ Headers/FBSDKEventsProcessing.h + hash + + AUgtiYeRjf/0lLNh6J0/4aBfbr4= + hash2 qUvzTb4JexU8FkfRFC0tmTGpbCwRUJ3UAPPKQ5Lo4tU= @@ -1545,13 +1945,21 @@ Headers/FBSDKFeature.h + hash + + Ni2ngv4Ol38UQ6jsS8uQKwF32pA= + hash2 - EREs7BOAZCDCqVF2KL7oc0InPbfVh+JN/YB04PPTl6E= + ZoXIOuibf9HNFId6ZWHwlL+hf9nAZz7gmsjUVKsUqiI= Headers/FBSDKFeatureChecking.h + hash + + rYTkx84W03mL0rrno4sthw6poiM= + hash2 QtYErERzFYGRmUpt4HXd8p062xQtrNl5l+J2nUhhc1k= @@ -1559,6 +1967,10 @@ Headers/FBSDKFeatureDisabling.h + hash + + 5RTMQMD5BH2IHczkFRDwcDa6YEc= + hash2 TKR1xKxgrd0N8JUx6kxkmWjLK07R7jMGOSWpnHlMoqA= @@ -1566,6 +1978,10 @@ Headers/FBSDKFeatureExtracting.h + hash + + rLjAEFGlg1SFdt3LKE/Vyvpy4C4= + hash2 9+2zhi+7pfcv33U40/OTdeLKZgpJVvbygggabihtg/Q= @@ -1573,6 +1989,10 @@ Headers/FBSDKFeatureExtractor.h + hash + + UpeejK9e6KddzNj4pJ/187IOAok= + hash2 kEO+YvkRcV483BfguxWKQ5uS0+Qmx3F3mL3dsHGkRks= @@ -1580,6 +2000,10 @@ Headers/FBSDKGateKeeperManager.h + hash + + UApODVoVBgYDmemuf8pq5KhSZ2A= + hash2 7mWH6MgxmutTpF+sXRQKlG6n5MLh4o5QHROkkRPhs1E= @@ -1587,6 +2011,10 @@ Headers/FBSDKGateKeeperManaging.h + hash + + MZUyM6YX2TAfccBQg6xiTBypZ18= + hash2 ZRWGI6azeE93UU6MLd4PVLDsl0+khZ9ajsIyRJrwYNU= @@ -1594,6 +2022,10 @@ Headers/FBSDKGraphErrorRecoveryProcessor.h + hash + + aNj/uzA6QMePztxIxRll77xHLIg= + hash2 wyEA5FnCIsiLQMekTMTbQfJgpsp5uPtXVy0RVKPm/Co= @@ -1601,6 +2033,10 @@ Headers/FBSDKGraphRequest.h + hash + + fcyBXnX0kXW3K86AicNWhquTIZg= + hash2 3ursnTGjZEwN3pX/7qVj17DrapYRTM+s1aookgal5VQ= @@ -1608,6 +2044,10 @@ Headers/FBSDKGraphRequestConnecting.h + hash + + sAlo7za+Sf4zj8Xg+Wy83BUtRCE= + hash2 /aivBeJLeVgjejn+J7Ve8A1PgbyFwWSEIOEpNrMZwLw= @@ -1615,6 +2055,10 @@ Headers/FBSDKGraphRequestConnection.h + hash + + xekaYAnwI2ev6ILyXlbakBwCu00= + hash2 ZBvNPns3LI0BJvy4H2sZTWT6GUx7snokHYTi2gpoI8Y= @@ -1622,6 +2066,10 @@ Headers/FBSDKGraphRequestConnectionDelegate.h + hash + + FSHiVcHDpJTlfdfBczQNHtjDJ8s= + hash2 pbeIgtjILQ+9lWJviGFFqpO8IqXWnVf2DQ094YKDKMY= @@ -1629,6 +2077,10 @@ Headers/FBSDKGraphRequestConnectionFactory.h + hash + + gAfT3DO/vuTTlEaJPEP8hL5P3Eo= + hash2 xgTvIuiH3O0GP4dAfx+lVweVvj/3VUFzk/ZwDkEd6UM= @@ -1636,6 +2088,10 @@ Headers/FBSDKGraphRequestConnectionFactoryProtocol.h + hash + + A26a5H79Zb1dRO6YHMFB4DbS+D8= + hash2 ZSBkNkUs6k4hh3lOO6aa5+j5kuh9vwSm6BTbH++KEH4= @@ -1643,6 +2099,10 @@ Headers/FBSDKGraphRequestDataAttachment.h + hash + + 7vvCqPiZp4o6JKVaJJ4FP9XkXKE= + hash2 rrQm0dv7u0VNuBOOr4bOsLq22U2VRKN5+/8z8dvg8ac= @@ -1650,6 +2110,10 @@ Headers/FBSDKGraphRequestFactory.h + hash + + lAwX1CKv5VHiJ07/xZZylICOdg4= + hash2 VHji6+eQJ/noGhXoav1+rDhYGkeNSPac5f3JMIMO4OQ= @@ -1657,6 +2121,10 @@ Headers/FBSDKGraphRequestFactoryProtocol.h + hash + + Nz3K53RPMCO3ckDCvhJoBJ9TIKI= + hash2 4EdOx1EfPwkCg86SDjtSacKJozvb0RRnJZ19a7qirAA= @@ -1664,6 +2132,10 @@ Headers/FBSDKGraphRequestFlags.h + hash + + Zas2ccUoNaCrjUffAdLC6TmKLWs= + hash2 QaBxTTw493IFQLv0fwkhBkWu57wAPkAZ/fexBSmcWuA= @@ -1671,6 +2143,10 @@ Headers/FBSDKGraphRequestHTTPMethod.h + hash + + sF4WT7ko2ZXuQ91thBewwSb29Cc= + hash2 s/ZdV1PYtfb+e5MToTE5eWQ/g8Ea8Lfbn1y5cPXIois= @@ -1678,6 +2154,10 @@ Headers/FBSDKGraphRequestMetadata.h + hash + + Ig2aSNTYKohOL9chgKgOCRL4R+o= + hash2 YBkwsTVbEaC8DwjEMZdgV4ipEEMPr0P+ZButq3RZ7zQ= @@ -1685,6 +2165,10 @@ Headers/FBSDKGraphRequestPiggybackManaging.h + hash + + RzvPVhBs2lDl2xH7PANCNXkswIE= + hash2 wxiIa9cDFOlxQYXM+TkWOQooJpOkR5UkCGuNOfRHzCo= @@ -1692,6 +2176,10 @@ Headers/FBSDKGraphRequestProtocol.h + hash + + E72bbJ8BaX/EV/so4aPEeaLRTkY= + hash2 GDWolFR0Dj6corFdcjDQZdk7rfU0AEPiBD4Ij/x0efk= @@ -1699,6 +2187,10 @@ Headers/FBSDKImpressionLoggerFactory.h + hash + + nfa97DKHYMz7v0+pUDy3nlxrUYk= + hash2 QuBRqz4neAxQgnQCCfZVT7P/volyw8iY5KgrMKRJmJs= @@ -1706,6 +2198,10 @@ Headers/FBSDKImpressionLoggerFactoryProtocol.h + hash + + 3LEI96v+5GIEFysj3D1C/rG8ihw= + hash2 Us0Ez3sk3OsuatGsASCqoKebAXNWPg9S5pMOJ5DxDc4= @@ -1713,6 +2209,10 @@ Headers/FBSDKImpressionLogging.h + hash + + wrrEayG2/hN5wUceRYRAU8HrXBk= + hash2 Vprv+yj1TQTAVjk0AdI+90h3w3DcuHwxVoAECMAadvM= @@ -1720,6 +2220,10 @@ Headers/FBSDKImpressionLoggingButton.h + hash + + 5jJQoQEgcqekG5Zl8U42hb9oI80= + hash2 ndY9up8dSnK60T7Qxxo1R50wARczYvrrA0RXdqjCzKI= @@ -1727,6 +2231,10 @@ Headers/FBSDKInstrumentManager.h + hash + + b4LuHg6PamZ7IBBxVoOYpxuYERM= + hash2 +5qq+ul/kPhxOgEhuLz8XmNc60qQeWJkTw9obciSaz4= @@ -1734,6 +2242,10 @@ Headers/FBSDKIntegrityParametersProcessorProvider.h + hash + + YAejrtcnEaVtGKUEB4ZJpyeATvQ= + hash2 o5WVcgrcNZ9fy9iy8pkmLgt9cY41GNSvTFg3Z4b9k5A= @@ -1741,6 +2253,10 @@ Headers/FBSDKIntegrityProcessing.h + hash + + 87ZiOpw4U2tli0OR6o2FOZV0Szc= + hash2 ZIhsJR2yehcaQancBDHC1s72R+hCE/frIqi5p8edPn8= @@ -1748,6 +2264,10 @@ Headers/FBSDKInternalURLOpener.h + hash + + HjvVz4pGejcJ2GTuWU9Xj8astVc= + hash2 Smuon7hj0cHER1LtdxVHHfiDVs0N09rO/UaT3usL3aU= @@ -1755,6 +2275,10 @@ Headers/FBSDKInternalUtility.h + hash + + xVnxfL7eTB7Crbqhijh4imgTplo= + hash2 fGPA4wFG0PbwsHF1HMG8uXRBNUpRfuVBclcu0v5TDCk= @@ -1762,6 +2286,10 @@ Headers/FBSDKInternalUtilityProtocol.h + hash + + C8PisqlQ5ZUVVrlbqb7lI6mBWqA= + hash2 BsMnKugr4OfKQO9KrXdkbyqqWFr7jyN4l8vCcAGQD9E= @@ -1769,6 +2297,10 @@ Headers/FBSDKKeychainStore.h + hash + + VSfBFlzguwgAJhVey77PM3TiKzI= + hash2 sQGCel/07cMPMZI0kl8wscwPV9WL/JIYf1ns0PSf8v0= @@ -1776,6 +2308,10 @@ Headers/FBSDKKeychainStoreProtocol.h + hash + + Vl4nIrUwT7cqcjwlXymbPkKUVDo= + hash2 XNfcYyJYq69j5eL0ARtTlzkh8SdVCq+G/s9eY4Pd8O8= @@ -1783,6 +2319,10 @@ Headers/FBSDKKeychainStoreProviding.h + hash + + u2GnomfI+oHCeoe6Ei9pG5quwVE= + hash2 /INTsqlL5Gr82q1fsrI5Mm6ox4RJoy9zwOvstKFPXrI= @@ -1790,6 +2330,10 @@ Headers/FBSDKLocation.h + hash + + lVldFN//gmPckkWOntm6/lMe0QE= + hash2 4VM07vWgUKPPsLEMLF29hXYKIHBkc9vETSX506Z++Uw= @@ -1797,6 +2341,10 @@ Headers/FBSDKLogger.h + hash + + 19xKJkbTRpwMoQwzaC6Nu+w5tME= + hash2 O7DI9fO361qB0Y+XI/ka6eMk5/LMGvTE5T0NPkcTBBI= @@ -1804,6 +2352,10 @@ Headers/FBSDKLoggerFactory.h + hash + + oN6VhKse4/3rPEKNFGojETNkg58= + hash2 e8PHQtEWsLuVh+XXwDbUAFSXUORwmsnkmOyyYz+ph8g= @@ -1811,6 +2363,10 @@ Headers/FBSDKLogging.h + hash + + /DbryGZcqEQACAktvCjPjV6SDG4= + hash2 IvKTyTv5bHSAJcZqLwaHR/lW5CFnjIggFOzHMRDWMk4= @@ -1818,6 +2374,10 @@ Headers/FBSDKLoggingBehavior.h + hash + + lNVc//dYNZlhHrZHLByspMT+TeY= + hash2 f5RLVvxNd/VtlSpoMhH6nO6jFRiC9rudIo+algkCGBs= @@ -1825,6 +2385,10 @@ Headers/FBSDKLoggingNotifying.h + hash + + ClxijYzHweoVytnlGNbT1n62Q2I= + hash2 /H/LDFDn+fA0n3pb11qgMdP8PeuXl02axVuT5C9K6nc= @@ -1832,6 +2396,10 @@ Headers/FBSDKLoginTooltip.h + hash + + t9qlwGoUeyWhxDfXE8Ky6RnF/gg= + hash2 C6wHDAq5ukwucR1FkTnnq3ucsw6y7GR9wDadgB3zHZY= @@ -1839,6 +2407,10 @@ Headers/FBSDKMacCatalystDetermining.h + hash + + Fy2901RMaq8v1KZ1nkSvVuhYSN8= + hash2 dOVbOuPHBVVE2h/fz8iXrr824nuLBVRrqymrNwdF5kY= @@ -1846,6 +2418,10 @@ Headers/FBSDKMath.h + hash + + rYMaHGq5qMdO0PMhIT/NeaWQMFE= + hash2 RQb23pN1EiaRezovWmrJpZ289Eby0ndYmkHCpsWKbXo= @@ -1853,6 +2429,10 @@ Headers/FBSDKMeasurementEventListener.h + hash + + OVZSC/JIKFj+KgzAwt5biOqF7rI= + hash2 ELmJcxc3dSPYAYyrwqHJpwUxM4is2hfU27i90WTOYQ4= @@ -1860,6 +2440,10 @@ Headers/FBSDKMeasurementEventNames.h + hash + + 9XUuzXpHXt6PyqsDNvqKaCYOsaQ= + hash2 Xy6hXD6E/laXHrWOeDhRU5cQKCbE05HcdVjR5tdUx6E= @@ -1867,6 +2451,10 @@ Headers/FBSDKMetadataIndexer.h + hash + + yvEMxozxtAwiiPOoouj17MOx38w= + hash2 FC2xPfBPJ+KkA1lGRnOxuFDbWIJc5fChKOpjrK4QYMk= @@ -1874,6 +2462,10 @@ Headers/FBSDKMetadataIndexing.h + hash + + 0XbHu0BpTUjfkrPvYn1B9+H0Bww= + hash2 QjaWgUOa4ftPTfJONsDDsoLADLIhk0afRL0wWiGd9qc= @@ -1881,6 +2473,10 @@ Headers/FBSDKModelManager.h + hash + + UTvH2kBUyG0vy9bmR5tucIdzDMU= + hash2 4HNzWyenJC3JFcA8hUl1k235rwmiyBYrmtRHx6i0w2g= @@ -1888,6 +2484,10 @@ Headers/FBSDKMutableCopying.h + hash + + CdAKmAi79FHfugMUCBcou38XjyY= + hash2 9WETC6Qraw3B3QY90JfYu/elsAnM/L40JTEsRAOO+hQ= @@ -1895,6 +2495,10 @@ Headers/FBSDKNetworkErrorChecker.h + hash + + lc4ltIsnGN0wefVKZeW3BTQqt8o= + hash2 mQPfqbSnxLTJW64KKhoGcZPQYNTYQABLzG1AZ2hcTSs= @@ -1902,6 +2506,10 @@ Headers/FBSDKNetworkErrorChecking.h + hash + + DQOOpk+tae6sTARv6zgYkUNQv+4= + hash2 JaxujLpfeoL0uJ15AXk/+TxmnQ+XgmtHYz9sb5k3r1w= @@ -1909,6 +2517,10 @@ Headers/FBSDKObjectDecoding.h + hash + + rsoqTN959edBc1dWsOJAk4SFajc= + hash2 qsowPp05Itw5uODC4pGjeSY1WE9ntYKWLfZW7A0nNw4= @@ -1916,6 +2528,10 @@ Headers/FBSDKOperatingSystemVersionComparing.h + hash + + jd/kWOWeuMfcK4hF/tgU6AeS2yU= + hash2 KaQv/BSjIbO1IWul0m3Ckagnf4cBrNKnGm3fhM4GJcg= @@ -1923,6 +2539,10 @@ Headers/FBSDKPasteboard.h + hash + + 4+oJKTiDHC9gezS8CCuhdWHO2gs= + hash2 UJnUSOEkUYzGWK3fOCD3HGGdwQLxYhZg4znp+HpSNGQ= @@ -1930,6 +2550,10 @@ Headers/FBSDKPaymentObserving.h + hash + + 2F/w1aia/WcWnKwAGffiRgYimWQ= + hash2 g21RW5m5mkv5jnc/g4IZvHnCPQLSjxGoaSvN3vo4UZw= @@ -1937,6 +2561,10 @@ Headers/FBSDKPaymentProductRequestor.h + hash + + ZQ6Btyy0z7ZiD/M9eX+7+KDRiLE= + hash2 S2CSCz82/VNHbyry4LOyJvanQu9UC+br3C0NUFHHqe8= @@ -1944,6 +2572,10 @@ Headers/FBSDKPaymentProductRequestorCreating.h + hash + + kofChLuS6UMw2biE8Lcu2yhsmt0= + hash2 fGzWAJQkZyRBklHMViipfo4KyA1fMAOzlOiH4HhweQk= @@ -1951,6 +2583,10 @@ Headers/FBSDKProductAvailability.h + hash + + 4z6lAOLiyG+H6sMmuDzBXlrBO4Q= + hash2 AfSg3sbP+VegxUAApbWi9NSI+/dlu9LbDGiLvCWo3Z0= @@ -1958,6 +2594,10 @@ Headers/FBSDKProductCondition.h + hash + + p2M86R+0XjuIIHBALGh4qHhF0sg= + hash2 dNGTpMMgyZMruD+nBPSsD0Y3Bc2L8ZoTcsW1f5tdK7Q= @@ -1965,6 +2605,10 @@ Headers/FBSDKProductRequestFactory.h + hash + + 7BIaz0Ab6i62/Dq0UaZpdoNPhCs= + hash2 6bp/2xb4hfUOim9SEuGgPr9z+Bysu/FK27psJ1WxipQ= @@ -1972,6 +2616,10 @@ Headers/FBSDKProductsRequestProtocols.h + hash + + quFgypTeZ+2XNvJr6deEaYceClo= + hash2 a7mWH2GsxBZ9X9N8Z/19nO+toxG/0r99YGYxK28kY0o= @@ -1979,6 +2627,10 @@ Headers/FBSDKProfileBlock.h + hash + + m3b2HY43bVO+k7tLfgTUHlel3XM= + hash2 4/f1aRcfzmU+yr0ypnHjdfSBpIQ8QxluAy3Yn0XxJPE= @@ -1986,6 +2638,10 @@ Headers/FBSDKProfileNotifications.h + hash + + p/v7YsyAewf4Zx5PgVOw0g9689k= + hash2 yWNI2yhxUUa25VEKtZBJViFYRTXMmJxx1JUrJbK6QAs= @@ -1993,6 +2649,10 @@ Headers/FBSDKRandom.h + hash + + rqrUnE5WdNwaBw/Fm/Sauc2KceA= + hash2 /FYnxRG5dQwkxSXWGGkucUnk7tABHKmrqud2upLxMSk= @@ -2000,13 +2660,21 @@ Headers/FBSDKRestrictiveDataFilterManager.h + hash + + FhBIBCgefnNx6Hx9hBvjEQxlgTk= + hash2 - zvdRFDFdVIObzvb569OCSjaowSA3dNsy0zdH0B0ggHI= + mSbOfI4ZD+1zdJOwvNbPEvSXVCr/iH1TcmA+bmwJW5k= Headers/FBSDKRulesFromKeyProvider.h + hash + + 9/nqsZZ8Epe4NBnTPqEOptCNdzs= + hash2 KU18OwgqjgGW8bB4DSVWVWXRm2R5Uh9WKEHg/7D71/c= @@ -2014,6 +2682,10 @@ Headers/FBSDKSKAdNetworkReporter.h + hash + + N8+fSt031r3BemNKfykFVGaMU2g= + hash2 uqe1+q806a6PrWGJ1z275ZtkYMC6hW+JEjEM1j+UxFY= @@ -2021,13 +2693,21 @@ Headers/FBSDKServerConfiguration.h + hash + + RYI0UXlgPIsiOA6XYUAwFpiCST0= + hash2 - XJ9LplGDxOuvXujGkpFwpK2xVQjY9Iq6c2KBQ32dmQw= + uy3yx/+NIWWK8fEtVsUu63NQNRusgqqGi3mZn5U6AEw= Headers/FBSDKServerConfigurationManager.h + hash + + MabAusZdKvvZ5Ny2wrhRTzvzRhY= + hash2 7bxzdmwW3VP1D775pYiEPDzkARci0KU5+G83fUIv+Lk= @@ -2035,6 +2715,10 @@ Headers/FBSDKServerConfigurationProviding.h + hash + + OVcy7K8/6LpbY7Ls9wBkMeiLOXc= + hash2 nggJ6UDcdQ8WAvG9K2eWGIr1+MNgK3/g6Tj4sImbWHM= @@ -2042,6 +2726,10 @@ Headers/FBSDKSettingsLogging.h + hash + + j4NKiO1um7BzI27sPShA+WNNV6E= + hash2 GgfZ+r7AkNT2pA6iA72tqgExzEgxS0MRiVNUSlpsa48= @@ -2049,6 +2737,10 @@ Headers/FBSDKSourceApplicationTracking.h + hash + + eyc/NF7kaz05PnojBKao9RoOkXo= + hash2 qajy5wvDILF4b7Jcx9hTizBUhaT1i2GXvpxik1TzkNE= @@ -2056,6 +2748,10 @@ Headers/FBSDKSuggestedEventsIndexer.h + hash + + eLTHBeEjKRaaEKDEDTrfz5o1+pE= + hash2 o+ccIBHzx5V9J1IZLNYIg+BkWS3Kl3rMRYXWeWRdhDQ= @@ -2063,6 +2759,10 @@ Headers/FBSDKSuggestedEventsIndexerProtocol.h + hash + + Nlpu1MobSLVgHiTs61VhpCb8F84= + hash2 9kKE4jZryp1a9dSaPrjDlA+9RhscC9+Yq3GlCBL0DpU= @@ -2070,6 +2770,10 @@ Headers/FBSDKSwizzler.h + hash + + PgutzEuZyjT9se/U24OTeoEMo1g= + hash2 0n+HQ6UGePndL7zICwSJXV5WRg12HV3lB4DiARhtWIU= @@ -2077,6 +2781,10 @@ Headers/FBSDKSwizzling.h + hash + + jMRYakKevWrqsOerYuQ9Fb1eCT4= + hash2 KFyWd42cMnaIyExVvONG1g3JPBSvnv/4xdag+5V9zDQ= @@ -2084,6 +2792,10 @@ Headers/FBSDKTimeSpentData.h + hash + + Zgill5e+tNHLsGRpZ8nXHCk2iEc= + hash2 4onV/tAXCdp3PH0pHlu7hEtJ7bg+cH1JUhZKPPfhxms= @@ -2091,6 +2803,10 @@ Headers/FBSDKTimeSpentRecording.h + hash + + NuI7oI0R+b4/s+KiUbS+MEn4x8k= + hash2 Xi9idQwWvd5DFqQNYAbll1aNfRM0zlSsrHt8LqUVh0E= @@ -2098,6 +2814,10 @@ Headers/FBSDKTokenCaching.h + hash + + cla0KYAtpSCy2GcXC++XdSQrxck= + hash2 aqvT3pRj7C448KPxobWR9AZGsr5TeBuYFw6Fe2phX4o= @@ -2105,6 +2825,10 @@ Headers/FBSDKTokenStringProviding.h + hash + + 43wQbjzLSB+cSu9hTQZ4tJq24Mc= + hash2 TTwDb4bRpxFALwHRV7rPZ9zwNFPGZhy34If3avetGjM= @@ -2112,6 +2836,10 @@ Headers/FBSDKTransformer.h + hash + + Ui2GFPACS7T6kK9LcCLcdJyCYyo= + hash2 76ADDGvmmKAAjwJQmqZOKN1QRhrUmGE9qELPwGG2F4k= @@ -2119,6 +2847,10 @@ Headers/FBSDKURL.h + hash + + lg+hfhk8xZ7goFdbGZ8cVtCyNbw= + hash2 MC/UJOZYmjruWzpiMns2o9iOpycM+cvnUnx2d+brcDA= @@ -2126,6 +2858,10 @@ Headers/FBSDKURLHosting.h + hash + + O+RAgM4Uu49yrzKRLeqtv9FfVKE= + hash2 tY5HluqD9iw44nsX/G1SrqCii9dfnxqiv8T/kapFGQs= @@ -2133,6 +2869,10 @@ Headers/FBSDKURLOpener.h + hash + + /9/EmnpZWM6KdVyGGEI1NUvMbYk= + hash2 DUeUDJEfTX1NM5s8QxHytKu4/avgUtMZIXnRyx+sTF4= @@ -2140,6 +2880,10 @@ Headers/FBSDKURLOpening.h + hash + + 0r8abqnzwBXvpV5PlCa/kQ+OdW8= + hash2 djQLdPxXd/h2GC826rf/QKm1UM7Fb9poUtZsWIB9K/M= @@ -2147,6 +2891,10 @@ Headers/FBSDKURLScheme.h + hash + + 36HfFNYLwWfRajDYFDJeNZe/evc= + hash2 BdpEnJgCwk4m/BX4jdUcFWtch+dOASiPi4b4XuShRow= @@ -2154,6 +2902,10 @@ Headers/FBSDKURLSessionProxyFactory.h + hash + + fkszrJOzG1OgfuDotJLKT74xw1w= + hash2 nFIFaAzvqWS22hEvcMkix5YaPcK4GBmjn+7lCb40/RI= @@ -2161,6 +2913,10 @@ Headers/FBSDKURLSessionProxyProviding.h + hash + + 5Hely+G3LbaFH81TEA3aS8tH8Xk= + hash2 aTA0C16KsECkZ2E8HCXO7ce5CfBhS4krYqHjd2sMT84= @@ -2168,6 +2924,10 @@ Headers/FBSDKURLSessionProxying.h + hash + + LIrnTeexPfrk+a2pllxOcLBqw+Q= + hash2 xCWdJ07ZEEhMehbPyCICo2qsde4nyWuid/4r5sZNYM0= @@ -2175,6 +2935,10 @@ Headers/FBSDKUnarchiverProvider.h + hash + + mBxizULPLClFmFkzGvq7DZbedIU= + hash2 km9PeIz2mArhmhaSjTUxnyXNDnyTw45ONMOIrFvX9Ng= @@ -2182,6 +2946,10 @@ Headers/FBSDKUnarchiverProviding.h + hash + + PU6uhik4cqPkhqWAmJpctYAS+vI= + hash2 oCPV4SoPYuNAh0Y+MkV7TYC6T/3tFQbq2/dC8tplruQ= @@ -2189,6 +2957,10 @@ Headers/FBSDKUserAgeRange.h + hash + + paq4PxztwLvJ2EQKujqXLJfgjiA= + hash2 pLTGrXlcRTNXtDJu1omtFNVR7Tl9niHZllskPvHvlLI= @@ -2196,6 +2968,10 @@ Headers/FBSDKUserDataPersisting.h + hash + + eiIDv79NpGtVgJHZ+jovQsS4ZsU= + hash2 e5bOiJw1uxd3xCQKKVryAoxKqTxaIVcOMbL0cYWLyJo= @@ -2203,6 +2979,10 @@ Headers/FBSDKUserDataStore.h + hash + + iSw84njE3Q4fckPhhhUCpEMT4Uw= + hash2 RY2Lg4PYOft0K2wbJtT1axcgmL2lJ5PaGtXZga3hQjI= @@ -2210,6 +2990,10 @@ Headers/FBSDKUserIDProviding.h + hash + + 1G3kOunQeQMavUujt30qZv1Oj98= + hash2 n8EfpaG2V2BCI5xE/8Hz8+83cLBSVMqXjkEx1Gv6r6E= @@ -2217,6 +3001,10 @@ Headers/FBSDKUserIdentifier.h + hash + + EqrAGtLbcJRfQwl12songIdMMEE= + hash2 TIFVVKaBj4BvRv/gFJvtxkh3Bm/40McFA0531BAu5AI= @@ -2224,6 +3012,10 @@ Headers/FBSDKUtility.h + hash + + ACK+e48w6WLwZDhZT9VIaXDWTlk= + hash2 aDJa31ufENPB6jQuSRYbBb60HcsTocEvvcqZw2iWBN8= @@ -2231,6 +3023,10 @@ Headers/FBSDKWebDialogDelegate.h + hash + + oPLwzJ7KUTr8T5hq/c983EM1rfE= + hash2 RhnzKhKPGNsn+I0efiSBdbYdU7h+Z/m5R4mQUqXW8xA= @@ -2238,6 +3034,10 @@ Headers/FBSDKWebDialogView.h + hash + + EHOQKin9zYzG+gmc/LfBegKrvEE= + hash2 HC8WLkRk5PhVWGbE58hLSP/goSUOleGYhuUzBNm31v4= @@ -2245,6 +3045,10 @@ Headers/FBSDKWebView.h + hash + + jUhFO4/5Ly1VNml/cAryOayE4Ag= + hash2 yZ2ZBoGlvdRcTOHXhCl80pgVGKFXIQXl9HClExQmfbc= @@ -2252,6 +3056,10 @@ Headers/FBSDKWebViewAppLinkResolver.h + hash + + jEC9UH9Inm7DYqoFZv2qaN3Pe14= + hash2 +Ac5AbGpEiHL5SuKIFm5ORqswif+O0w+zlIxL1qgUd4= @@ -2259,6 +3067,10 @@ Headers/FBSDKWebViewProviding.h + hash + + 6dBqgFJpP3qYvCEw7KHe/d5ieC8= + hash2 2TVzs8L8DTwpM3xFUOklhzjkivHzm2VLIiY+IXFxMnk= @@ -2266,6 +3078,10 @@ Headers/NSNotificationCenter+NotificationPosting.h + hash + + 4IqhFgtQjABnwxNo0vP4+5Q/hSU= + hash2 /hTFkvjgGwyFzsQ6VB5CKDoMAKTrun+jQ7LMU4Bcfws= @@ -2273,6 +3089,10 @@ Headers/NSProcessInfo+MacCatalystDetermining.h + hash + + P2PZ0k71jzSsWpQg6vH4TOHr6SU= + hash2 N5KvICMBUqwJ3JveHhLX4bomYQIHATUqScz3F4Vyf8Q= @@ -2280,6 +3100,10 @@ Headers/NSProcessInfo+OperatingSystemVersionComparing.h + hash + + 7p95y3GgCy4C7g+8xfGVXW4sr18= + hash2 G6fi3L4ee8mocOfWvq0r6J1Iy2HRUZ7PyHTmpxrxo08= @@ -2287,6 +3111,10 @@ Headers/UIApplication+URLOpener.h + hash + + N6kxbbjqI4XB8O7cVqNSb4VtaOs= + hash2 LFldGsPohxFxp2EMtRNr9DW5offC4saf8wAKpZaih60= @@ -2294,6 +3122,10 @@ Headers/UIPasteboard+Pasteboard.h + hash + + MKDA9GrF2o6+h3tbW9e9adSk23k= + hash2 JdRN7qh5XEBay0JfDd6bXvUO+ciilKne5qAXVmNWoyY= @@ -2301,6 +3133,10 @@ Headers/WKWebView+WebViewProtocol.h + hash + + 9AxT3+g6DPZx5q3rQWhRBMFJu64= + hash2 Uo6vnwYxxFh+V/+J5U7GTu7dFxg9xliEGHkxzgAJYTs= @@ -2308,6 +3144,10 @@ Headers/_FBSDKNotificationPosting.h + hash + + w1Gpzlc2q889xvFT3+ffPk2kwQU= + hash2 ZBUZDT5SUs3wBxxP06/A5KDaxedomK4NJ7axY0qD7jY= @@ -2315,6 +3155,10 @@ Headers/_FBSDKWindowFinding.h + hash + + Gac9mAAYHny41SRhpW53CbfSo2s= + hash2 QxPymhBROXgyvxD0bzeN+T5ennsD7zaelwvA1a2l3oE= @@ -2322,58 +3166,134 @@ Headers/__FBSDKLoggerCreating.h + hash + + TTkFW5xuSEAOVq8O1cbEJ6/RgQg= + hash2 KjjsJxMgCNjZYBZHCA+t/dUcdoGwgXLLXtNZjYzHQrA= + Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.abi.json + + hash + + rFb7gfyrZpV1HqB4Kls67SYGw6k= + + hash2 + + enWvYC4lZxF+p8iHPvAgzWgxQpNANlqNpM1BguZbjr4= + + + Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + hash + + +GU5gBQfJX0ZEJ/EbL98yBHA9I4= + + hash2 + + PV6xTkNihGtuE7GFB0paGTEtyWEnoOaCNNz922CxBvg= + + Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc + hash + + vleBA2LNKEA9bqKyygB84o7ibik= + hash2 - VMjj2x/vclL3uNuF9dao2RvMUxhSwW4LjGkc3Wgr65g= + UsyT6Xf5+gFS0QeG7epsWDZpsu6gAr3YqCNeEn4nH5c= Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface + hash + + +GU5gBQfJX0ZEJ/EbL98yBHA9I4= + hash2 - 85c9Hv8KaN/tKJpXA8oM+NhVL5C/nx3EE6lH1SyGRDg= + PV6xTkNihGtuE7GFB0paGTEtyWEnoOaCNNz922CxBvg= Modules/FBSDKCoreKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule + hash + + 9LZk9z9DT4kGmVwTvIsl3ZBEf/I= + + hash2 + + NwFkjGckfQI5o6Xf+akZcP9s7D2SWdzt3XnOyaq2Dtk= + + + Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.abi.json + + hash + + rFb7gfyrZpV1HqB4Kls67SYGw6k= + + hash2 + + enWvYC4lZxF+p8iHPvAgzWgxQpNANlqNpM1BguZbjr4= + + + Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + hash + + wbLGZjKmrOSfjlu94xUhZSFwgUw= + hash2 - D8r8U/PEs6EjcFmNNxKLk/DTaN/lZZ+7oZQWQ8EA9R8= + cC/u2DMXO4DKjiijdpbo5nu6sm2OtWuCot/BRIYQs1Q= Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + hash + + hOlI1tyeptO0z1GXBajoQNo1TR4= + hash2 - sLIuTb9rDZkYuSxPn3sEnioyoW0gY7wWzYo6Sswakqc= + flEdxy1xwKIbshUculqWNfk/gO3fWRAsRxLJBuiTZ/M= Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + hash + + wbLGZjKmrOSfjlu94xUhZSFwgUw= + hash2 - zqnWpsudil1xmwIglKYAvdmtYLfOHpX2NJZr/xTwDfo= + cC/u2DMXO4DKjiijdpbo5nu6sm2OtWuCot/BRIYQs1Q= Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule + hash + + Xgn+mbht7912vJH9vcatEuPYhkM= + hash2 - 8526VEibuPkTCc//0mEZtQDbcHtz1p1F5H0YoQQLU+k= + GvTR1V+9bfyQq2NZ4OkkdvyT8n3xByD+HA+k+oXVZ4A= Modules/module.modulemap + hash + + 130ouJhMpZj1Z376F5gsUfoyxyc= + hash2 - c2A9sHV9BPDFexemM1nM/fNWiYjoYt4V7Zxb+LDeu2Y= + l8ml0KsKmiLEQKTzAYpZRg2k4nhDb5o3vF3lArU4ZzY= diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeSignature b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeSignature new file mode 100644 index 00000000..e69de29b diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index e9fd3068..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKCoreKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit b/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit deleted file mode 100644 index 3cf202b2..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FBSDKCoreKit b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FBSDKCoreKit deleted file mode 100755 index bb08f9a6..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FBSDKCoreKit and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings deleted file mode 100644 index 84881da5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besoek %@ en voer die kode in wat hierbo vertoon word."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Om jou rekening te verbind, maak die Facebook-toepassing op jou mobiele toestel oop en kontroleer vir kennisgewings."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OF -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Goed"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Kanselleer"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Meld asseblief weer by hierdie toepassing aan om jou Facebook-rekening te herkoppel. "; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Goed"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Die bediener is tydelik besig, probeer asseblief weer."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Kanselleer"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Meld af"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Met Facebook aangemeld"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "As %@ aangemeld"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Meld aan"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Gaan voort met Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Meld met Facebook aan"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Meld af"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Toegang is nie na die Facebook-rekening verleen nie. Verifieer toestelinstellings."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kan nie aan Facebook koppel nie. Gaan jou netwerkverbinding na en probeer weer."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Jou Facebook-wagwoord het verander. Om jou wagwoord te bevestig, maak Instellings > Facebook oop en tik jou naam."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Die Facebook-rekening is nie op die toestel opgestel nie."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Jou rekening is nie bevestig nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Jy kan nie op die oomblik by toepassings aanmeld nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Jy is in beheer – kies watter inligting jy met toepassings wil deel."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Meld aan"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Stuur"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Deel"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nie jy nie?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bevestig aantekening"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Gaan voort as %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings deleted file mode 100644 index f67e1352..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "تفضل بزيارة %@ وإدخال الرمز الموضح أدناه."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "لربط حسابك، افتح تطبيق فيسبوك على جهازك المحمول ثم تفقد الإشعارات."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- أو -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "موافق"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "إلغاء"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "يرجى تسجيل الدخول إلى هذا التطبيق مرة أخرى لإعادة الاتصال بحساب فيسبوك."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "موافق"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "الخادم مشغول مؤقتًا، يرجى إعادة المحاولة."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "إلغاء"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "تسجيل الخروج"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "تم تسجيل الدخول بحساب فيسبوك"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "تم تسجيل الدخول باسم %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "تسجيل الدخول"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "متابعة بحساب فيسبوك"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "تسجيل الدخول بحساب فيسبوك"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "تسجيل الخروج"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "لم يتم منح إذن الوصول لحساب فيسبوك. تحقق من إعدادات الجهاز."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "تعذر الاتصال بفيسبوك. يُرجى التحقق من الاتصال بالإنترنت وإعادة المحاولة."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "تم تغيير كلمة سر فيسبوك الخاصة بك. لتأكيد كلمة السر، افتح الإعدادات > فيسبوك ثم اضغط على اسمك."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "لم تتم تهيئة حساب فيسبوك على الجهاز."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "لم يتم تأكيد حسابك. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "لا يمكنك تسجيل الدخول إلى التطبيقات حاليًا. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "أنت المتحكم - اختر المعلومات التي تريد مشاركتها مع التطبيقات."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "تسجيل الدخول"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "إرسال"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "مشاركة"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "لست أنت؟"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "تأكيد تسجيل الدخول"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "متابعة باسم %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings deleted file mode 100644 index 768fcdbb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ -এ যান এবং উপরে যে কোডটি দেখানো হয়েছে সেটি লিখুন।"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "আপনার অ্যাকাউন্টে সংযোগ করতে, আপনার মোবাইল ডিভাইসে Facebook অ্যাপটি খুলুন এবং বিজ্ঞপ্তি চেক করুন।"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- অথবা -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ঠিক আছে"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "বাতিল করুন"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "আপনার Facebook অ্যাকাউন্টটিতে পুনরায় সংযোগ করার জন্য অনুগ্রহ করে এই অ্যাপটিতে লগ ইন করুন৷"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ঠিক আছে"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "এই সার্ভারটি সাময়িকভাবে ব্যস্ত আছে, অনুগ্রহ করে পুনরায় চেষ্টা করুন৷"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "বাতিল করুন"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "লগ আউট করুন"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ব্যবহার করে লগ ইন করা হয়েছে"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ হিসাবে লগ ইন করা হয়েছে"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "লগ ইন করুন"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook এর সাথে চালিয়ে যান"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook -এর সাথে লগ ইন করুন"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "লগ আউট করুন"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook অ্যাকাউন্টটিতে অ্যাক্সেস করার অনুমতি নেই৷ ডিভাইস সেটিংস যাচাই করুন৷"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook-এ সংযোগ করা যাচ্ছে না৷ আপনার নেটওয়ার্ক সংযোগটি পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন৷"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "আপনার Facebook পাসওয়ার্ডটি পরিবর্তিত হয়েছে৷ আপনার পাসওয়ার্ডটি নিশ্চিত করতে, সেটিংস > Facebook খুলুন এবং আপনার নামটি ট্যাপ করুন৷"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook অ্যাকাউন্টটি এই ডিভাইসে কনফিগার করা যাযনি৷"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "আপনার অ্যাকাউন্টটি নিশ্চিত করা যায়নি৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "এই সময়ে আপনি অ্যাপসে লগ ইন করতে পারবেন না৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "আপনি নিয়ন্ত্রণে আছেন - অ্যাপ্সের সাথে আপনি যে তথ্য শেয়ার করতে চান তা বাছুন৷"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "লগ ইন করুন"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "পাঠান"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ভাগ করুন"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "আপনি নন?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "লগ ইন নিশ্চিত করুন"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ হিসেবে চালিয়ে যান"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings deleted file mode 100644 index c15549c4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Navštivte %@ a zadejte nahoře uvedený kód."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Účet si můžete připojit tak, že si na mobilním zařízení spustíte aplikaci Facebook a podíváte se do upozornění."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- NEBO -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Zrušit"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Pokud se chcete ke svému Facebook účtu znovu připojit, přihlaste se k této aplikaci ještě jednou."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server je dočasně zaneprázdněný, zkuste to znovu."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Zrušit"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odhlásit"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Přihlášen(a) přes Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Přihlášen(a) jako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Přihlásit"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Pokračovat přes Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Přihlásit se přes Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odhlásit"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook účtu nebylo oprávnění uděleno. Ověřte nastavení zařízení."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "K Facebooku se nedá připojit. Zkontrolujte připojení k síti a zkuste to znovu."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Vaše heslo na Facebook je změněné. Pokud chcete heslo potvrdit, přejděte do Nastavení > Facebook a klepněte na své jméno."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "V tomto zařízení není Facebook účet konfigurovaný."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet není potvrzený. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Do aplikací se v této chvíli přihlásit nemůžete. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Je jen na vás, které informace chcete s aplikacemi sdílet."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Přihlásit"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Odeslat"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Sdílet"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nejste to vy?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrdit přihlášení"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Pokračovat jako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings deleted file mode 100644 index a6d9ed40..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Gå til %@, og indtast den kode, der er angivet ovenfor."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Du kan tilknytte din konto ved at åbne Facebook-appen på din mobilenhed og tjekke notifikationerne."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuller"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Log på denne app igen for at genoprette forbindelsen til din Facebook-konto."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serveren er optaget i øjeblikket. Prøv igen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuller"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log af"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logget på med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logget på som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log på"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsæt med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log på med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log af"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Der er ikke blevet givet adgang til Facebook-kontoen. Kontrollér enhedsindstillingerne."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kunne ikke oprette forbindelse til Facebook. Kontrollér din netværksforbindelse, og prøv igen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Din Facebook-adgangskode er ændret. For at bekræfte din adgangskode skal du åbne Indstillinger > Facebook og trykke på dit navn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke blevet konfigureret på enheden."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Din konto er ikke bekræftet. Log på www.facebook.com, og følg instruktionerne."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge på apps på nuværende tidspunkt. Log på www.facebook.com, og følg instruktionerne."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du har styringen – vælg de oplysninger, som du vil dele med apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log på"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Del"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ikke dig?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekræft login"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsæt som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings deleted file mode 100644 index 1e470805..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besuche %@ und gib den oben angezeigten Code ein."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Um dein Konto zu verbinden, öffne die Facebook-App auf deinem Mobilgerät und prüfe, ob du Benachrichtigungen erhalten hast."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– ODER –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Abbrechen"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Melde dich bitte erneut bei dieser App an, um die Verbindung mit deinem Facebook-Konto wiederherzustellen."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Der Server ist vorübergehend beschäftigt. Bitte versuche es erneut."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Abbrechen"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Abmelden"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Über Facebook angemeldet"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Als %@ angemeldet"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Anmelden"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Mit Facebook fortfahren"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Über Facebook anmelden"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Abmelden"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Auf das Facebook-Konto wurde kein Zugriff erteilt. Überprüfe bitte die Geräteeinstellungen."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Verbindung zu Facebook kann nicht hergestellt werden. Bitte überprüfe deine Netzwerkverbindung und versuche es erneut."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Dein Facebook-Passwort hat sich geändert. Öffne „Einstellungen“ > „Facebook“ und tippe auf deinen Namen, um dein Passwort zu bestätigen."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Das Facebook-Konto wurde für dieses Gerät nicht konfiguriert."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Dein Konto wurde nicht bestätigt. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kannst dich zurzeit nicht bei Apps anmelden. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Es liegt ganz an dir – du kannst dir aussuchen, was du mit Apps teilen möchtest."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Anmelden"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Senden"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Teilen"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nicht du?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Login bestätigen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortfahren als %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings deleted file mode 100644 index 09ca6484..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Επισκεφτείτε τη διεύθυνση %@ και συμπληρώστε τον παραπάνω κωδικό."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Για να συνδεθείτε στο λογαριασμό σας, ανοίξτε την εφαρμογή Facebook στη φορητή συσκευή σας και ελέγξτε τις ειδοποιήσεις."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- Ή -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Άκυρο"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Συνδεθείτε ξανά σε αυτή την εφαρμογή για να συνδέσετε και πάλι το λογαριασμό σας στο Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Ο διακομιστής είναι προσωρινά απασχολημένος, προσπαθήστε ξανά."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Άκυρο"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Αποσύνδεση"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Έχει γίνει σύνδεση μέσω Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Έχει γίνει σύνδεση ως %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Σύνδεση"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Συνεχίστε με το Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Σύνδεση μέσω Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Αποσύνδεση"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Δεν έχει παραχωρηθεί πρόσβαση στο λογαριασμό Facebook. Επαληθεύστε τις ρυθμίσεις της συσκευής σας."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Δεν είναι δυνατή η σύνδεση στο Facebook. Ελέγξτε τη σύνδεση στο δίκτυο και προσπαθήστε ξανά."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ο κωδικός πρόσβασής σας στο Facebook άλλαξε. Για να επιβεβαιώσετε τον κωδικό σας, πηγαίνετε στις Ρυθμίσεις > Facebook και πατήστε το όνομά σας."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Ο λογαριασμός Facebook δεν έχει διαμορφωθεί στη συσκευή."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ο λογαριασμός σας δεν επιβεβαιώθηκε. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Προς το παρόν δεν μπορείτε να συνδεθείτε σε εφαρμογές. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Έχετε τον έλεγχο - επιλέξτε ποιες πληροφορίες θέλετε να κοινοποιούνται στις εφαρμογές."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Σύνδεση"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Αποστολή"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Κοινοποίηση"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Δεν είστε εσείς;"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Επιβεβαίωση σύνδεσης"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Συνέχεια ως %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings deleted file mode 100644 index c88ac076..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings deleted file mode 100644 index e36f841c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Visit %@ and enter the code shown above."; - -/* The 'or' string for smart login instructions */ -"DeviceLogin.SmartLogInOrLabel" = "-- OR --"; - -/* The string for smart login instructions */ -"DeviceLogin.SmartLogInPrompt" = "To connect your account, open the Facebook app on your mobile device and check for notifications."; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancel"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Please log in to this app again to reconnect your Facebook account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "The server is temporarily busy, please try again."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancel"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log out"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logged in using Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logged in as %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continue with Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log in with Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log out"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Access has not been granted to the Facebook account. Verify device settings."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Unable to connect to Facebook. Please check your network connection and try again."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Your Facebook password has changed. To confirm your password, open Settings > Facebook and tap your name."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "The Facebook account has not been configured on the device."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Your account is not confirmed. Please log in to www.facebook.com and follow the instructions given."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "You cannot log in to apps at this time. Please log in to www.facebook.com and follow the instructions given."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "You're in control – choose what information you want to share with apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log In"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Share"; - -/* The title for the alert when smart login requires confirmation */ -"SmartLogin.ConfirmationTitle" = "Confirm Login"; - -/* The format string to continue as for the alert when smart login requires confirmation */ -"SmartLogin.Continue" = "Continue as %@"; - -/* The cancel label for the alert when smart login requires confirmation */ -"SmartLogin.NotYou" = "Not you?"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings deleted file mode 100644 index 0c5ce879..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e ingresa el código que se muestra arriba."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Aceptar"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Inicia sesión de nuevo en esta aplicación para volver a conectarte a tu cuenta de Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Aceptar"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "El servidor está temporalmente ocupado. Vuelve a intentarlo."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Cerrar sesión"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Inicio de sesión"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Salir"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "No se concedió acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión a internet y vuelve a intentarlo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Cambió tu contraseña de Facebook. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "No se configuró la cuenta de Facebook en el dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no está confirmada. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tú decides: elige qué información quieres compartir con las aplicaciones."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Inicio de sesión"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartir"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "¿No eres tú?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings deleted file mode 100644 index 4ecd5d68..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e introduce el código que se muestra arriba."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Aceptar"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Vuelve a iniciar sesión en esta aplicación para volver a conectar tu cuenta de Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Aceptar"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "El servidor está ocupado temporalmente. Vuelve a intentarlo más tarde."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Salir"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Inicio de sesión"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Salir"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "No se ha otorgado acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión de red y vuelve a intentarlo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Tu contraseña de Facebook ha cambiado. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "La cuenta de Facebook no se ha configurado en el dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no se ha confirmado. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tú tienes el control: elige la información que quieres compartir con las aplicaciones."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Inicio de sesión"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartir"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "¿No eres tú?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings deleted file mode 100644 index f51fcaa6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Siirry osoitteeseen %@ ja kirjoita oheinen koodi sivulle."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Pääset liittämään käyttäjätilisi avaamalla Facebook-sovelluksen mobiililaitteellasi ja tarkistamalla ilmoitukset."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- TAI -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Peruuta"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Kirjaudu tähän sovellukseen uudelleen, jotta voit yhdistää Facebook-tilisi uudelleen."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Palvelin on tilapäisesti varattu, yritä uudelleen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Peruuta"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Kirjaudu ulos"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sisäänkirjautunut Facebookin avulla"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sisäänkirjautunut nimellä %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Kirjaudu sisään"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Jatka Facebook-tunnuksilla"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Kirjaudu sisään Facebookin avulla"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Kirjaudu ulos"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Pääsyä Facebook-tiliin ei ole myönnetty. Tarkista laiteasetukset."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Yhteyttä Facebookiin ei voi muodostaa. Tarkista verkkoyhteys ja yritä sitten uudelleen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-salasanasi on vaihdettu. Vahvista salasanasi avaamalla Asetukset > Facebook ja napauttamalla nimeäsi."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-tiliä ei ole määritetty laitteessa."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tiliäsi ei ole vahvistettu. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Et pysty kirjautumaan sovelluksiin tällä hetkellä. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Sinä voit valita, mitä tietoja jaat sovelluksille."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Kirjaudu sisään"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Lähetä"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Jaa"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Etkö tämä ole sinä?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Vahvista sisäänkirjautuminen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Jatka nimellä %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings deleted file mode 100644 index c72600b1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Pumunta sa %@ at ilagay ang code na ipinapakita sa itaas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para ikonekta ang iyong account, buksan ang Facebook app sa iyong cellphone at tumingin ng mga notification."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O KAYA -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Kanselahin"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Mangyaring mag-log in muli sa app na ito para ikonekta muli ang iyong Facebook account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Pansamantalang abala ang server, pakisubukan muli."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Kanselahin"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Mag-log Out"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Naka-log in gamit ang Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Naka-log in bilang si %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Mag-log in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Magatuloy sa Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Mag-log in sa pamamagitan ng Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Mag-log out"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Hindi binigyan ng access ang Facebook account. Beripikahin ang mga setting ng device."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Hindi nakakonekta sa Facebook. Tingnan ang iyong koneksyon sa network at subukan muli."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Nagbago ang iyong password sa Facebook. Para makumpirma ang iyong password, buksan ang Mga Setting > Facebook at i-tap ang iyong pangalan."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Hindi na-configure sa device ang Facebook account."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Hindi nakumpirma ang iyong account. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Hindi ka makakapag-log in sa mga app sa oras na ito. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Ikaw ang may kontrol - piliin kung anong impormasyon ang gusto mong ibahagi sa mga app."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Mag-log In"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Ipadala"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Ibahagi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Hindi ikaw?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "I-confirm ang Pag-log in"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Magpatuloy bilang %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings deleted file mode 100644 index f0511b2e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Consultez la page %@ et saisissez le code indiqué ci-dessus."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Pour connecter votre compte, lancez l’application Facebook sur votre appareil mobile et consultez les notifications."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OU -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuler"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Veuillez vous connecter à nouveau à cette application pour reconnecter votre compte Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Le serveur est temporairement occupé. Veuillez réessayer plus tard."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuler"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Déconnexion"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Connecté(e) à l’aide de Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Connecté(e) en tant que %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Connexion"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuer avec Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Connexion avec Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Déconnexion"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "L’accès au compte Facebook n’a pas été autorisé. Vérifiez les paramètres de l’appareil."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Connexion à Facebook impossible. Vérifiez votre connexion avant de réessayer."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Votre mot de passe Facebook a changé. Pour confirmer votre mot de passe, ouvrez Paramètres > Facebook et saisissez votre nom."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Le compte Facebook n’a pas été configuré sur l’appareil."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Votre compte n’est pas confirmé. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Vous ne pouvez pas vous connecter à des applications pour le moment. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Vous gardez le contrôle. Choisissez les informations que vous souhaitez partager avec les applications."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Connexion"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Envoyer"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Partager"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ce n’est pas vous ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmer la connexion"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuer en tant que %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings deleted file mode 100644 index 95bec7fb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ ની મુલાકાત લો અને ઉપર બતાવ્યા પ્રમાણે કોડ દાખલ કરો."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "તમારા એકાઉન્ટ સાથે જોડાવા માટે, તમારા મોબાઇલ ઉપકરણ પર Facebook એપ્લિકેશન ખોલો અને સૂચનો માટે તપાસો."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- અથવા -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ઠીક"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "રદ કરો"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "તમારા ફેસબુક ખાતાને ફરીથી કનેક્ટ કરવા માટે કૃપા કરીને આ એપ્લિકેશનમાં ફરી લૉગ ઇન કરો."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ઠીક"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "સર્વર અસ્થાયીરૂપે વ્યસ્ત છે, કૃપા કરીને ફરી પ્રયાસ કરો."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "રદ કરો"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "લૉગ આઉટ કરો"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "ફેસબુકનો ઉપયોગ કરીને લૉગ ઇન કરો"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ તરીકે લૉગ ઇન થયાં"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "લૉગ ઇન કરો"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook સાથે ચાલુ રાખો"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "ફેસબુક સાથે લૉગ ઇન કરો"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "લૉગ આઉટ કરો"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "ફેસબુક ખાતા પર ઍક્સેસ આપવામાં આવી નથી. ઉપકરણ સેટિંગ્સ ચકાસો"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "ફેસબુકથી કનેક્ટ કરવામાં અસમર્થ. તમારું નેટવર્ક કનેક્શન તપાસો અને ફરી પ્રયાસ કરો."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "તમારો ફેસબુક પાસવર્ડ બદલાઈ ગયો છે. તમારા પાસવર્ડની પુષ્ટિ કરવા માટે, સેટિંગ્સ > ફેસબુક ખોલો અને તમારા નામ પર ટૅપ કરો."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "ઉપકરણ પર ફેસબુક ખાતું કન્ફિગર કરવામાં આવ્યું નથી."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "તમારા ખાતાની પુષ્ટિ કરવામાં આવી નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "તમે આ સમયે એપ્લિકેશન્સમાં લૉગ ઇન કરી શકતાં નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "તમે નિયંત્રણ કરો છો - તમે એપ્લિકેશન્સ સાથે કઈ માહિતી શેર કરવા માંગો છો તે પસંદ કરો."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "લૉગ ઇન કરો"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "મોકલો"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "શેર કરો"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "તમે નહિ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "લૉગિનની પુષ્ટિ કરો"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ તરીકે ચાલુ રાખો"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings deleted file mode 100644 index be0f033b..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "בקר ב-%@ והזן את הקוד המופיע למעלה."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "כדי לחבר את החשבון שלך, פתח את אפליקציית פייסבוק במכשיר הנייד שלך ובדוק אם יש התראות."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- או -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "אישור"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ביטול"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "התחבר לאפליקציה זו שוב כדי לחבר מחדש את חשבון הפייסבוק שלך."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "אישור"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "השרת עמוס באופן זמני, נסה שוב."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ביטול"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "התנתק"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "מחובר באמצעות פייסבוק"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "מחובר בתור %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "התחבר"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "המשך עם פייסבוק"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "התחבר באמצעות פייסבוק"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "התנתק"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "לא הוענקה גישה לחשבון הפייסבוק. אמת את הגדרות המכשיר."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "לא ניתן להתחבר לפייסבוק. בדוק את החיבור שלך לרשת ונסה שוב."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "סיסמת הפייסבוק שלך השתנתה. כדי לאשר את הסיסמה, פתח את 'הגדרות' > 'פייסבוק' והקש על שמך."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "חשבון הפייסבוק לא הוגדר במכשיר."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "החשבון שלך לא אושר. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "לא ניתן להתחבר לאפליקציות כעת. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "אתה מחליט - בחר איזה מידע אתה רוצה לשתף עם אפליקציות."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "התחבר"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "שלח"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "שתף"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "לא אתה?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "אשר התחברות"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "המשך כ-%@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings deleted file mode 100644 index 16d49ea6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ पर जाएँ और ऊपर दिया गया कोड दर्ज करें."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "अपने खाते को कनेक्ट करने के लिए, अपने मोबाइल एप्लिकेशन में Facebook एप्लिकेशन खोलें और सूचनाओं के लिए जाँच करें."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- या -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ठीक"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "रद्द करें"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "अपने Facebook खाते से फिर से कनेक्ट होने के लिए कृपया इस एप्लिकेशन में फिर से लॉग इन करें."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ठीक"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "सर्वर अस्थायी रूप से व्यस्त है, कृपया फिर से कोशिश करें."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "रद्द करें"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "लॉग आउट करें"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook का उपयोग करके लॉग इन किया हुआ है"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ के रूप में लॉग इन किया हुआ है"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "लॉग इन करें"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook के साथ जारी रखें"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook से लॉग इन करें"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "लॉग आउट"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook खाते को एक्सेस नहीं दी गई है. डिवाइस सेटिंग सत्यापित करें."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook से कनेक्ट होने में असमर्थ. कृपया अपने नेटवर्क कनेक्शन की जाँच करें फिर से प्रयास करें."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "आपका Facebook पासवर्ड बदल गया है. अपना पासवर्ड कन्फ़र्म करने के लिए, सेटिंग > Facebook खोलें और अपना नाम टैप करें."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "डिवाइस पर Facebook खाता कॉन्फ़िगर नहीं किया गया है."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "आपका खाता कन्फ़र्म नहीं किया गया है. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "आप इस समय एप्लिकेशन में लॉग इन नहीं कर सकते. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "आप नियंत्रण में हैं - चुनें कि आप एप्लिकेशन से कौन-सी जानकारी साझा करना चाहते हैं."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "लॉग इन करें"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "भेजें"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "साझा करें"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "आप नहीं हैं?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "लॉग इन कन्फ़र्म करें"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ के रूप में जारी रखें"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings deleted file mode 100644 index 1a30854a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Posjetite adresu %@ i unesite gore prikazan kod."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Da biste povezali račun, otvorite aplikaciju Facebook na mobilnom uređaju i potražite obavijesti."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ILI -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "U redu"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Odustani"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Ponovo se prijavite u ovu aplikaciju kako biste se ponovo povezali s Facebook računom."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "U redu"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Poslužitelj je privremeno zauzet, pokušajte ponovo."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Odustani"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odjavi se"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Prijavljen putem Facebooka"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Prijavljen kao %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Prijavi se"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Nastavite s korištenjem Facebooka"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Prijava putem Facebooka"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odjavi se"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Pristup Facebook računu nije odobren. Provjerite postavke uređaja."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Povezivanje s Facebookom nije uspjelo. Provjerite mrežnu vezu i pokušajte ponovo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Promijenili ste lozinku za Facebook. Za potvrdu lozinke otvorite Postavke > Facebook i dodirnite svoje ime."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Na uređaju nije konfiguriran račun za Facebook."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Vaš račun nije potvrđen. Prijavite se na www.facebook.com i slijedite upute."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "U ovome trenutku prijava u aplikacije nije moguća. Prijavite se na www.facebook.com i slijedite upute."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Vi odlučujete – odaberite koje podatke želite dijeliti u aplikacijama."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Prijava"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Pošalji"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Dijeli"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "To niste vi?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrda prijave"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Nastavi kao %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings deleted file mode 100644 index 81a206e1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Keresd fel a %@ címet, és írd be a fent megjelenített kódot."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "A fiók hozzákapcsolásához nyisd meg a Facebook alkalmazást a mobilkészülékeden, és nézd meg az értesítéseket."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- VAGY -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Mégsem"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Kérjük, jelentkezz be újra ebbe az alkalmazásba, ha szeretnéd ismét összekapcsolni a Facebook-fiókoddal."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "A kiszolgáló átmenetileg foglalt, próbáld meg újra."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Mégsem"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Kijelentkezés"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Bejelentkezve a Facebook használatával"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Bejelentkezve %@ néven"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Bejelentkezés"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Folytatás a Facebookkal"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Bejelentkezés a Facebook használatával"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Kijelentkezés"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "A Facebook-fiókhoz nincs megadva a hozzáférés. Ellenőrizd az eszköz beállításait."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nem sikerült kapcsolódni a Facebookhoz. Ellenőrizd a hálózati kapcsolatot, majd próbáld meg újra."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-jelszavad megváltozott. A jelszó megerősítéséhez nyisd meg a Settings (Beállítások) > Facebook pontot, és koppints a nevedre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A készüléken nincs beállítva a Facebook-fiók."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A fiókod nincs megerősítve. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Jelenleg nem tudsz alkalmazásokba bejelentkezni. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "A döntés a kezedben van: kiválaszthatod, hogy milyen adatokat osztasz meg az alkalmazásokkal."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Bejelentkezés"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Küldés"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Megosztás"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nem te vagy az?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bejelentkezés megerősítése"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Folytatás mint %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings deleted file mode 100644 index da53d0d0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Kunjungi %@ dan masukkan kode yang ditampilkan di atas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akun Anda, buka aplikasi Facebook di perangkat seluler Anda dan periksa pemberitahuan."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Batal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Harap masuk ke aplikasi ini lagi untuk menghubungkan kembali akun Facebook Anda."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server untuk sementara sedang sibuk, harap coba lagi."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Batal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Keluar"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Masuk menggunakan Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Masuk sebagai %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Masuk"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Lanjutkan dengan Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Masuk menggunakan Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Keluar"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Akses belum diberikan ke akun Facebook. Verifikasi pengaturan perangkat."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Tidak dapat terhubung ke Facebook. Periksa koneksi jaringan dan coba lagi."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Kata sandi Facebook Anda telah diubah. Untuk mengonfirmasi kata sandi Anda, buka Pengaturan > Facebook, lalu ketuk nama Anda."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Akun Facebook belum dikonfigurasikan di perangkat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Akun Anda tidak dikonfirmasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Saat ini Anda tidak dapat masuk ke aplikasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Anda memegang kendali - pilih info yang ingin Anda bagikan dengan aplikasi."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Masuk"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Kirim"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Berbagi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Bukan Anda?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Konfirmasikan Masuk"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Lanjutkan sebagai %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings deleted file mode 100644 index 38915663..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e inserisci il codice mostrato sopra."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Per collegare il tuo account, apri l'app Facebook sul tuo dispositivo mobile e controlla se hai notifiche."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OPPURE -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annulla"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Effettua di nuovo l'accesso a questa applicazione per riconnettere il tuo account Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Il server è temporaneamente occupato, riprova."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annulla"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Esci"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Accesso effettuato tramite Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Accesso effettuato come %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Accedi"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continua con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Accedi con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Esci"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "All'account Facebook non è stato concesso l'accesso. Verifica le impostazioni del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Impossibile connettersi a Facebook. Controlla la tua connessione e riprova."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "La tua password di Facebook è stata modificata. Per confermare la password, apri Impostazioni > Facebook e tocca il tuo nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "L'account Facebook non è stato configurato nel dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Il tuo account non è stato verificato. Accedi a www.facebook.com e segui le istruzioni fornite."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Impossibile accedere alle applicazioni al momento. Accedi a www.facebook.com e segui le istruzioni fornite."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Il controllo è nelle tue mani: scegli quali informazioni condividere con le app."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Accedi"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Invia"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Condividi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Non sei tu?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Conferma l'accesso"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continua come %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings deleted file mode 100644 index c4922b5e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@にアクセスし、上に表示されているコードを入力してください。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "アカウントをリンクするには、お使いのモバイル機器でFacebookアプリを開き、お知らせをご確認ください。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- または -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "キャンセル"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "このアプリにもう一度ログインして、Facebookアカウントを再接続してください。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "サーバーが一時的にビジーです。もう一度お試しください。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "キャンセル"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ログアウト"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebookを使用してログイン中"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@としてログイン中"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ログイン"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebookで続ける"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebookでログイン"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ログアウト"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebookアカウントにアクセス権が与えられていません。デバイス設定を確認してください。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebookに接続できませんでした。ネットワーク接続を確認してもう一度お試しください。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebookパスワードが変更されています。パスワードを確認するには、[設定] > [Facebook]の順に開き、名前をタップしてください。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "デバイスにFacebookアカウントが構成されていません。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "アカウントが確認されません。www.facebook.comにログインし、表示される説明に従ってください。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "今はアプリにログインできません。www.facebook.comにログインし、表示される説明に従ってください。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "アプリと共有する情報をコントロールできます。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ログイン"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "送信"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "シェア"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "別のユーザーとしてログイン"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ログインの確認"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@として続行"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings deleted file mode 100644 index 9ecdac9d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings +++ /dev/null @@ -1,71 +0,0 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "ನಿಮ್ಮ ಸ್ಮಾರ್ಟ್‌ ಫೋನ್‌ ಅಥವಾ ಕಂಪ್ಯೂಟರ್‌ನಲ್ಲಿ %@ ಗೆ ಭೇಟಿ ನೀಡಿ ಮತ್ತು ಈ ಕೋಡ್‌ ಅನ್ನು ನಮೂದಿಸಿ:"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ಸರಿ"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ರದ್ದುಮಾಡು"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "ನಿಮ್ಮ Facebook ಖಾತೆಯನ್ನು ಮರುಸಂಪರ್ಕಗೊಳಿಸಲು ಈ ಅಪ್ಲಿಕೇಶನ್‌ನಲ್ಲಿ ಮತ್ತೊಮ್ಮೆ ಲಾಗಿನ್‌ ಮಾಡಿ."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ಸರಿ"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "ಸರ್ವರ್ ತಾತ್ಕಾಲಿಕವಾಗಿ ಕಾರ್ಯನಿರತವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ರದ್ದುಮಾಡು"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ಲಾಗ್‌ ಔಟ್‌"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ಬಳಸಿಕೊಂಡು ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ ರಂತೆ ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ಲಾಗ್‌ ಇನ್‌"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ಅನ್ನು ಮುಂದುವರಿಸಿ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ಮೂಲಕ ಲಾಗ್‌ ಇನ್‌ ಮಾಡಿ"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ಲಾಗ್‌ ಔಟ್‌"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ಖಾತೆಗೆ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಲಾಗಿಲ್ಲ. ಸಾಧನದ ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ಪರಿಶೀಲಿಸಿ."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook ಗೆ ಸಂಪರ್ಕಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನಿಮ್ಮ ನೆಟ್‌ವರ್ಕ್‌ ಸಂಪರ್ಕವನ್ನು ಪರಿಶೀಲಿಸಿ ಹಾಗೂ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "ನಿಮ್ಮ Facebook ಪಾಸ್‌ವರ್ಡ್‌ ಬದಲಿಸಲಾಗಿದೆ. ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್‌ ಖಚಿತಪಡಿಸಲು, ಸೆಟ್ಟಿಂಗ್‌ಗಳು > Facebook ತೆರೆಯಿರಿ ಮತ್ತು ನಿಮ್ಮ ಹೆಸರನ್ನು ಟ್ಯಾಪ್‌ ಮಾಡಿ."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook ಖಾತೆಯನ್ನು ಸಾಧನದಲ್ಲಿ ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿಲ್ಲ."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ದೃಢೀಕರಿಸಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ನೀವು ಈ ಸಮಯದಲ್ಲಿ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗೆ ಲಾಗಿನ್‌ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ನೀವು ನಿಯಂತ್ರಣದಲ್ಲಿರುವಿರಿ - ನೀವು ಅಪ್ಲಿಕೇಶನ್‌ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಹಂಚಿಕೊಳ್ಳಲು ಬಯಸುವ ವಿಷಯವನ್ನು ಆರಿಸಿ."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ಲಾಗ್‌ ಇನ್‌"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ಕಳುಹಿಸಿ"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ಹಂಚಿಕೊಳ್ಳಿ"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings deleted file mode 100644 index f7692eff..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@를 방문하여 위에 표시된 코드를 입력하세요."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "계정을 연결하려면 모바일 기기에서 Facebook 앱을 열고 알림을 확인하세요."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 또는 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "확인"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "취소"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Facebook 계정을 다시 연결하려면 이 앱에 다시 로그인하세요."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "확인"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "일시적으로 서버 사용량이 많아졌습니다. 다시 시도하세요."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "취소"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "로그아웃"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook 계정으로 로그인함"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@(으)로 로그인함"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "로그인"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook으로 계속"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook으로 로그인"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "로그아웃"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook 계정에 대한 액세스가 승인되지 않았습니다. 기기 설정을 확인하세요."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook에 연결할 수 없습니다. 네트워크 연결을 확인하고 다시 시도하세요."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook 비밀번호가 변경되었습니다. 비밀번호를 확인하려면 설정 > Facebook으로 이동하여 이름을 누르세요."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook 계정이 기기에 구성되어 있지 않습니다."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "계정이 확인되지 않았습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "현재 앱에 로그인할 수 없습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "원하는 정보를 선택하여 앱에 공유할 수 있습니다."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "로그인"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "보내기"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "공유하기"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "회원님이 아닌가요?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "로그인 확인"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@님으로 계속"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings deleted file mode 100644 index 8b9ead15..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ സന്ദർശിച്ച്‌ മുകളിൽ കാണിച്ച‌ കോഡ്‌ നൽകുക."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "നിങ്ങളുടെ അക്കൗണ്ട്‌ കണക്‌റ്റുചെയ്യാൻ, നിങ്ങളുടെ മൊബൈൽ ഉപകരണത്തിലെ Facebook ആപ്പ്‌ തുറന്ന്‌ അറിയിപ്പുകൾ പരിശോധിക്കുക."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- അല്ലെങ്കിൽ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ശരി"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "റദ്ദാക്കുക"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "നിങ്ങളുടെ Facebook അക്കൗണ്ടുമായി വീണ്ടും കണക്‌റ്റുചെയ്യുന്നതിന് ഈ ആപ്ലിക്കേഷനിൽ വീണ്ടും ലോഗിൻ ചെയ്യുക."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ശരി"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "സെർവർ താൽക്കാലികമായി തിരക്കിലാണ്, വീണ്ടും ശ്രമിക്കുക."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "റദ്ദാക്കുക"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്‌തു"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ എന്നതായി ലോഗിൻ ചെയ്‌തു"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ലോഗിൻ ചെയ്യുക"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ഉപയോഗിച്ച് തുടരുക"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook അക്കൗണ്ടിലേക്ക് ആക്‌സസ് നൽകിയിട്ടില്ല. ഉപകരണ ക്രമീകരണങ്ങൾ പരിശോധിച്ചുറപ്പിക്കുക."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook-ലേക്ക് കണക്‌റ്റുചെയ്യാനായില്ല. നിങ്ങളുടെ നെറ്റ്‌വർക്ക് കണക്ഷൻ പരിശോധിച്ച് വീണ്ടും ശ്രമിക്കുക."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "നിങ്ങളുടെ Facebook പാസ്‌വേഡ് മാറി. പാ‌സ്‌വേഡ് സ്ഥിരീകരിക്കുന്നതിന് ക്രമീകരണങ്ങൾ > Facebook എന്നത് തുറന്ന് പേര് ടാപ്പുചെയ്യുക."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "ഉപകരണത്തിൽ Facebook അക്കൗണ്ട് കോൺഫിഗർ ചെയ്‌തിട്ടില്ല."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "അക്കൗണ്ട് സ്ഥിരീകരിച്ചു. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "നിങ്ങൾക്ക് ഈ സമയം ആപ്ലിക്കേഷനുകളിലേക്ക് ലോഗിൻ ചെയ്യാനാവില്ല. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "നിങ്ങളുടെ നിയന്ത്രണത്തിലാണ് - നിങ്ങൾക്ക് ആപ്‌സുമായി ഏതെല്ലാം വിവരങ്ങൾ പങ്കിടണമെന്ന് തിരഞ്ഞെടുക്കുക."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ലോഗിൻ ചെയ്യുക"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "അയയ്‌ക്കുക"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "പങ്കിടൂ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "നിങ്ങൾ അല്ലേ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ലോഗിൻ സ്ഥിരീകരിക്കുക"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ആയി തുടരുക"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings deleted file mode 100644 index e857096c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ वर भेट द्या आणि वर दर्शवलेला कोड प्रविष्ट करा."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "तुमचे खाते कनेक्ट करण्यासाठी, तुमच्या मोबाईल उपकरणावर Facebook अॅप उघडा आणि सूचना तपासा."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- किंवा -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ठीक"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "रद्द करा"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "कृपया आपले फेसबुक खाते रीकनेक्ट करण्यासाठी या अनुप्रयोगावर पुन्हा लॉग इन करा."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ठीक"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "सर्व्हर तात्पुरता व्यस्त आहे, कृपया पुन्हा प्रयत्न करा."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "रद्द करा"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "लॉग आउट करा"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "फेसबुक वापरून लॉग इन केले"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ म्हणून लॉग इन केले"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "लॉग इन करा"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook सह चालू ठेवा"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "फेसबुकसह लॉग इन करा"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "लॉग आउट करा"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "फेसबुक खात्यावर प्रवेशास मंजूरी दिली गेली नाही. डिव्हाइस सेटिंग्ज सत्यापित करा."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "फेसबुकशी कनेक्ट करण्यात अक्षम. आपले नेटवर्क कनेक्शन तपासा आणि पुन्हा प्रयत्न करा."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "आपला फेसबुक पासवर्ड बदलला आहे. आपल्या पासवर्डची पुष्टी करण्यासाठी, सेटिंग्ज > फेसबुक उघडा आणि आपले नाव टॅप करा."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "डिव्हाइसवर फेसबुक खाते कॉन्फिगर केले गेले नाही."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "आपल्या खात्याची पुष्टी झाली नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "आपण यावेळी अनुप्रयोगांवर लॉग इन करू शकत नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "तुम्ही नियंत्रणात आहात - तुम्ही कोणती माहिती अॅपसह सामायिक करू इच्छिता ते निवडा."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "लॉग इन करा"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "पाठवा"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "सामायिक करा"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "तुम्ही नाही?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "लॉग इन पुष्टी करा"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ म्हणून चालू ठेवा"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings deleted file mode 100644 index 60b4cdb9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Lawati %@ dan masukkan kod yang ditunjukkan di atas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akaun anda, buka apl Facebook di peranti mudah alih anda dan semak pemberitahuan."; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Bukan anda?"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Batal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Sila log masuk ke aplikasi ini sekali lagi untuk menyambung semula akaun Facebook anda."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Pelayan ini sibuk buat sementara waktu, sila cuba lagi."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Batal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log Keluar"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Dilog masuk menggunakan Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Dilog masuk sebagai %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log masuk"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Teruskan dengan Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log masuk dengan Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log keluar"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Akses ke akaun Facebook tidak diberikan. Sahkan tetapan peranti."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Tidak dapat menyambung ke Facebook. Semak sambungan rangkaian anda dan cuba lagi."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Kata laluan Facebook anda telah ditukar. Untuk mengesahkan kata laluan anda, buka Tetapan > Facebook dan ketik nama anda."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Akaun Facebook masih belum dikonfigurasikan pada peranti."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Akaun anda tidak disahkan. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Anda tidak boleh log masuk ke aplikasi pada masa ini. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Anda yang mengawal - pilih maklumat yang anda ingin kongsi dengan apl."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log Masuk"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Hantar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Kongsi"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Sahkan Log Masuk"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Teruskan sebagai %@"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings deleted file mode 100644 index 3ebb66c3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Gå til %@, og oppgi koden som vises ovenfor."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Koble til kontoen din ved å åpne Facebook-appen på mobilenheten din og se etter varsler."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Avbryt"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Logg deg inn igjen på denne appen for å koble til Facebook-kontoen på nytt."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serveren er midlertidig opptatt. Prøv på nytt."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Avbryt"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Logg ut"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logget inn med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logget inn som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Logg inn"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsett med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Logg inn med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Logg ut"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Det er ikke gitt tilgang til Facebook-kontoen. Bekreft enhetsinnstillinger."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kunne ikke koble til Facebook. Kontroller nettverkstilkoblingen, og prøv på nytt."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-passordet ditt er endret. Bekreft passordet ditt ved å gå til Innstillinger > Facebook og trykke på navnet ditt."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke konfigurert på enheten."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Kontoen din er bekreftet. Logg deg inn på www.facebook.com, og følg instruksjonene."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge deg inn på apper for øyeblikket. Logg deg inn på www.facebook.com, og følg instruksjonene."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du bestemmer – velg hvilke opplysninger du vil dele med appene."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Logg inn"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Del"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ikke deg?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekreft innlogging"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsett som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings deleted file mode 100644 index 160654a4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Ga naar %@ en voer de bovenstaande code in."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Om je account te verbinden, open je de Facebook-app op je mobiele apparaat en controleer of je meldingen ziet."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OF -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuleren"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Meld je nogmaals aan bij deze app om verbinding te maken met je Facebook-account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "De server is tijdelijk niet beschikbaar. Probeer het opnieuw."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuleren"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Afmelden"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Aangemeld via Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Aangemeld als %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Aanmelden"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Doorgaan met Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Aanmelden met Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Afmelden"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Er is geen toegang verleend aan het Facebook-account. Verifieer de apparaatinstellingen."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Er kan geen verbinding worden gemaakt met Facebook. Controleer je netwerkverbinding en probeer het opnieuw."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Je Facebook-wachtwoord is gewijzigd. Open Instellingen > Facebook en tik op je naam om je wachtwoord te bevestigen."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Het Facebook-account is niet geconfigureerd op het apparaat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Je account is niet bevestigd. Meld je aan bij www.facebook.com en volg de instructies."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Je kunt je momenteel niet aanmelden bij apps. Meld je aan bij www.facebook.com en volg de instructies."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Jij hebt de controle. Kies welke informatie je met apps wilt delen."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Aanmelden"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Verzenden"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Delen"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ben jij dit niet?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Aanmelden bevestigen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Doorgaan als %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings deleted file mode 100644 index 07027466..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ ਵਿੱਚ ਜਾਓ ਅਤੇ ਉੱਤੇ ਦਿਖਾਏ ਗਏ ਕੋਡ ਨੂੰ ਦਾਖ਼ਲ ਕਰੋ।"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "ਆਪਣੇ ਖਾਤੇ ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਲਈ, ਆਪਣੀ ਮੋਬਾਈਲ ਡਿਵਾਈਸ 'ਤੇ Facebook ਐਪ ਨੂੰ ਖੋਲ੍ਹੋ ਅਤੇ ਸੂਚਨਾਵਾਂ ਨੂੰ ਦੇਖੋ।"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ਜਾਂ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ਠੀਕ"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ਰੱਦ ਕਰੋ"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੇ Facebook ਖਾਤੇ ਨਾਲ ਮੁੜ ਕਨੈਕਟ ਕਰਨ ਲਈ ਇਸ ਐਪ ਵਿੱਚ ਦੁਬਾਰਾ ਲੌਗ ਇਨ ਕਰੋ।"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ਠੀਕ"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "ਇਹ ਸਰਵਰ ਅਸਥਾਈ ਰੂਪ ਵਿੱਚ ਵਿਅਸਤ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ਰੱਦ ਕਰੋ"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ਦਾ ਉਪਯੋਗ ਕਰਕੇ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ ਵੱਜੋਂ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ਲੌਗ ਇਨ ਕਰੋ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ਦੇ ਨਾਲ ਜਾਰੀ ਰੱਖੋ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ਦੇ ਨਾਲ ਲੌਗ ਇਨ ਕਰੋ"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ਖਾਤੇ ਨੂੰ ਐਕਸੈਸ ਪ੍ਰਦਾਨ ਨਹੀਂ ਕੀਤੀ ਗਈ। ਡਿਵਾਈਸ ਸੈੱਟਿੰਗਜ਼ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਵਿੱਚ ਅਸਮਰਥਿਤ ਆਪਣੇ ਨੈੱਟਵਰਕ ਕਨੈਕਸ਼ਨ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "ਤੁਹਾਡੇ Facebook ਪਾਸਵਰਡ ਨੂੰ ਬਦਲ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਆਪਣੇ ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰਨ ਲਈ, ਸੈੱਟਿੰਗਜ਼ > Facebook ਖੋਲ੍ਹੋ ਅਤੇ ਆਪਣੇ ਨਾਂ ਨੂੰ ਟੈਪ ਕਰੋ।"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook ਖਾਤੇ ਨੂੰ ਡਿਵਾਈਸ 'ਤੇ ਕਨਫ਼ੀਗਰ ਨਹੀਂ ਕੀਤਾ ਗਿਆ ਹੈ।"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "ਤੁਹਾਡੇ ਖਾਤੇ ਦੀ ਪੁਸ਼ਟੀ ਨਹੀਂ ਕੀਤੀ ਗਈ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ਤੁਸੀਂ ਇਸ ਸਮੇਂ ਐਪ ਵਿੱਚ ਲੌਗ ਇਨ ਨਹੀਂ ਕਰ ਸਕਦੇ ਹੋ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ਤੁ\ਸੀਂ ਨਿਯੰਤਰਣ ਵਿੱਚ ਹੋ - ਉਹ ਜਾਣਕਾਰੀ ਚੁਣੋ ਜੋ ਤੁਸੀਂ ਐਪਸ ਦੇ ਨਾਲ ਸਾਂਝੀ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ।"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ਲੌਗ ਇਨ ਕਰੋ"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ਸਾਂਝਾ ਕਰੋ"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ਭੇਜੋ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "ਕੀ ਤੁਸੀਂ ਨਹੀਂ ਹੋ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ਲੌਗਇਨ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ਵੱਜੋਂ ਜਾਰੀ ਰੱਖੋ"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings deleted file mode 100644 index 5b0954f5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Wejdź na stronę %@ i wprowadź podany powyżej kod."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Aby połączyć konto, otwórz aplikację Facebook na urządzeniu mobilnym i sprawdź powiadomienia."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- LUB -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Anuluj"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Zaloguj się jeszcze raz do aplikacji, aby ponownie przyłączyć swoje konto na Facebooku."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serwer jest zajęty, spróbuj później."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Anuluj"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Wyloguj się"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Zalogowano przez Facebooka"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Zalogowano jako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Zaloguj się"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Kontynuuj za pośrednictwem Facebooka"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Zaloguj się przez Facebooka"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Wyloguj się"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Brak dostępu z tego konta na Facebooku. Sprawdź ustawienia urządzenia."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nie można połączyć się z Facebookiem. Sprawdź połączenie sieciowe i spróbuj ponownie."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Twoje hasło do Facebooka zostało zmienione. Aby potwierdzić hasło, otwórz Ustawienia > Facebook i dotknij swojego imienia i nazwiska."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Na tym urządzeniu nie skonfigurowano konta na Facebooku."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Konto niepotwierdzone. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Brak możliwości logowania się do aplikacji. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Masz pełną kontrolę – określ, jakie informacje chcesz udostępniać aplikacjom."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Zaloguj się"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Wyślij"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Udostępnij"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "To nie Ty?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potwierdź logowanie"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Kontynuuj jako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings deleted file mode 100644 index 6ff2c772..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Acesse %@ e introduza o código mostrado acima."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar sua conta, abra o aplicativo Facebook em seu dispositivo móvel e verifique se tem notificações."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– OU –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Entre nesse aplicativo novamente para reconectar sua conta do Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tente novamente."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Sair"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Você entrou usando o Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Conectado como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Entrar"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar com o Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Entrar com o Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Sair"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "O acesso à conta do Facebook não foi permitido. Verifique as configurações do dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Não foi possível se conectar ao Facebook. Verifique sua conexão de rede e tente novamente."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "A sua senha do Facebook foi alterada. Para confirmar a sua senha, abra Configurações > Facebook e toque no seu nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A sua conta não foi confirmada. Entre no site www.facebook.com e siga as instruções fornecidas."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Não é possível entrar em aplicativos neste momento. Entre no site www.facebook.com e siga as instruções fornecidas."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Você é quem controla — escolha quais informações você quer compartilhar com os aplicativos."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Entrar"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Envio"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartilhar"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Não é você?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirme o login"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continue como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings deleted file mode 100644 index 6648e115..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e introduz o código mostrado acima."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para ligares a tua conta, abre a app Facebook no teu dispositivo móvel e verifica se tens notificações."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– OU –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Volta a iniciar sessão nesta aplicação para te ligares novamente à tua conta do Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tenta novamente."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Terminar sessão"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Com sessão iniciada através do Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Com sessão iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Iniciar sessão"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar com o Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sessão com o Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Terminar a sessão"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "O acesso não foi concedido à conta do Facebook. Verificar as definições do dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Não é possível ligar ao Facebook. Verifica a tua ligação à rede e tenta novamente."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "A tua palavra-passe do Facebook foi alterada. Para confirmares a tua palavra-passe, abre as Definições > Facebook e toca no teu nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A tua conta não foi confirmada. Inicia sessão em www.facebook.com e segue as instruções indicadas."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Não podes iniciar sessão em aplicações neste momento. Inicia sessão em www.facebook.com e segue as instruções indicadas."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tens o controlo: escolhe a informação que pretendes partilhar com as apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Iniciar sessão"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Partilhar"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Não és tu?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar Início de Sessão"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings deleted file mode 100644 index 450a9cc8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Откройте страницу %@ и введите представленный выше код."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Чтобы подключить аккаунт, откройте приложение Facebook на мобильном устройстве и проверьте уведомления."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ИЛИ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Отменить"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Войдите в это приложение еще раз, чтобы повторно подключить ваш аккаунт Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Сервер временно загружен, повторите попытку."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Отменить"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Выход"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Выполнен вход с помощью Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Вы вошли как %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Вход"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Продолжить с Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Вход через Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Выход"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Аккаунту Facebook доступ не предоставлен. Проверьте настройки устройства."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Не удалось подключиться к Facebook. Проверьте сетевое подключение и повторите попытку."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ваш пароль Facebook изменен. Чтобы подтвердить пароль, откройте «Настройки» > Facebook и коснитесь вашего имени."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "На устройстве не настроен аккаунт Facebook."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ваш аккаунт не подтвержден. Войдите на сайт www.facebook.com и следуйте инструкциям."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Сейчас нельзя войти в приложения. Войдите на сайт www.facebook.com и следуйте инструкциям."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Вы сами выбираете, какой информацией поделиться с приложениями."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Вход в систему"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Отправить"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Поделиться"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Это не вы?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Подтвердить вход"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Продолжить как %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings deleted file mode 100644 index 859b9b3d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Navštívte stránku %@ a zadajte kód zobrazený vyššie."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Na pripojenie svojho účtu otvorte vo svojom mobilnom zariadení aplikáciu Facebook a skontrolujte upozornenia."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ALEBO -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Zrušiť"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Ak sa chcete znova pripojiť k svojmu účtu na Facebooku, prihláste sa znova do tejto aplikácie."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server je dočasne zaneprázdnený – skúste znova."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Zrušiť"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odhlásiť"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Prihlásený cez Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Prihlásený ako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Prihlásiť sa"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Pokračovať s Facebookom"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Prihlásiť sa cez Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odhlásiť sa"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Danému účtu na Facebooku nebol poskytnutý prístup. Skontrolujte nastavenia zariadenia."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nedá sa pripojiť k Facebooku. Skontrolujte svoje sieťové pripojenie a skúste znova."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Vaše heslo pre Facebook sa zmenilo. Na potvrdenie svojho hesla otvorte Nastavenia > Facebook a ťuknite na svoje meno."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Daný účet na Facebooku nebol nastavený v zariadení."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet nie je potvrdený. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Momentálne sa nemôžete prihlásiť do aplikácií. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Máte to pod kontrolou: vyberte, ktoré informácie chcete zdieľať s aplikáciami."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Prihlásenie sa"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Odoslať"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Zdieľať"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nie ste to vy?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrdiť prihlásenie"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Pokračovať ako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings deleted file mode 100644 index 69c80525..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besök %@ och ange koden som visas ovan."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Koppla ditt konto genom att öppna Facebook-appen på din mobila enhet och söka efter aviseringar."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Avbryt"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Logga in på den här appen igen om du vill ansluta ditt Facebook-konto på nytt."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Servern är upptagen för tillfället. Försök igen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Avbryt"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Logga ut"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Inloggad med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Inloggad som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Logga in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsätt med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Logga in med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Logga ut"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Du har inte fått tillgång till Facebook-kontot. Verifiera enhetsinställningar."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Det går inte att ansluta till Facebook. Kontrollera nätverksanslutningen och försök igen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ditt Facebook-lösenord har ändrats. Bekräfta lösenordet genom att öppna Inställningar > Facebook och skriva in ditt namn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-konto har inte konfigurerats på enheten."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ditt konto har inte bekräftats. Logga in på www.facebook.com och följ instruktionerna."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan inte logga in på appar för närvarande. Logga in på www.facebook.com och följ instruktionerna."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du bestämmer – välj vilken info du vill dela med appar."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Logga in"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Skicka"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Dela"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Inte du?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekräfta inloggning"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsätt som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings deleted file mode 100644 index ec117a9a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ என்பதற்குச் சென்று மேலே தெரியும் குறியீட்டை உள்ளிடவும்."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "உங்கள் கணக்குடன் இணைக்க, உங்கள் மொபைல் சாதனத்தில் Facebook பயன்பாட்டைத் திறந்து அறிவிப்புகளைப் பார்க்கவும்."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- அல்லது -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "சரி"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ரத்துசெய்"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "உங்கள் Facebook கணக்கில் மீண்டும் இணைய, இந்தப் பயன்பாட்டில் மீண்டும் உள்நுழையவும்."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "சரி"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "சேவையகம் தற்காலிகமாக பிஸியாக உள்ளது, மீண்டும் முயற்சிக்கவும்."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ரத்துசெய்"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "வெளியேறு"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook மூலம் உள்நுழையப்பட்டுள்ளது"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ இல் உள்நுழைந்துள்ளீர்கள்"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "உள்நுழைவு"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook இல் தொடரவும்"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook மூலம் உள்நுழையவும்"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "வெளியேறு"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook கணக்கிற்கு அணுகல் வழங்கப்படவில்லை. சாதன அமைப்புகளைச் சரிபார்க்கவும்."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook இல் இணைய முடியவில்லை. இணைய இணைப்பைச் சரிபார்த்து, மீண்டும் முயற்சிக்கவும்."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook கடவுச்சொல் மாற்றப்பட்டது. கடவுச்சொல்லை உறுதிசெய்ய, அமைப்புகள் > Facebook க்கு சென்று உங்கள் பெயரைத் தட்டவும்."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "சாதனத்தில் Facebook கணக்கு உள்ளமைக்கப்படவில்லை."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "உங்கள் கணக்கு உறுதிசெய்யப்படவில்லை. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "இப்போது பயன்பாடுகளில் உள்நுழைய முடியாது. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "பயன்பாடுகளில் எந்தத் தகவலைப் பகிர விரும்புகிறீர்கள் என்பதை நீங்கள் கட்டுப்படுத்தலாம்."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "உள்நுழைவு"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "அனுப்பு"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "பகிர்"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "நீங்கள் இல்லையா?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "உள்நுழைவை உறுதிப்படுத்தவும்"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ஆகத் தொடரவும்"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings deleted file mode 100644 index 0d0bbe0e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ లింక్‌ను సందర్శించి, ఎగువ చూపిన కోడ్‌ను నమోదు చేయండి."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "మీ ఖాతాను అనుసంధానించడానికి, మీ మొబైల్ పరికరంలో Facebook అనువర్తనాన్ని తెరిచి, నోటిఫికేషన్‌లను తనిఖీ చేయండి."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- లేదా -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ఒప్పుకుంటున్నాను"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "రద్దు చేయి"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "దయచేసి మీ Facebook ఖాతాను మళ్లీ కనెక్ట్ చేయడానికి ఈ అప్లికేషన్‌కు మళ్లీ లాగిన్ చేయండి."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ఒప్పుకుంటున్నాను"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "సర్వర్ తాత్కాలికంగా బిజీగా ఉంది, దయచేసి మళ్లీ ప్రయత్నించండి."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "రద్దు చేయి"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "లాగ్ అవుట్ చేయి"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ఉపయోగించి లాగిన్ చేసారు"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@గా లాగిన్ చేసారు"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "లాగిన్ చేయి"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebookతో కొనసాగించండి"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebookతో లాగిన్ చేయి"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "లాగ్ అవుట్ చేయి"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ఖాతాకు ప్రాప్యత మంజూరు చేయలేదు. పరికర సెట్టింగ్‌లను సరిచూడండి."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebookకి కనెక్ట్ చేయడం సాధ్యపడలేదు. మీ నెట్‌వర్క్ కనెక్షన్‌ను తనిఖీ చేసి, మళ్లీ ప్రయత్నించండి."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "మీ Facebook పాస్‌వర్డ్ మారింది. మీ పాస్‌వర్డ్‌ను నిర్ధారించడానికి, సెట్టింగ్‌లు > Facebook తెరిచి, మీ పేరు నొక్కండి."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "పరికరంలో Facebook ఖాతా కాన్ఫిగర్ చేయబడలేదు."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "మీ ఖాతా నిర్ధారించబడలేదు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ప్రస్తుతం మీరు అప్లికేషన్‌లకు లాగిన్ చేయలేరు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "మీకు నియంత్రణ ఉంది - మీరు అనువర్తనాలతో భాగస్వామ్యం చేయాలనుకునే సమాచారాన్ని ఎంచుకోండి."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "లాగిన్ చేయండి"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "పంపు"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "భాగస్వామ్యం చేయండి"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "మీరు కాదా?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "లాగిన్‌ను నిర్ధారించండి"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ వలె కొనసాగండి"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings deleted file mode 100644 index 3883ee8f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "ไปที่ %@ และใส่โค้ดที่แสดงด้านบน"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "หากต้องการเชื่อมต่อบัญชีผู้ใช้ของคุณ ให้เปิดแอพ Facebook บนอุปกรณ์มือถือของคุณและตรวจสอบการแจ้งเตือน"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- หรือ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ตกลง"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ยกเลิก"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "โปรดลงชื่อเข้าใช้แอพนี้อีกครั้งเพื่อเชื่อมต่อบัญชีผู้ใช้ Facebook ของคุณใหม่"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ตกลง"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "เซิร์ฟเวอร์ไม่พร้อมให้บริการชั่วคราว โปรดลองใหม่อีกครั้ง"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ยกเลิก"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ออกจากระบบ"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "เข้าสู่ระบบโดยใช้ Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "เข้าสู่ระบบในชื่อ %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "เข้าสู่ระบบ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "ดำเนินการต่อด้วย Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "เข้าสู่ระบบด้วย Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ออกจากระบบ"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "บัญชีผู้ใช้ Facebook ไม่ได้รับอนุญาตให้เข้าถึง ตรวจสอบการตั้งค่าของอุปกรณ์"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "ไม่สามารถเชื่อมต่อกับ Facebook ตรวจสอบการเชื่อมต่อเครือข่ายและลองอีกครั้ง"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "เปลี่ยนรหัสผ่าน Facebook ของคุณแล้ว เพื่อยืนยันรหัสผ่านของคุณ ให้เปิด การตั้งค่า > Facebook แล้วแตะชื่อของคุณ"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "บัญชีผู้ใช้ Facebook ไม่ได้รับการกำหนดค่าบนอุปกรณ์เครื่องนี้"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "บัญชีผู้ใช้ของคุณไม่ได้รับการยืนยัน โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "คุณไม่สามารถเข้าสู่ระบบของแอพได้ในตอนนี้ โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "คุณเป็นฝ่ายควบคุม โปรดเลือกข้อมูลที่คุณต้องการแชร์ด้วยแอพ"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "เข้าสู่ระบบ"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ส่ง"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "แชร์"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "หากไม่ใช่คุณ"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ยืนยันการเข้าสู่ระบบ"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "ดำเนินการต่อในชื่อ %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings deleted file mode 100644 index 51a5328d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ adresini ziyaret edin ve yukarıda görülen kodu girin."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Hesabınızı bağlamak için, mobil cihazınızda Facebook uygulamasını açın ve bildirimlerinizi kontrol edin."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- YA DA -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Tamam"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "İptal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Facebook hesabına yeniden bağlanmak için lütfen bu uygulamaya tekrar giriş yap."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Tamam"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Sunucu geçici olarak meşgul. Lütfen tekrar dene."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "İptal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Çıkış Yap"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ile giriş yapıldı"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ olarak giriş yapıldı"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Giriş yap"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ile Devam Et"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ile giriş yap"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Çıkış yap"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook hesabına erişim izni verilmedi. Cihaz ayarlarını doğrula."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook'a bağlanılamıyor. Ağ bağlantını kontrol edip tekrar dene."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook şifren değiştirildi. Şifreni onaylamak için Ayarlar > Facebook'u aç ve adına dokunun."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook hesabı cihaz üzerinde yapılandırılmadı."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Hesabın onaylanmadı. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Şu an için uygulamalara giriş yapamazsın. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Kontrol sende. Uygulamalarla paylaşmak istediğin bilgileri seç."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Giriş Yap"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Gönder"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Paylaş"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Sen değil misin?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Girişi Onayla"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ olarak devam et"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings deleted file mode 100644 index d0ddbc61..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Truy cập %@ và nhập mã hiển thị ở trên."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Để kết nối tài khoản của bạn, hãy mở ứng dụng Facebook trên thiết bị di động và kiểm tra thông báo."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- HOẶC -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Hủy"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Vui lòng đăng nhập lại vào ứng dụng này để kết nối lại tài khoản Facebook của bạn."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Máy chủ hiện đang bận, vui lòng thử lại sau."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Hủy"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Đăng xuất"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Đã đăng nhập bằng Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Đã đăng nhập với tư cách là"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Đăng nhập"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Tiếp tục với Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Đăng nhập bằng Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Đăng xuất"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Quyền truy cập chưa được cấp cho tài khoản Facebook. Xác minh thiết lập của thiết bị."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Không thể kết nối với Facebook. Vui lòng kiểm tra kết nối mạng của bạn và thử lại."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Mật khẩu Facebook của bạn đã thay đổi. Để xác nhận mật khẩu của bạn, hãy mở Thiết lập > Facebook và nhấn vào tên bạn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Tài khoản Facebook chưa được định cấu hình trên thiết bị."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tài khoản của bạn không được xác nhận. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Bạn không thể đăng nhập vào các ứng dụng lúc này. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Bạn đang có quyền kiểm soát - hãy chọn thông tin bạn muốn chia sẻ với ứng dụng."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Đăng nhập"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Gửi"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Chia sẻ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Không phải bạn?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Xác nhận đăng nhập"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Tiếp tục với tư cách %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings deleted file mode 100644 index 4273dc25..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "请访问 %@ 并输入上方显示的验证码。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "要关联你的帐户,请在移动设备上打开 Facebook 应用,并查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或者 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "确定"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "请再次登录此应用,以便重新连接您的 Facebook 帐户。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "确定"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "服务器暂时繁忙,请重试。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "退出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "已使用 Facebook 登录"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "已以 %@ 身份登录"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登录"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "继续使用 Facebook 登录"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登录"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "退出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "未授予该 Facebook 帐户访问权限。验证设备设置。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "无法连接到 Facebook。检查网络连接并重试。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密码已更改。要确认密码,请打开设置 > Facebook,并轻触您的姓名。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "未在设备上配置 Facebook 帐户。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帐户未确认。请登录 www.facebook.com,并按照提供的说明操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您此时不能登录应用。请登录 www.facebook.com,并按照提供的说明操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "一切任您掌控 — 选择您想通过应用分享的信息。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登录"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "发送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "不是你?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "确认登录"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以%@的身份继续"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings deleted file mode 100644 index 44f853db..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "前往 %@ 並輸入上方的程式碼。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "若要連結您的帳戶,請在您的流動裝置上開啟 Facebook 應用程式並查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "確定"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "請再次登入此應用程式以重新連接您的 Facebook 帳戶。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "確定"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "登出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "使用 Facebook 登入"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "以 %@ 身分登入"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登入"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "繼續使用 Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登入"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "登出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "沒有獲得 Facebook 帳戶的存取授權。確認裝置設定。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "無法與 Facebook 連線。請檢查網絡連線,然後再試一次。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經變更。要確認密碼,請開啟設定 > Facebook,然後點按您的名稱。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook 帳戶尚未在此裝置上設定。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帳戶尚未確認。請登入 www.facebook.com 並依據指示操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您現時無法登入應用程式。請登入 www.facebook.com 並依據指示操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "控制權在您 - 選擇您要與應用程式分享的資訊。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登入"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "傳送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "這不是您?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "確認登入"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以%@的身分繼續"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings deleted file mode 100644 index b97bd4aa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "請前往 %@ 並輸入上方顯示的代碼。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "若要連結帳號,請從行動裝置開啟 Facebook 應用程式,並查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "是"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "請重新登入此應用程式以重新連結您的 Facebook 帳號。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "是"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "登出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "已使用 Facebook 登入"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "以 %@ 身分登入"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登入"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "繼續使用 Facebook 帳號"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登入"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "登出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "尚未取得授權,無法存取 Facebook 帳號。請確認裝置設定。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "無法連線到 Facebook。請檢查網路連線,然後再試一次。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經更改。若要確認您的密碼,請開啟「設定」>「Facebook」,然後點按您的姓名。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "尚未透過裝置設定 Facebook 帳號。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帳號尚未確認。請登入 www.facebook.com,然後按照指示操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您目前無法登入應用程式。請登入 www.facebook.com,然後按照指示操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "您可以全盤掌控!選擇您想和應用程式分享的資訊內容。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登入"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "傳送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "這不是您?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "確認登入"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以 %@ 身分繼續"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherCreating.h deleted file mode 100644 index 14ad02c1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherCreating.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKATEPublishing; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ATEPublisherCreating) -@protocol FBSDKATEPublisherCreating - -// UNCRUSTIFY_FORMAT_OFF -- (nullable id)createPublisherWithAppID:(NSString *)appID -NS_SWIFT_NAME(createPublisher(appID:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherFactory.h deleted file mode 100644 index 43cc8f17..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherFactory.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -@protocol FBSDKDataPersisting; -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKSettings; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ATEPublisherFactory) -@interface FBSDKATEPublisherFactory : NSObject - -@property (nonatomic) id dataStore; -@property (nonatomic) id graphRequestFactory; -@property (nonatomic) id settings; -@property (nonatomic) id deviceInformationProvider; - -+ (instancetype)new NS_UNAVAILABLE; -- (instancetype)init NS_UNAVAILABLE; - -- (instancetype)initWithDataStore:(id)dataStore - graphRequestFactory:(id)graphRequestFactory - settings:(id)settings - deviceInformationProvider:(id)deviceInformationProvider; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h deleted file mode 100644 index b6556e6c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h +++ /dev/null @@ -1,207 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import -#import -#import - -@protocol FBSDKGraphRequestConnectionFactory; -@protocol FBSDKGraphRequestPiggybackManaging; -@protocol FBSDKErrorCreating; - -NS_ASSUME_NONNULL_BEGIN - -/** - Notification indicating that the `currentAccessToken` has changed. - - the userInfo dictionary of the notification will contain keys - `FBSDKAccessTokenChangeOldKey` and - `FBSDKAccessTokenChangeNewKey`. - */ -FOUNDATION_EXPORT NSNotificationName const FBSDKAccessTokenDidChangeNotification -NS_SWIFT_NAME(AccessTokenDidChange); - -/** - A key in the notification's userInfo that will be set - if and only if the user ID changed between the old and new tokens. - - Token refreshes can occur automatically with the SDK - which do not change the user. If you're only interested in user - changes (such as logging out), you should check for the existence - of this key. The value is a NSNumber with a boolValue. - - On a fresh start of the app where the SDK reads in the cached value - of an access token, this key will also exist since the access token - is moving from a null state (no user) to a non-null state (user). - */ -FOUNDATION_EXPORT NSString *const FBSDKAccessTokenDidChangeUserIDKey -NS_SWIFT_NAME(AccessTokenDidChangeUserIDKey); - -/* - key in notification's userInfo object for getting the old token. - - If there was no old token, the key will not be present. - */ -FOUNDATION_EXPORT NSString *const FBSDKAccessTokenChangeOldKey -NS_SWIFT_NAME(AccessTokenChangeOldKey); - -/* - key in notification's userInfo object for getting the new token. - - If there is no new token, the key will not be present. - */ -FOUNDATION_EXPORT NSString *const FBSDKAccessTokenChangeNewKey -NS_SWIFT_NAME(AccessTokenChangeNewKey); - -/* - A key in the notification's userInfo that will be set - if and only if the token has expired. - */ -FOUNDATION_EXPORT NSString *const FBSDKAccessTokenDidExpireKey -NS_SWIFT_NAME(AccessTokenDidExpireKey); - -/// Represents an immutable access token for using Facebook services. -NS_SWIFT_NAME(AccessToken) -@interface FBSDKAccessToken : NSObject - -/** - The "global" access token that represents the currently logged in user. - - The `currentAccessToken` is a convenient representation of the token of the - current user and is used by other SDK components (like `FBSDKLoginManager`). - */ -@property (class, nullable, nonatomic, copy) FBSDKAccessToken *currentAccessToken NS_SWIFT_NAME(current); - -/// Returns YES if currentAccessToken is not nil AND currentAccessToken is not expired -@property (class, nonatomic, readonly, getter = isCurrentAccessTokenActive, assign) BOOL currentAccessTokenIsActive; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (class, nullable, nonatomic, copy) id tokenCache; - -/// Returns the app ID. -@property (nonatomic, readonly, copy) NSString *appID; - -/// Returns the expiration date for data access -@property (nonatomic, readonly, copy) NSDate *dataAccessExpirationDate; - -/// Returns the known declined permissions. -@property (nonatomic, readonly, copy) NSSet *declinedPermissions - NS_REFINED_FOR_SWIFT; - -/// Returns the known declined permissions. -@property (nonatomic, readonly, copy) NSSet *expiredPermissions - NS_REFINED_FOR_SWIFT; - -/// Returns the expiration date. -@property (nonatomic, readonly, copy) NSDate *expirationDate; - -/// Returns the known granted permissions. -@property (nonatomic, readonly, copy) NSSet *permissions - NS_REFINED_FOR_SWIFT; - -/// Returns the date the token was last refreshed. -@property (nonatomic, readonly, copy) NSDate *refreshDate; - -/// Returns the opaque token string. -@property (nonatomic, readonly, copy) NSString *tokenString; - -/// Returns the user ID. -@property (nonatomic, readonly, copy) NSString *userID; - -/// Returns whether the access token is expired by checking its expirationDate property -@property (nonatomic, readonly, getter = isExpired, assign) BOOL expired; - -/// Returns whether user data access is still active for the given access token -@property (nonatomic, readonly, getter = isDataAccessExpired, assign) BOOL dataAccessExpired; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Initializes a new instance. - @param tokenString the opaque token string. - @param permissions the granted permissions. Note this is converted to NSSet and is only - an NSArray for the convenience of literal syntax. - @param declinedPermissions the declined permissions. Note this is converted to NSSet and is only - an NSArray for the convenience of literal syntax. - @param expiredPermissions the expired permissions. Note this is converted to NSSet and is only - an NSArray for the convenience of literal syntax. - @param appID the app ID. - @param userID the user ID. - @param expirationDate the optional expiration date (defaults to distantFuture). - @param refreshDate the optional date the token was last refreshed (defaults to today). - @param dataAccessExpirationDate the date which data access will expire for the given user - (defaults to distantFuture). - - This initializer should only be used for advanced apps that - manage tokens explicitly. Typical login flows only need to use `FBSDKLoginManager` - along with `+currentAccessToken`. - */ -- (instancetype)initWithTokenString:(NSString *)tokenString - permissions:(NSArray *)permissions - declinedPermissions:(NSArray *)declinedPermissions - expiredPermissions:(NSArray *)expiredPermissions - appID:(NSString *)appID - userID:(NSString *)userID - expirationDate:(nullable NSDate *)expirationDate - refreshDate:(nullable NSDate *)refreshDate - dataAccessExpirationDate:(nullable NSDate *)dataAccessExpirationDate - NS_DESIGNATED_INITIALIZER; - -/** - Convenience getter to determine if a permission has been granted - @param permission The permission to check. - */ -// UNCRUSTIFY_FORMAT_OFF -- (BOOL)hasGranted:(NSString *)permission -NS_SWIFT_NAME(hasGranted(permission:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Compares the receiver to another FBSDKAccessToken - @param token The other token - @return YES if the receiver's values are equal to the other token's values; otherwise NO - */ -- (BOOL)isEqualToAccessToken:(FBSDKAccessToken *)token; - -/** - Refresh the current access token's permission state and extend the token's expiration date, - if possible. - @param completion an optional callback handler that can surface any errors related to permission refreshing. - - On a successful refresh, the currentAccessToken will be updated so you typically only need to - observe the `FBSDKAccessTokenDidChangeNotification` notification. - - If a token is already expired, it cannot be refreshed. - */ -+ (void)refreshCurrentAccessTokenWithCompletion:(nullable FBSDKGraphRequestCompletion)completion; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -+ (void)configureWithTokenCache:(id)tokenCache - graphRequestConnectionFactory:(id)graphRequestConnectionFactory - graphRequestPiggybackManager:(id)graphRequestPiggybackManager - errorFactory:(id)errorFactory -NS_SWIFT_NAME(configure(tokenCache:graphRequestConnectionFactory:graphRequestPiggybackManager:errorFactory:)); - - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAccessTokenProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAccessTokenProviding.h deleted file mode 100644 index d6dd7b92..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAccessTokenProviding.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKAccessToken; -@protocol FBSDKTokenCaching; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AccessTokenProviding) -@protocol FBSDKAccessTokenProviding - -@property (class, nullable, nonatomic, copy) FBSDKAccessToken *currentAccessToken NS_SWIFT_NAME(current); -@property (class, nullable, nonatomic, copy) id tokenCache; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAdvertiserIDProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAdvertiserIDProviding.h deleted file mode 100644 index 7eaa18b1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAdvertiserIDProviding.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AdvertiserIDProviding) -@protocol FBSDKAdvertiserIDProviding - -@property (nullable, nonatomic, readonly, copy) NSString *advertiserID; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAdvertisingTrackingStatus.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAdvertisingTrackingStatus.h deleted file mode 100644 index 730b90da..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAdvertisingTrackingStatus.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef NS_ENUM(NSUInteger, FBSDKAdvertisingTrackingStatus) { - FBSDKAdvertisingTrackingAllowed, - FBSDKAdvertisingTrackingDisallowed, - FBSDKAdvertisingTrackingUnspecified, -} NS_SWIFT_NAME(AdvertisingTrackingStatus); - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppAvailabilityChecker.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppAvailabilityChecker.h deleted file mode 100644 index 21a1f444..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppAvailabilityChecker.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(AppAvailabilityChecker) -@protocol FBSDKAppAvailabilityChecker - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (nonatomic, readonly, assign) BOOL isMessengerAppInstalled; -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (nonatomic, readonly, assign) BOOL isFacebookAppInstalled; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventDropDetermining.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventDropDetermining.h deleted file mode 100644 index 79da059a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventDropDetermining.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventDropDetermining) -@protocol FBSDKAppEventDropDetermining - -@property (nonatomic, readonly) BOOL shouldDropAppEvents; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventName.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventName.h deleted file mode 100644 index 987e6f79..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventName.h +++ /dev/null @@ -1,106 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - @methodgroup Predefined event names for logging events common to many apps. Logging occurs through the `logEvent` family of methods on `FBSDKAppEvents`. - Common event parameters are provided in the `FBSDKAppEventParameterName` constants. - */ - -/// typedef for FBSDKAppEventName -typedef NSString *FBSDKAppEventName NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.Name); - -// MARK: - General Purpose - -/// Log this event when the user clicks an ad. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameAdClick; - -/// Log this event when the user views an ad. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameAdImpression; - -/// Log this event when a user has completed registration with the app. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameCompletedRegistration; - -/// Log this event when the user has completed a tutorial in the app. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameCompletedTutorial; - -/// A telephone/SMS, email, chat or other type of contact between a customer and your business. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameContact; - -/// The customization of products through a configuration tool or other application your business owns. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameCustomizeProduct; - -/// The donation of funds to your organization or cause. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameDonate; - -/// When a person finds one of your locations via web or application, with an intention to visit (example: find product at a local store). -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameFindLocation; - -/// Log this event when the user has rated an item in the app. The valueToSum passed to logEvent should be the numeric rating. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameRated; - -/// The booking of an appointment to visit one of your locations. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameSchedule; - -/// Log this event when a user has performed a search within the app. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameSearched; - -/// The start of a free trial of a product or service you offer (example: trial subscription). -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameStartTrial; - -/// The submission of an application for a product, service or program you offer (example: credit card, educational program or job). -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameSubmitApplication; - -/// The start of a paid subscription for a product or service you offer. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameSubscribe; - -/// Log this event when a user has viewed a form of content in the app. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameViewedContent; - -// MARK: - E-Commerce - -/// Log this event when the user has entered their payment info. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameAddedPaymentInfo; - -/// Log this event when the user has added an item to their cart. The valueToSum passed to logEvent should be the item's price. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameAddedToCart; - -/// Log this event when the user has added an item to their wishlist. The valueToSum passed to logEvent should be the item's price. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameAddedToWishlist; - -/// Log this event when the user has entered the checkout process. The valueToSum passed to logEvent should be the total price in the cart. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameInitiatedCheckout; - -/// Log this event when the user has completed a transaction. The valueToSum passed to logEvent should be the total price of the transaction. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNamePurchased; - -// MARK: - Gaming - -/// Log this event when the user has achieved a level in the app. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameAchievedLevel; - -/// Log this event when the user has unlocked an achievement in the app. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameUnlockedAchievement; - -/// Log this event when the user has spent app credits. The valueToSum passed to logEvent should be the number of credits spent. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameSpentCredits; - -// MARK: - Internal - -/** - Internal values exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameInitializeSDK; -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameBackgroundStatusAvailable; -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameBackgroundStatusDenied; -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameBackgroundStatusRestricted; -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameSDKSettingsChanged; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterName.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterName.h deleted file mode 100644 index ceb5e2d3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterName.h +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - @methodgroup Predefined event name parameters for common additional information to accompany events logged through the `logEvent` family - of methods on `FBSDKAppEvents`. Common event names are provided in the `FBAppEventName*` constants. - */ - -/// typedef for FBSDKAppEventParameterName -typedef NSString *FBSDKAppEventParameterName NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.ParameterName); - -/** - * Parameter key used to specify data for the one or more pieces of content being logged about. - * Data should be a JSON encoded string. - * Example: - * "[{\"id\": \"1234\", \"quantity\": 2, \"item_price\": 5.99}, {\"id\": \"5678\", \"quantity\": 1, \"item_price\": 9.99}]" - */ -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameContent; - -/// Parameter key used to specify an ID for the specific piece of content being logged about. Could be an EAN, article identifier, etc., depending on the nature of the app. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameContentID; - -/// Parameter key used to specify a generic content type/family for the logged event, e.g. "music", "photo", "video". Options to use will vary based upon what the app is all about. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameContentType; - -/// Parameter key used to specify currency used with logged event. E.g. "USD", "EUR", "GBP". See ISO-4217 for specific values. One reference for these is . -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameCurrency; - -/// Parameter key used to specify a description appropriate to the event being logged. E.g., the name of the achievement unlocked in the `FBAppEventNameAchievementUnlocked` event. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameDescription; - -/// Parameter key used to specify the level achieved in a `FBAppEventNameAchieved` event. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameLevel; - -/// Parameter key used to specify the maximum rating available for the `FBAppEventNameRate` event. E.g., "5" or "10". -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameMaxRatingValue; - -/// Parameter key used to specify how many items are being processed for an `FBAppEventNameInitiatedCheckout` or `FBAppEventNamePurchased` event. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameNumItems; - -/// Parameter key used to specify whether payment info is available for the `FBAppEventNameInitiatedCheckout` event. `FBSDKAppEventParameterValueYes` and `FBSDKAppEventParameterValueNo` are good canonical values to use for this parameter. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNamePaymentInfoAvailable; - -/// Parameter key used to specify method user has used to register for the app, e.g., "Facebook", "email", "Twitter", etc -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameRegistrationMethod; - -/// Parameter key used to specify the string provided by the user for a search operation. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameSearchString; - -/// Parameter key used to specify whether the activity being logged about was successful or not. `FBSDKAppEventParameterValueYes` and `FBSDKAppEventParameterValueNo` are good canonical values to use for this parameter. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameSuccess; - -/** Parameter key used to specify the type of ad in an FBSDKAppEventNameAdImpression - * or FBSDKAppEventNameAdClick event. - * E.g. "banner", "interstitial", "rewarded_video", "native" */ -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameAdType; - -/** Parameter key used to specify the unique ID for all events within a subscription - * in an FBSDKAppEventNameSubscribe or FBSDKAppEventNameStartTrial event. */ -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameOrderID; - -/// Parameter key used to specify event name. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameEventName; - -/// Parameter key used to specify event log time. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameLogTime; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterProduct.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterProduct.h deleted file mode 100644 index ff0b036c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterProduct.h +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/// @methodgroup Predefined event name parameters for common additional information to accompany events logged through the `logProductItem` method on `FBSDKAppEvents`. - -/// typedef for FBSDKAppEventParameterProduct -typedef NSString *const FBSDKAppEventParameterProduct NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.ParameterProduct); - -/// Parameter key used to specify the product item's category. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCategory; - -/// Parameter key used to specify the product item's custom label 0. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel0; - -/// Parameter key used to specify the product item's custom label 1. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel1; - -/// Parameter key used to specify the product item's custom label 2. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel2; - -/// Parameter key used to specify the product item's custom label 3. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel3; - -/// Parameter key used to specify the product item's custom label 4. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel4; - -/// Parameter key used to specify the product item's AppLink app URL for iOS. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIOSUrl; - -/// Parameter key used to specify the product item's AppLink app ID for iOS App Store. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIOSAppStoreID; - -/// Parameter key used to specify the product item's AppLink app name for iOS. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIOSAppName; - -/// Parameter key used to specify the product item's AppLink app URL for iPhone. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPhoneUrl; - -/// Parameter key used to specify the product item's AppLink app ID for iPhone App Store. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPhoneAppStoreID; - -/// Parameter key used to specify the product item's AppLink app name for iPhone. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPhoneAppName; - -/// Parameter key used to specify the product item's AppLink app URL for iPad. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPadUrl; - -/// Parameter key used to specify the product item's AppLink app ID for iPad App Store. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPadAppStoreID; - -/// Parameter key used to specify the product item's AppLink app name for iPad. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPadAppName; - -/// Parameter key used to specify the product item's AppLink app URL for Android. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkAndroidUrl; - -/// Parameter key used to specify the product item's AppLink fully-qualified package name for intent generation. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkAndroidPackage; - -/// Parameter key used to specify the product item's AppLink app name for Android. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkAndroidAppName; - -/// Parameter key used to specify the product item's AppLink app URL for Windows Phone. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkWindowsPhoneUrl; - -/// Parameter key used to specify the product item's AppLink app ID, as a GUID, for App Store. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkWindowsPhoneAppID; - -/// Parameter key used to specify the product item's AppLink app name for Windows Phone. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkWindowsPhoneAppName; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterValue.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterValue.h deleted file mode 100644 index 796e2e10..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterValue.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/* - @methodgroup Predefined values to assign to event parameters that accompany events logged through the `logEvent` family - of methods on `FBSDKAppEvents`. Common event parameters are provided in the `FBSDKAppEventParameterName*` constants. - */ - -/// typedef for FBSDKAppEventParameterValue -typedef NSString *const FBSDKAppEventParameterValue NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.ParameterValue); - -/// Yes-valued parameter value to be used with parameter keys that need a Yes/No value -FOUNDATION_EXPORT FBSDKAppEventParameterValue FBSDKAppEventParameterValueYes; - -/// No-valued parameter value to be used with parameter keys that need a Yes/No value -FOUNDATION_EXPORT FBSDKAppEventParameterValue FBSDKAppEventParameterValueNo; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventParametersExtracting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventParametersExtracting.h deleted file mode 100644 index 5c6f61d6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventParametersExtracting.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventParametersExtracting) -@protocol FBSDKAppEventParametersExtracting - -- (NSMutableDictionary *)activityParametersDictionaryForEvent:(NSString *)eventCategory - shouldAccessAdvertisingID:(BOOL)shouldAccessAdvertisingID - userID:(nullable NSString *)userID - userData:(nullable NSString *)userData; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventUserDataType.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventUserDataType.h deleted file mode 100644 index 194443d5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventUserDataType.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -typedef NSString *const FBSDKAppEventUserDataType NS_TYPED_EXTENSIBLE_ENUM; - -/// Parameter key used to specify user's email. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventEmail; - -/// Parameter key used to specify user's first name. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventFirstName; - -/// Parameter key used to specify user's last name. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventLastName; - -/// Parameter key used to specify user's phone. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventPhone; - -/// Parameter key used to specify user's date of birth. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventDateOfBirth; - -/// Parameter key used to specify user's gender. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventGender; - -/// Parameter key used to specify user's city. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventCity; - -/// Parameter key used to specify user's state. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventState; - -/// Parameter key used to specify user's zip. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventZip; - -/// Parameter key used to specify user's country. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventCountry; - -/// Parameter key used to specify user's external id. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventExternalId; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h deleted file mode 100644 index 1a3372c2..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h +++ /dev/null @@ -1,538 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - #import -#endif - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKAccessToken; - -/// Optional plist key ("FacebookLoggingOverrideAppID") for setting `loggingOverrideAppID` -FOUNDATION_EXPORT NSString *const FBSDKAppEventsOverrideAppIDBundleKey -NS_SWIFT_NAME(AppEventsOverrideAppIDBundleKey); - -/** - Client-side event logging for specialized application analytics available through Facebook App Insights - and for use with Facebook Ads conversion tracking and optimization. - - The `FBSDKAppEvents` static class has a few related roles: - - + Logging predefined and application-defined events to Facebook App Insights with a - numeric value to sum across a large number of events, and an optional set of key/value - parameters that define "segments" for this event (e.g., 'purchaserStatus' : 'frequent', or - 'gamerLevel' : 'intermediate') - - + Logging events to later be used for ads optimization around lifetime value. - - + Methods that control the way in which events are flushed out to the Facebook servers. - - Here are some important characteristics of the logging mechanism provided by `FBSDKAppEvents`: - - + Events are not sent immediately when logged. They're cached and flushed out to the Facebook servers - in a number of situations: - - when an event count threshold is passed (currently 100 logged events). - - when a time threshold is passed (currently 15 seconds). - - when an app has gone to background and is then brought back to the foreground. - - + Events will be accumulated when the app is in a disconnected state, and sent when the connection is - restored and one of the above 'flush' conditions are met. - - + The `FBSDKAppEvents` class is thread-safe in that events may be logged from any of the app's threads. - - + The developer can set the `flushBehavior` on `FBSDKAppEvents` to force the flushing of events to only - occur on an explicit call to the `flush` method. - - + The developer can turn on console debug output for event logging and flushing to the server by using - the `FBSDKLoggingBehaviorAppEvents` value in `[FBSettings setLoggingBehavior:]`. - - Some things to note when logging events: - - + There is a limit on the number of unique event names an app can use, on the order of 1000. - + There is a limit to the number of unique parameter names in the provided parameters that can - be used per event, on the order of 25. This is not just for an individual call, but for all - invocations for that eventName. - + Event names and parameter names (the keys in the NSDictionary) must be between 2 and 40 characters, and - must consist of alphanumeric characters, _, -, or spaces. - + The length of each parameter value can be no more than on the order of 100 characters. - */ -NS_SWIFT_NAME(AppEvents) -@interface FBSDKAppEvents : NSObject < - FBSDKEventLogging, - FBSDKAppEventsConfiguring, - FBSDKApplicationActivating, - FBSDKApplicationLifecycleObserving, - FBSDKApplicationStateSetting, - FBSDKSourceApplicationTracking, - FBSDKUserIDProviding -> - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/// The shared instance of AppEvents. -@property (class, nonatomic, readonly, strong) FBSDKAppEvents *shared; - -/// Control over event batching/flushing - -/// The current event flushing behavior specifying when events are sent back to Facebook servers. -@property (nonatomic) FBSDKAppEventsFlushBehavior flushBehavior; - -/** - Set the 'override' App ID for App Event logging. - - In some cases, apps want to use one Facebook App ID for login and social presence and another - for App Event logging. (An example is if multiple apps from the same company share an app ID for login, but - want distinct logging.) By default, this value is `nil`, and defers to the `FBSDKAppEventsOverrideAppIDBundleKey` - plist value. If that's not set, it defaults to `Settings.shared.appID`. - - This should be set before any other calls are made to `AppEvents`. Thus, you should set it in your application - delegate's `application(_:didFinishLaunchingWithOptions:)` method. - */ -@property (nullable, nonatomic, copy) NSString *loggingOverrideAppID; - -/** - The custom user ID to associate with all app events. - - The userID is persisted until it is cleared by passing `nil`. - */ -@property (nullable, nonatomic, copy) NSString *userID; - -/// Returns generated anonymous id that persisted with current install of the app -@property (nonatomic, readonly) NSString *anonymousID; - -/* - * Basic event logging - */ - -/** - Log an event with just an event name. - - @param eventName The name of the event to record. Limitations on number of events and name length - are given in the `AppEvents` documentation. - */ -- (void)logEvent:(FBSDKAppEventName)eventName; - -/** - Log an event with an event name and a numeric value to be aggregated with other events of this name. - - @param eventName The name of the event to record. Limitations on number of events and name length - are given in the `AppEvents` documentation. Common event names are provided in `AppEvents.Name` constants. - - @param valueToSum Amount to be aggregated into all events of this event name, and App Insights will report - the cumulative and average value of this amount. - */ -- (void)logEvent:(FBSDKAppEventName)eventName - valueToSum:(double)valueToSum; - -/** - Log an event with an event name and a set of key/value pairs in the parameters dictionary. - Parameter limitations are described above. - - @param eventName The name of the event to record. Limitations on number of events and name construction - are given in the `AppEvents` documentation. Common event names are provided in `AppEvents.Name` constants. - - @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must - be `NSString`s, and the values are expected to be `NSString` or `NSNumber`. Limitations on the number of - parameters and name construction are given in the `AppEvents` documentation. Commonly used parameter names - are provided in `AppEvents.ParameterName` constants. - */ -- (void)logEvent:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters; - -/** - Log an event with an event name, a numeric value to be aggregated with other events of this name, - and a set of key/value pairs in the parameters dictionary. - - @param eventName The name of the event to record. Limitations on number of events and name construction - are given in the `AppEvents` documentation. Common event names are provided in `AppEvents.Name` constants. - - @param valueToSum Amount to be aggregated into all events of this event name, and App Insights will report - the cumulative and average value of this amount. - - @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must - be `NSString`s, and the values are expected to be `NSString` or `NSNumber`. Limitations on the number of - parameters and name construction are given in the `AppEvents` documentation. Commonly used parameter names - are provided in `AppEvents.ParameterName` constants. - */ -- (void)logEvent:(FBSDKAppEventName)eventName - valueToSum:(double)valueToSum - parameters:(nullable NSDictionary *)parameters; - -/** - Log an event with an event name, a numeric value to be aggregated with other events of this name, - and a set of key/value pairs in the parameters dictionary. - - @param eventName The name of the event to record. Limitations on number of events and name construction - are given in the `AppEvents` documentation. Common event names are provided in `AppEvents.Name` constants. - - @param valueToSum Amount to be aggregated into all events of this eventName, and App Insights will report - the cumulative and average value of this amount. Note that this is an `NSNumber`, and a value of `nil` denotes - that this event doesn't have a value associated with it for summation. - - @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must - be `NSString`s, and the values are expected to be `NSString` or `NSNumber`. Limitations on the number of - parameters and name construction are given in the `AppEvents` documentation. Commonly used parameter names - are provided in `AppEvents.ParameterName` constants. - - @param accessToken The optional access token to log the event as. - */ -- (void)logEvent:(FBSDKAppEventName)eventName - valueToSum:(nullable NSNumber *)valueToSum - parameters:(nullable NSDictionary *)parameters - accessToken:(nullable FBSDKAccessToken *)accessToken; - -/* - * Purchase logging - */ - -/** - Log a purchase of the specified amount, in the specified currency. - - @param purchaseAmount Purchase amount to be logged, as expressed in the specified currency. This value - will be rounded to the thousandths place (e.g., 12.34567 becomes 12.346). - - @param currency Currency string (e.g., "USD", "EUR", "GBP"); see ISO-4217 for - specific values. One reference for these is . - - This event immediately triggers a flush of the `AppEvents` event queue, unless the `flushBehavior` is set - to `FBSDKAppEventsFlushBehaviorExplicitOnly`. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)logPurchase:(double)purchaseAmount currency:(NSString *)currency - NS_SWIFT_NAME(logPurchase(amount:currency:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Log a purchase of the specified amount, in the specified currency, also providing a set of - additional characteristics describing the purchase. - - @param purchaseAmount Purchase amount to be logged, as expressed in the specified currency.This value - will be rounded to the thousandths place (e.g., 12.34567 becomes 12.346). - - @param currency Currency string (e.g., "USD", "EUR", "GBP"); see ISO-4217 for - specific values. One reference for these is . - - @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must - be `NSString`s, and the values are expected to be `NSString` or `NSNumber`. Limitations on the number of - parameters and name construction are given in the `AppEvents` documentation. Commonly used parameter names - are provided in `AppEvents.ParameterName` constants. - - This event immediately triggers a flush of the `AppEvents` event queue, unless the `flushBehavior` is set - to `FBSDKAppEventsFlushBehaviorExplicitOnly`. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)logPurchase:(double)purchaseAmount - currency:(NSString *)currency - parameters:(nullable NSDictionary *)parameters - NS_SWIFT_NAME(logPurchase(amount:currency:parameters:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Log a purchase of the specified amount, in the specified currency, also providing a set of - additional characteristics describing the purchase. - - @param purchaseAmount Purchase amount to be logged, as expressed in the specified currency.This value - will be rounded to the thousandths place (e.g., 12.34567 becomes 12.346). - - @param currency Currency string (e.g., "USD", "EUR", "GBP"); see ISO-4217 for - specific values. One reference for these is . - - @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must - be `NSString`s, and the values are expected to be `NSString` or `NSNumber`. Limitations on the number of - parameters and name construction are given in the `AppEvents` documentation. Commonly used parameter names - are provided in `AppEvents.ParameterName` constants. - - @param accessToken The optional access token to log the event as. - - This event immediately triggers a flush of the `AppEvents` event queue, unless the `flushBehavior` is set - to `FBSDKAppEventsFlushBehaviorExplicitOnly`. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)logPurchase:(double)purchaseAmount - currency:(NSString *)currency - parameters:(nullable NSDictionary *)parameters - accessToken:(nullable FBSDKAccessToken *)accessToken - NS_SWIFT_NAME(logPurchase(amount:currency:parameters:accessToken:)); -// UNCRUSTIFY_FORMAT_ON - -/* - * Push Notifications Logging - */ - -/** - Log an app event that tracks that the application was open via Push Notification. - - @param payload Notification payload received via `UIApplicationDelegate`. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)logPushNotificationOpen:(NSDictionary *)payload - NS_SWIFT_NAME(logPushNotificationOpen(payload:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Log an app event that tracks that a custom action was taken from a push notification. - - @param payload Notification payload received via `UIApplicationDelegate`. - @param action Name of the action that was taken. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)logPushNotificationOpen:(NSDictionary *)payload action:(NSString *)action - NS_SWIFT_NAME(logPushNotificationOpen(payload:action:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Uploads product catalog product item as an app event - - @param itemID Unique ID for the item. Can be a variant for a product. - Max size is 100. - @param availability If item is in stock. Accepted values are: - in stock - Item ships immediately - out of stock - No plan to restock - preorder - Available in future - available for order - Ships in 1-2 weeks - discontinued - Discontinued - @param condition Product condition: new, refurbished or used. - @param description Short text describing product. Max size is 5000. - @param imageLink Link to item image used in ad. - @param link Link to merchant's site where someone can buy the item. - @param title Title of item. - @param priceAmount Amount of purchase, in the currency specified by the 'currency' - parameter. This value will be rounded to the thousandths place - (e.g., 12.34567 becomes 12.346). - @param currency Currency string (e.g., "USD", "EUR", "GBP"); see ISO-4217 for - specific values. One reference for these is . - @param gtin Global Trade Item Number including UPC, EAN, JAN and ISBN - @param mpn Unique manufacture ID for product - @param brand Name of the brand - Note: Either gtin, mpn or brand is required. - @param parameters Optional fields for deep link specification. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)logProductItem:(NSString *)itemID - availability:(FBSDKProductAvailability)availability - condition:(FBSDKProductCondition)condition - description:(NSString *)description - imageLink:(NSString *)imageLink - link:(NSString *)link - title:(NSString *)title - priceAmount:(double)priceAmount - currency:(NSString *)currency - gtin:(nullable NSString *)gtin - mpn:(nullable NSString *)mpn - brand:(nullable NSString *)brand - parameters:(nullable NSDictionary *)parameters - NS_SWIFT_NAME(logProductItem(id:availability:condition:description:imageLink:link:title:priceAmount:currency:gtin:mpn:brand:parameters:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Notifies the events system that the app has launched and, when appropriate, logs an "activated app" event. - This function is called automatically from FBSDKApplicationDelegate applicationDidBecomeActive, unless - one overrides 'FacebookAutoLogAppEventsEnabled' key to false in the project info plist file. - In case 'FacebookAutoLogAppEventsEnabled' is set to false, then it should typically be placed in the - app delegates' `applicationDidBecomeActive:` method. - - This method also takes care of logging the event indicating the first time this app has been launched, which, among other things, is used to - track user acquisition and app install ads conversions. - - `activateApp` will not log an event on every app launch, since launches happen every time the app is backgrounded and then foregrounded. - "activated app" events will be logged when the app has not been active for more than 60 seconds. This method also causes a "deactivated app" - event to be logged when sessions are "completed", and these events are logged with the session length, with an indication of how much - time has elapsed between sessions, and with the number of background/foreground interruptions that session had. This data - is all visible in your app's App Events Insights. - */ -- (void)activateApp; - -/* - * Push Notifications Registration and Uninstall Tracking - */ - -/** - Sets and sends device token to register the current application for push notifications. - - Sets and sends a device token from the `Data` representation that you get from - `UIApplicationDelegate.application(_:didRegisterForRemoteNotificationsWithDeviceToken:)`. - - @param deviceToken Device token data. - */ -- (void)setPushNotificationsDeviceToken:(nullable NSData *)deviceToken; - -/** - Sets and sends device token string to register the current application for push notifications. - - Sets and sends a device token string - - @param deviceTokenString Device token string. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)setPushNotificationsDeviceTokenString:(nullable NSString *)deviceTokenString -NS_SWIFT_NAME(setPushNotificationsDeviceToken(_:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Explicitly kick off flushing of events to Facebook. This is an asynchronous method, but it does initiate an immediate - kick off. Server failures will be reported through the NotificationCenter with notification ID `FBSDKAppEventsLoggingResultNotification`. - */ -- (void)flush; - -/** - Creates a request representing the Graph API call to retrieve a Custom Audience "third party ID" for the app's Facebook user. - Callers will send this ID back to their own servers, collect up a set to create a Facebook Custom Audience with, - and then use the resultant Custom Audience to target ads. - - The JSON in the request's response will include a "custom_audience_third_party_id" key/value pair with the value being the ID retrieved. - This ID is an encrypted encoding of the Facebook user's ID and the invoking Facebook app ID. - Multiple calls with the same user will return different IDs, thus these IDs cannot be used to correlate behavior - across devices or applications, and are only meaningful when sent back to Facebook for creating Custom Audiences. - - The ID retrieved represents the Facebook user identified in the following way: if the specified access token is valid, - the ID will represent the user associated with that token; otherwise the ID will represent the user logged into the - native Facebook app on the device. If there is no native Facebook app, no one is logged into it, or the user has opted out - at the iOS level from ad tracking, then a `nil` ID will be returned. - - This method returns `nil` if either the user has opted-out (via iOS) from Ad Tracking, the app itself has limited event usage - via the `Settings.shared.isEventDataUsageLimited` flag, or a specific Facebook user cannot be identified. - - @param accessToken The access token to use to establish the user's identity for users logged into Facebook through this app. - If `nil`, then `AccessToken.current` is used. - */ -// UNCRUSTIFY_FORMAT_OFF -- (nullable FBSDKGraphRequest *)requestForCustomAudienceThirdPartyIDWithAccessToken:(nullable FBSDKAccessToken *)accessToken -NS_SWIFT_NAME(requestForCustomAudienceThirdPartyID(accessToken:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Sets custom user data to associate with all app events. All user data are hashed - and used to match Facebook user from this instance of an application. - - The user data will be persisted between application instances. - - @param email user's email - @param firstName user's first name - @param lastName user's last name - @param phone user's phone - @param dateOfBirth user's date of birth - @param gender user's gender - @param city user's city - @param state user's state - @param zip user's zip - @param country user's country - */ - -// UNCRUSTIFY_FORMAT_OFF -- (void)setUserEmail:(nullable NSString *)email - firstName:(nullable NSString *)firstName - lastName:(nullable NSString *)lastName - phone:(nullable NSString *)phone - dateOfBirth:(nullable NSString *)dateOfBirth - gender:(nullable NSString *)gender - city:(nullable NSString *)city - state:(nullable NSString *)state - zip:(nullable NSString *)zip - country:(nullable NSString *)country -NS_SWIFT_NAME(setUser(email:firstName:lastName:phone:dateOfBirth:gender:city:state:zip:country:)); -// UNCRUSTIFY_FORMAT_ON - -/// Returns the set user data else nil -- (nullable NSString *)getUserData; - -/// Clears the current user data -- (void)clearUserData; - -/** - Sets custom user data to associate with all app events. All user data are hashed - and used to match Facebook user from this instance of an application. - - The user data will be persisted between application instances. - - @param data data - @param type data type, e.g. FBSDKAppEventEmail, FBSDKAppEventPhone - */ -- (void)setUserData:(nullable NSString *)data - forType:(FBSDKAppEventUserDataType)type; - -/// Clears the current user data of certain type -- (void)clearUserDataForType:(FBSDKAppEventUserDataType)type; - -#if !TARGET_OS_TV -/** - Intended to be used as part of a hybrid webapp. - If you call this method, the FB SDK will inject a new JavaScript object into your webview. - If the FB Pixel is used within the webview, and references the app ID of this app, - then it will detect the presence of this injected JavaScript object - and pass Pixel events back to the FB SDK for logging using the AppEvents framework. - - @param webView The webview to augment with the additional JavaScript behavior - */ -- (void)augmentHybridWebView:(WKWebView *)webView; -#endif - -/* - * Unity helper functions - */ - -/** - Set whether Unity is already initialized. - - @param isUnityInitialized Whether Unity is initialized. - */ -- (void)setIsUnityInitialized:(BOOL)isUnityInitialized; - -/// Send event bindings to Unity -- (void)sendEventBindingsToUnity; - -/* - * SDK Specific Event Logging - * Do not call directly outside of the SDK itself. - */ - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)logInternalEvent:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters - isImplicitlyLogged:(BOOL)isImplicitlyLogged; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)logInternalEvent:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters - isImplicitlyLogged:(BOOL)isImplicitlyLogged - accessToken:(nullable FBSDKAccessToken *)accessToken; - -- (void)flushForReason:(FBSDKAppEventsFlushReason)flushReason; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguration.h deleted file mode 100644 index 0848a811..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguration.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsConfiguration) -@interface FBSDKAppEventsConfiguration : NSObject - -@property (nonatomic, readonly, assign) FBSDKAdvertisingTrackingStatus defaultATEStatus; -@property (nonatomic, readonly, assign) BOOL advertiserIDCollectionEnabled; -@property (nonatomic, readonly, assign) BOOL eventCollectionEnabled; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithJSON:(nullable NSDictionary *)dict; - -+ (instancetype)defaultConfiguration; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationManager.h deleted file mode 100644 index 7752943d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationManager.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -typedef void (^FBSDKAppEventsConfigurationManagerBlock)(void); -@protocol FBSDKDataPersisting; -@protocol FBSDKSettings; -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKGraphRequestConnectionFactory; -@protocol FBSDKAppEventsConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsConfigurationManager) -@interface FBSDKAppEventsConfigurationManager : NSObject - -@property (class, nonatomic, readonly) FBSDKAppEventsConfigurationManager *shared; - -@property (nonatomic, readonly) id cachedAppEventsConfiguration; - -#if !DEBUG -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; -#endif - -// UNCRUSTIFY_FORMAT_OFF -- (void) configureWithStore:(id)store - settings:(id)settings - graphRequestFactory:(id)graphRequestFactory - graphRequestConnectionFactory:(id)graphRequestConnectionFactory -NS_SWIFT_NAME(configure(store:settings:graphRequestFactory:graphRequestConnectionFactory:)); -// UNCRUSTIFY_FORMAT_ON - -- (void)loadAppEventsConfigurationWithBlock:(FBSDKAppEventsConfigurationManagerBlock)block; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProtocol.h deleted file mode 100644 index 95e5e0b8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProtocol.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsConfigurationProtocol) -@protocol FBSDKAppEventsConfiguration - -@property (nonatomic, readonly, assign) FBSDKAdvertisingTrackingStatus defaultATEStatus; -@property (nonatomic, readonly, assign) BOOL advertiserIDCollectionEnabled; -@property (nonatomic, readonly, assign) BOOL eventCollectionEnabled; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithJSON:(nullable NSDictionary *)dict; -+ (instancetype)defaultConfiguration; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProviding.h deleted file mode 100644 index 5ee4cfe8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProviding.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsConfigurationProvidingBlock) -typedef void (^FBSDKAppEventsConfigurationProvidingBlock)(void); - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKAppEventsConfiguration; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsConfigurationProviding) -@protocol FBSDKAppEventsConfigurationProviding - -@property (nonatomic, readonly) id cachedAppEventsConfiguration; - -- (void)loadAppEventsConfigurationWithBlock:(FBSDKAppEventsConfigurationProvidingBlock)block; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h deleted file mode 100644 index 3ba4f7b8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsDeviceInfo.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsDeviceInfo) -@interface FBSDKAppEventsDeviceInfo : NSObject - -@property (class, nonnull, nonatomic, readonly) FBSDKAppEventsDeviceInfo *shared; - -@property (nullable, nonatomic, readonly) id settings; - -#if !DEBUG -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; -#endif - -- (void)configureWithSettings:(id)settings -NS_SWIFT_NAME(configure(settings:)); - -#if DEBUG -- (void)resetDependencies; -#endif - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushBehavior.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushBehavior.h deleted file mode 100644 index 872ef491..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushBehavior.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - NS_ENUM (NSUInteger, FBSDKAppEventsFlushBehavior) - - Specifies when `FBSDKAppEvents` sends log events to the server. - */ -typedef NS_ENUM(NSUInteger, FBSDKAppEventsFlushBehavior) { - /// Flush automatically: periodically (once a minute or every 100 logged events) and always at app reactivation. - FBSDKAppEventsFlushBehaviorAuto = 0, - - /** Only flush when the `flush` method is called. When an app is moved to background/terminated, the - events are persisted and re-established at activation, but they will only be written with an - explicit call to `flush`. */ - FBSDKAppEventsFlushBehaviorExplicitOnly, -} NS_SWIFT_NAME(AppEvents.FlushBehavior); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushReason.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushReason.h deleted file mode 100644 index b7677460..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushReason.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -typedef NS_ENUM(NSUInteger, FBSDKAppEventsFlushReason) { - FBSDKAppEventsFlushReasonExplicit, - FBSDKAppEventsFlushReasonTimer, - FBSDKAppEventsFlushReasonSessionChange, - FBSDKAppEventsFlushReasonPersistedEvents, - FBSDKAppEventsFlushReasonEventThreshold, - FBSDKAppEventsFlushReasonEagerlyFlushingEvent, -} NS_SWIFT_NAME(AppEvents.FlushReason); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsNotificationName.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsNotificationName.h deleted file mode 100644 index 159e27d7..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsNotificationName.h +++ /dev/null @@ -1,13 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/// NSNotificationCenter name indicating a result of a failed log flush attempt. The posted object will be an NSError instance. -FOUNDATION_EXPORT NSNotificationName const FBSDKAppEventsLoggingResultNotification -NS_SWIFT_NAME(AppEventsLoggingResult); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h deleted file mode 100644 index 8dad6f89..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsParameterProcessing.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsParameterProcessing) -@protocol FBSDKAppEventsParameterProcessing - -- (void)enable; -- (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters - eventName:(FBSDKAppEventName)eventName; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsReporter.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsReporter.h deleted file mode 100644 index 720d8a68..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsReporter.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsReporter) -@protocol FBSDKAppEventsReporter - -- (void)enable; - -// UNCRUSTIFY_FORMAT_OFF -- (void)recordAndUpdateEvent:(NSString *)event - currency:(nullable NSString *)currency - value:(nullable NSNumber *)value - parameters:(nullable NSDictionary *)parameters -NS_SWIFT_NAME(recordAndUpdate(event:currency:value:parameters:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsState.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsState.h deleted file mode 100644 index 814ee30a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsState.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// this type is not thread safe. -NS_SWIFT_NAME(_AppEventsState) -@interface FBSDKAppEventsState : NSObject - -@property (class, nullable, nonatomic) NSArray> *eventProcessors; - -@property (nonatomic, readonly, copy) NSArray *> *events; -@property (nonatomic, readonly, assign) NSUInteger numSkipped; -@property (nonatomic, readonly, copy) NSString *tokenString; -@property (nonatomic, readonly, copy) NSString *appID; -@property (nonatomic, readonly, getter = areAllEventsImplicit) BOOL allEventsImplicit; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; -- (instancetype)initWithToken:(nullable NSString *)tokenString appID:(nullable NSString *)appID NS_DESIGNATED_INITIALIZER; - -- (void)addEvent:(NSDictionary *)eventDictionary isImplicit:(BOOL)isImplicit; -- (void)addEventsFromAppEventState:(FBSDKAppEventsState *)appEventsState; -- (BOOL)isCompatibleWithAppEventsState:(nullable FBSDKAppEventsState *)appEventsState; -- (BOOL)isCompatibleWithTokenString:(NSString *)tokenString appID:(NSString *)appID; -- (NSString *)JSONStringForEventsIncludingImplicitEvents:(BOOL)includeImplicitEvents; -- (NSString *)extractReceiptData; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateManager.h deleted file mode 100644 index 7df7c8f0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateManager.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -@class FBSDKAppEventsState; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsStateManager) -@interface FBSDKAppEventsStateManager : NSObject - -@property (class, nonatomic, readonly) FBSDKAppEventsStateManager *shared; - -- (void)clearPersistedAppEventsStates; - -// reads all saved event states, appends the param, and writes them all. -- (void)persistAppEventsData:(FBSDKAppEventsState *)appEventsState; - -// returns the array of saved app event states and deletes them. -- (NSArray *)retrievePersistedAppEventsStates; - -@end -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStatePersisting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStatePersisting.h deleted file mode 100644 index 0b398c0b..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStatePersisting.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@class FBSDKAppEventsState; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsStatePersisting) -@protocol FBSDKAppEventsStatePersisting - -- (void)clearPersistedAppEventsStates; -- (void)persistAppEventsData:(FBSDKAppEventsState *)appEventsState; -// patternlint-disable-next-line objc-headers-collection-generics -- (NSArray *)retrievePersistedAppEventsStates; // NSArray - -@end -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateProviding.h deleted file mode 100644 index 3a601647..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateProviding.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKAppEventsState; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsStateProviding) -@protocol FBSDKAppEventsStateProviding - -// UNCRUSTIFY_FORMAT_OFF -- (FBSDKAppEventsState *)createStateWithToken:(NSString *)tokenString appID:(NSString *)appID -NS_SWIFT_NAME(createState(tokenString:appID:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtility.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtility.h deleted file mode 100644 index cfb08c65..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtility.h +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsUtility) -@interface FBSDKAppEventsUtility : NSObject - -#if !DEBUG -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; -#endif - -@property (class, nonatomic) FBSDKAppEventsUtility *shared; -@property (nullable, nonatomic, readonly, copy) NSString *advertiserID; -@property (nonatomic, readonly) BOOL isDebugBuild; -@property (nonatomic, readonly) BOOL shouldDropAppEvents; -@property (nullable, nonatomic) id appEventsConfigurationProvider; -@property (nullable, nonatomic) id deviceInformationProvider; -@property (nullable, nonatomic) id settings; -@property (nullable, nonatomic) id internalUtility; -@property (nullable, nonatomic) id errorFactory; -@property (nullable, nonatomic) id dataStore; - -- (BOOL)isSensitiveUserData:(NSString *)text; -- (BOOL)isStandardEvent:(nullable NSString *)event; - -// UNCRUSTIFY_FORMAT_OFF -- (void)configureWithAppEventsConfigurationProvider:(id)appEventsConfigurationProvider - deviceInformationProvider:(id)deviceInformationProvider - settings:(id)settings - internalUtility:(id)internalUtility - errorFactory:(id)errorFactory - dataStore:(id)dataStore -NS_SWIFT_NAME(configure(appEventsConfigurationProvider:deviceInformationProvider:settings:internalUtility:errorFactory:dataStore:)); -// UNCRUSTIFY_FORMAT_ON - -#if DEBUG -- (void)reset; -#endif - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkCreating.h deleted file mode 100644 index b18d5abe..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkCreating.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -@protocol FBSDKAppLink; -@protocol FBSDKAppLinkTarget; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkCreating) -@protocol FBSDKAppLinkCreating - -// UNCRUSTIFY_FORMAT_OFF -- (id)createAppLinkWithSourceURL:(nullable NSURL *)sourceURL - targets:(NSArray> *)targets - webURL:(nullable NSURL *)webURL - isBackToReferrer:(BOOL)isBackToReferrer -NS_SWIFT_NAME(createAppLink(sourceURL:targets:webURL:isBackToReferrer:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkEventPosting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkEventPosting.h deleted file mode 100644 index 838a4119..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkEventPosting.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkEventPosting) -@protocol FBSDKAppLinkEventPosting - -// UNCRUSTIFY_FORMAT_OFF -- (void)postNotificationForEventName:(NSString *)name - args:(NSDictionary *)args -NS_SWIFT_NAME(postNotification(eventName:arguments:)); - -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationBlock.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationBlock.h deleted file mode 100644 index e44d4317..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationBlock.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Describes the callback for appLinkFromURLInBackground. - @param navType the FBSDKAppLink representing the deferred App Link - @param error the error during the request, if any - */ -typedef void (^ FBSDKAppLinkNavigationBlock)(FBSDKAppLinkNavigationType navType, NSError *_Nullable error) -NS_SWIFT_NAME(AppLinkNavigationBlock); - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationType.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationType.h deleted file mode 100644 index f31d3def..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationType.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -/// The result of calling navigate on a FBSDKAppLinkNavigation -typedef NS_ENUM(NSInteger, FBSDKAppLinkNavigationType) { - /// Indicates that the navigation failed and no app was opened - FBSDKAppLinkNavigationTypeFailure, - /// Indicates that the navigation succeeded by opening the URL in the browser - FBSDKAppLinkNavigationTypeBrowser, - /// Indicates that the navigation succeeded by opening the URL in an app on the device - FBSDKAppLinkNavigationTypeApp, -} NS_SWIFT_NAME(AppLinkNavigationType); - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkProtocol.h deleted file mode 100644 index 0611332a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkProtocol.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@protocol FBSDKAppLinkTarget; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkProtocol) -@protocol FBSDKAppLink - -/// The URL from which this FBSDKAppLink was derived -@property (nullable, nonatomic, readonly, strong) NSURL *sourceURL; - -/** - The ordered list of targets applicable to this platform that will be used - for navigation. - */ -@property (nonatomic, readonly, copy) NSArray> *targets; - -/// The fallback web URL to use if no targets are installed on this device. -@property (nullable, nonatomic, readonly, strong) NSURL *webURL; - -/// return if this AppLink is to go back to referrer. -@property (nonatomic, readonly, getter = isBackToReferrer, assign) BOOL backToReferrer; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolverRequestBuilding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolverRequestBuilding.h deleted file mode 100644 index 5b5dad5f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolverRequestBuilding.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -#if !TARGET_OS_TV - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Protocol exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkResolverRequestBuilding) -@protocol FBSDKAppLinkResolverRequestBuilding - -- (id)requestForURLs:(NSArray *)urls; -- (nullable NSString *)getIdiomSpecificField; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolving.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolving.h deleted file mode 100644 index 41a9276d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolving.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKAppLink; - -/** - Describes the callback for appLinkFromURLInBackground. - @param appLink the FBSDKAppLink representing the deferred App Link - @param error the error during the request, if any - */ -typedef void (^ FBSDKAppLinkBlock)(FBSDKAppLink *_Nullable appLink, NSError *_Nullable error) -NS_SWIFT_NAME(AppLinkBlock); - -/** - Implement this protocol to provide an alternate strategy for resolving - App Links that may include pre-fetching, caching, or querying for App Link - data from an index provided by a service provider. - */ -NS_SWIFT_NAME(AppLinkResolving) -@protocol FBSDKAppLinkResolving - -/** - Asynchronously resolves App Link data for a given URL. - - @param url The URL to resolve into an App Link. - @param handler The completion block that will return an App Link for the given URL. - */ -- (void)appLinkFromURL:(NSURL *)url handler:(FBSDKAppLinkBlock)handler - NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extension"); - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetCreating.h deleted file mode 100644 index 7f417174..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetCreating.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkTargetCreating) -@protocol FBSDKAppLinkTargetCreating - -// UNCRUSTIFY_FORMAT_OFF -- (id)createAppLinkTargetWithURL:(nullable NSURL *)url - appStoreId:(nullable NSString *)appStoreId - appName:(NSString *)appName -NS_SWIFT_NAME(createAppLinkTarget(url:appStoreId:appName:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetProtocol.h deleted file mode 100644 index 2bd5cd39..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetProtocol.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// A protocol to describe an AppLinkTarget -NS_SWIFT_NAME(AppLinkTargetProtocol) -@protocol FBSDKAppLinkTarget - -// UNCRUSTIFY_FORMAT_OFF -+ (instancetype)appLinkTargetWithURL:(nullable NSURL *)url - appStoreId:(nullable NSString *)appStoreId - appName:(NSString *)appName -NS_SWIFT_NAME(init(url:appStoreId:appName:)); -// UNCRUSTIFY_FORMAT_ON - -/// The URL prefix for this app link target -@property (nullable, nonatomic, readonly) NSURL *URL; - -/// The app ID for the app store -@property (nullable, nonatomic, readonly, copy) NSString *appStoreId; - -/// The name of the app -@property (nonatomic, readonly, copy) NSString *appName; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURL.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURL.h deleted file mode 100644 index 40763673..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURL.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkURLProtocol) -@protocol FBSDKAppLinkURL - -@property (nullable, nonatomic, readonly, strong) NSDictionary *appLinkExtras; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLCreating.h deleted file mode 100644 index ff993103..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLCreating.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@protocol FBSDKAppLinkURL; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkURLCreating) -@protocol FBSDKAppLinkURLCreating - -- (id)createAppLinkURLWithURL:(NSURL *)url; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLKeys.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLKeys.h deleted file mode 100644 index 5250ac17..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLKeys.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -FOUNDATION_EXPORT NSString *const FBSDKAppLinkDataParameterName; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkTargetKeyName; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkUserAgentKeyName; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkExtrasKeyName; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkVersionKeyName; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkRefererAppLink; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkRefererAppName; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkRefererUrl; - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h deleted file mode 100644 index 3f3c776d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@protocol FBSDKInfoDictionaryProviding; -@protocol FBSDKUserIDProviding; - -NS_ASSUME_NONNULL_BEGIN - -/** - Describes the callback for fetchDeferredAppLink. - @param url the url representing the deferred App Link - @param error the error during the request, if any - - The url may also have a fb_click_time_utc query parameter that - represents when the click occurred that caused the deferred App Link to be created. - */ -typedef void (^ FBSDKURLBlock)(NSURL *_Nullable url, NSError *_Nullable error) -NS_SWIFT_NAME(URLBlock); - -/// Class containing App Links related utility methods. -NS_SWIFT_NAME(AppLinkUtility) -@interface FBSDKAppLinkUtility : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Call this method from the main thread to fetch deferred applink data if you use Mobile App - Engagement Ads (https://developers.facebook.com/docs/ads-for-apps/mobile-app-ads-engagement). - This may require a network round trip. If successful, the handler is invoked with the link - data (this will only return a valid URL once, and future calls will result in a nil URL - value in the callback). - - @param handler the handler to be invoked if there is deferred App Link data - - The handler may contain an NSError instance to capture any errors. In the - common case where there simply was no app link data, the NSError instance will be nil. - - This method should only be called from a location that occurs after any launching URL has - been processed (e.g., you should call this method from your application delegate's - applicationDidBecomeActive:). - */ -+ (void)fetchDeferredAppLink:(nullable FBSDKURLBlock)handler; - -/** - Call this method to fetch promotion code from the url, if it's present. - - @param url App Link url that was passed to the app. - - @return Promotion code string. - - Call this method to fetch App Invite Promotion Code from applink if present. - This can be used to fetch the promotion code that was associated with the invite when it - was created. This method should be called with the url from the openURL method. - */ -+ (nullable NSString *)appInvitePromotionCodeFromURL:(NSURL *)url; - -/** - Check whether the scheme is defined in the app's URL schemes. - @param scheme the scheme of App Link URL - @return YES if the scheme is defined, otherwise NO. - */ -+ (BOOL)isMatchURLScheme:(NSString *)scheme; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// UNCRUSTIFY_FORMAT_OFF -+ (void)configureWithGraphRequestFactory:(id)graphRequestFactory - infoDictionaryProvider:(id)infoDictionaryProvider - settings:(id)settings - appEventsConfigurationProvider:(id)appEventsConfigurationProvider - advertiserIDProvider:(id)advertiserIDProvider - appEventsDropDeterminer:(id)appEventsDropDeterminer - appEventParametersExtractor:(id)appEventParametersExtractor - appLinkURLFactory:(id)appLinkURLFactory - userIDProvider:(id)userIDProvider - userDataStore:(id)userDataStore -NS_SWIFT_NAME(configure(graphRequestFactory:infoDictionaryProvider:settings:appEventsConfigurationProvider:advertiserIDProvider:appEventsDropDeterminer:appEventParametersExtractor:appLinkURLFactory:userIDProvider:userDataStore:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkVersion.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkVersion.h deleted file mode 100644 index 67f3cfe9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinkVersion.h +++ /dev/null @@ -1,18 +0,0 @@ - -/* -* Copyright (c) Meta Platforms, Inc. and affiliates. -* All rights reserved. -* -* This source code is licensed under the license found in the -* LICENSE file in the root directory of this source tree. -*/ - -#if !TARGET_OS_TV - -#import - -/// The version of the App Link protocol that this library supports -FOUNDATION_EXPORT NSString *const FBSDKAppLinkVersion -NS_SWIFT_NAME(AppLinkVersion); - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinksBlock.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinksBlock.h deleted file mode 100644 index 5e5686d8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppLinksBlock.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@class FBSDKAppLink; - -NS_ASSUME_NONNULL_BEGIN - -/** - Describes the callback for appLinkFromURLInBackground. - @param appLinks the FBSDKAppLinks representing the deferred App Links - @param error the error during the request, if any - */ -typedef void (^ FBSDKAppLinksBlock)(NSDictionary *appLinks, - NSError *_Nullable error) -NS_SWIFT_NAME(AppLinksBlock); - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppStoreReceiptProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppStoreReceiptProviding.h deleted file mode 100644 index 212988a6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppStoreReceiptProviding.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppStoreReceiptProviding) -@protocol FBSDKAppStoreReceiptProviding - -@property (nullable, readonly, copy) NSURL *appStoreReceiptURL; - -@end - -/** - Internal type conformance to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@interface NSBundle () -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppURLSchemeProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppURLSchemeProviding.h deleted file mode 100644 index c8b39faa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAppURLSchemeProviding.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(AppURLSchemeProviding) -@protocol FBSDKAppURLSchemeProviding - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (nonatomic, readonly, copy) NSString *appURLScheme; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)validateURLSchemes; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationActivating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationActivating.h deleted file mode 100644 index 0f430dd8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationActivating.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ApplicationActivating) -@protocol FBSDKApplicationActivating - -- (void)activateApp; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleNotifications.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleNotifications.h deleted file mode 100644 index 1fa96a09..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleNotifications.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -extern NSNotificationName const FBSDKApplicationDidBecomeActiveNotification; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleObserving.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleObserving.h deleted file mode 100644 index e5818a96..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleObserving.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ApplicationLifecycleObserving) -@protocol FBSDKApplicationLifecycleObserving - -- (void)startObservingApplicationLifecycleNotifications - NS_SWIFT_NAME(startObservingApplicationLifecycleNotifications()); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationObserving.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationObserving.h deleted file mode 100644 index 748e496a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationObserving.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/* - Describes any types that optionally responds to various lifecycle events - received by the system and propagated by `ApplicationDelegate`. - */ -@protocol FBSDKApplicationObserving - -@optional -- (void)applicationDidBecomeActive:(nullable UIApplication *)application; -- (void)applicationWillResignActive:(nullable UIApplication *)application; -- (void)applicationDidEnterBackground:(nullable UIApplication *)application; -- (BOOL) application:(UIApplication *)application - didFinishLaunchingWithOptions:(nullable NSDictionary *)launchOptions; - -- (BOOL)application:(UIApplication *)application - openURL:(NSURL *)url - sourceApplication:(nullable NSString *)sourceApplication - annotation:(nullable id)annotation; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationStateSetting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationStateSetting.h deleted file mode 100644 index 1646aef2..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKApplicationStateSetting.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ApplicationStateSetting) -@protocol FBSDKApplicationStateSetting - -- (void)setApplicationState:(UIApplicationState)state; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationStatusUtility.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationStatusUtility.h deleted file mode 100644 index 5ef5712d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationStatusUtility.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -/* FBSDKAuthenticationTokenStatusChecker_h */ - -#if !TARGET_OS_TV - -#import - -#import -#import -#import - -@protocol FBSDKProfileProviding; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AuthenticationStatusUtility) -@interface FBSDKAuthenticationStatusUtility : NSObject - -@property (class, nullable, nonatomic) Class profileSetter; -@property (class, nullable, nonatomic) id sessionDataTaskProvider; -@property (class, nullable, nonatomic) Class accessTokenWallet; -@property (class, nullable, nonatomic) Class authenticationTokenWallet; - -/// Sets dependencies. This must be called during SDK initialization. -+ (void)configureWithProfileSetter:(Class)profileSetter - sessionDataTaskProvider:(id)sessionDataTaskProvider - accessTokenWallet:(Class)accessTokenWallet - authenticationTokenWallet:(Class)authenticationWallet -NS_SWIFT_NAME(configure(profileSetter:sessionDataTaskProvider:accessTokenWallet:authenticationTokenWallet:)); - -/** - Fetches the latest authentication status from server. This will invalidate - the current user session if the returned status is not authorized. - */ -+ (void)checkAuthenticationStatus; - -#if DEBUG - -+ (void)resetClassDependencies; - -#endif - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationToken.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationToken.h deleted file mode 100644 index 344ebb5b..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationToken.h +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -@class FBSDKAuthenticationTokenClaims; -@protocol FBSDKTokenCaching; - -NS_ASSUME_NONNULL_BEGIN - -/// Represent an AuthenticationToken used for a login attempt -NS_SWIFT_NAME(AuthenticationToken) -@interface FBSDKAuthenticationToken : NSObject - -/** - Internal init method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (instancetype)initWithTokenString:(NSString *)tokenString - nonce:(NSString *)nonce - graphDomain:(NSString *)graphDomain; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - The "global" authentication token that represents the currently logged in user. - - The `currentAuthenticationToken` represents the authentication token of the - current user and can be used by a client to verify an authentication attempt. - */ -@property (class, nullable, nonatomic, copy) FBSDKAuthenticationToken *currentAuthenticationToken NS_SWIFT_NAME(current); - -/// The raw token string from the authentication response -@property (nonatomic, readonly, copy) NSString *tokenString; - -/// The nonce from the decoded authentication response -@property (nonatomic, readonly, copy) NSString *nonce; - -/// The graph domain where the user is authenticated. -@property (nonatomic, readonly, copy) NSString *graphDomain; - -/// Returns the claims encoded in the AuthenticationToken -- (nullable FBSDKAuthenticationTokenClaims *)claims; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (class, nullable, nonatomic, copy) id tokenCache; - -#pragma mark - Test methods - -#if DEBUG -- (instancetype)initWithTokenString:(NSString *)tokenString - nonce:(NSString *)nonce; -+ (void)resetCurrentAuthenticationTokenCache; -#endif - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationTokenProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationTokenProviding.h deleted file mode 100644 index c9a7fbef..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationTokenProviding.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -@class FBSDKAuthenticationToken; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AuthenticationTokenProviding) -@protocol FBSDKAuthenticationTokenProviding - -@property (class, nullable, nonatomic, copy) FBSDKAuthenticationToken *currentAuthenticationToken NS_SWIFT_NAME(current); -@property (class, nullable, nonatomic, copy) id tokenCache; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocol.h deleted file mode 100644 index 8e51567a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocol.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -FOUNDATION_EXPORT NSString *const FBSDKBridgeAPIAppIDKey; -FOUNDATION_EXPORT NSString *const FBSDKBridgeAPISchemeSuffixKey; -FOUNDATION_EXPORT NSString *const FBSDKBridgeAPIVersionKey; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(BridgeAPIProtocol) -@protocol FBSDKBridgeAPIProtocol - -// UNCRUSTIFY_FORMAT_OFF -- (nullable NSURL *)requestURLWithActionID:(NSString *)actionID - scheme:(NSString *)scheme - methodName:(NSString *)methodName - parameters:(NSDictionary *)parameters - error:(NSError *_Nullable *)errorRef -NS_SWIFT_NAME(requestURL(actionID:scheme:methodName:parameters:)); -// UNCRUSTIFY_FORMAT_ON - -// UNCRUSTIFY_FORMAT_OFF -- (nullable NSDictionary *)responseParametersForActionID:(NSString *)actionID - queryParameters:(NSDictionary *)queryParameters - cancelled:(nullable BOOL *)cancelledRef - error:(NSError *_Nullable *)errorRef -NS_SWIFT_NAME(responseParameters(actionID:queryParameters:cancelled:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocolType.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocolType.h deleted file mode 100644 index 7f866232..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocolType.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef NS_ENUM(NSUInteger, FBSDKBridgeAPIProtocolType) { - FBSDKBridgeAPIProtocolTypeNative, - FBSDKBridgeAPIProtocolTypeWeb, -}; - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h deleted file mode 100644 index 2c32e9c3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -#import -#import -#import -#import - -@protocol FBSDKInternalURLOpener; -@protocol FBSDKInternalUtility; -@protocol FBSDKSettings; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_BridgeAPIRequest) -@interface FBSDKBridgeAPIRequest : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; -+ (nullable instancetype)bridgeAPIRequestWithProtocolType:(FBSDKBridgeAPIProtocolType)protocolType - scheme:(FBSDKURLScheme)scheme - methodName:(nullable NSString *)methodName - parameters:(nullable NSDictionary *)parameters - userInfo:(nullable NSDictionary *)userInfo; - -@property (nonatomic, readonly, copy) NSString *actionID; -@property (nullable, nonatomic, readonly, copy) NSString *methodName; -@property (nullable, nonatomic, readonly, copy) NSDictionary *parameters; -@property (nonatomic, readonly, assign) FBSDKBridgeAPIProtocolType protocolType; -@property (nonatomic, readonly, copy) FBSDKURLScheme scheme; -@property (nullable, nonatomic, readonly, copy) NSDictionary *userInfo; - -- (nullable NSURL *)requestURL:(NSError *_Nullable *)errorRef; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -+ (void)configureWithInternalURLOpener:(id)internalURLOpener - internalUtility:(id)internalUtility - settings:(id)settings -NS_SWIFT_NAME(configure(internalURLOpener:internalUtility:settings:)); - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestCreating.h deleted file mode 100644 index 5c76020d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestCreating.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -#import - -@protocol FBSDKBridgeAPIRequest; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(BridgeAPIRequestCreating) -@protocol FBSDKBridgeAPIRequestCreating - -- (nullable id)bridgeAPIRequestWithProtocolType:(FBSDKBridgeAPIProtocolType)protocolType - scheme:(NSString *)scheme - methodName:(nullable NSString *)methodName - parameters:(nullable NSDictionary *)parameters - userInfo:(nullable NSDictionary *)userInfo; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestOpening.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestOpening.h deleted file mode 100644 index 14eda8e2..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestOpening.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -#import -#import - -@protocol FBSDKBridgeAPIRequest; -@protocol FBSDKURLOpening; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(BridgeAPIRequestOpening) -@protocol FBSDKBridgeAPIRequestOpening - -- (void)openBridgeAPIRequest:(NSObject *)request - useSafariViewController:(BOOL)useSafariViewController - fromViewController:(nullable UIViewController *)fromViewController - completionBlock:(FBSDKBridgeAPIResponseBlock)completionBlock; - -// UNCRUSTIFY_FORMAT_OFF -- (void)openURLWithSafariViewController:(NSURL *)url - sender:(nullable id)sender - fromViewController:(nullable UIViewController *)fromViewController - handler:(FBSDKSuccessBlock)handler -NS_SWIFT_NAME(openURLWithSafariViewController(url:sender:from:handler:)); -// UNCRUSTIFY_FORMAT_ON - -- (void)openURL:(NSURL *)url - sender:(nullable id)sender - handler:(FBSDKSuccessBlock)handler; -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestProtocol.h deleted file mode 100644 index 4cdbd851..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestProtocol.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -#import - -@protocol FBSDKBridgeAPIProtocol; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(BridgeAPIRequestProtocol) -@protocol FBSDKBridgeAPIRequest - -@property (nonatomic, readonly, copy) NSString *scheme; -@property (nonatomic, readonly, copy) NSString *actionID; -@property (nullable, nonatomic, readonly, copy) NSString *methodName; -@property (nonatomic, readonly, assign) FBSDKBridgeAPIProtocolType protocolType; -@property (nullable, nonatomic, readonly, strong) id protocol; - -- (nullable NSURL *)requestURL:(NSError *_Nullable *)errorRef; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIResponse.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIResponse.h deleted file mode 100644 index 1ccb94b9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIResponse.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@protocol FBSDKBridgeAPIRequest; -@class FBSDKBridgeAPIResponse; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef void (^ FBSDKBridgeAPIResponseBlock)(FBSDKBridgeAPIResponse *response) -NS_SWIFT_NAME(BridgeAPIResponseBlock); - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(BridgeAPIResponse) -@interface FBSDKBridgeAPIResponse : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -+ (instancetype)bridgeAPIResponseWithRequest:(NSObject *)request - error:(nullable NSError *)error; -+ (nullable instancetype)bridgeAPIResponseWithRequest:(NSObject *)request - responseURL:(NSURL *)responseURL - sourceApplication:(nullable NSString *)sourceApplication - error:(NSError *__autoreleasing *)errorRef; -+ (instancetype)bridgeAPIResponseCancelledWithRequest:(NSObject *)request; - -@property (nonatomic, readonly, getter = isCancelled, assign) BOOL cancelled; -@property (nullable, nonatomic, readonly, copy) NSError *error; -@property (nonatomic, readonly, copy) NSObject *request; -@property (nullable, nonatomic, readonly, copy) NSDictionary *responseParameters; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKButton.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKButton.h deleted file mode 100644 index 3ab3b226..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKButton.h +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import -#import - -@class FBSDKIcon; -@protocol FBSDKEventLogging; - -NS_ASSUME_NONNULL_BEGIN - -/// A base class for common SDK buttons. -NS_SWIFT_NAME(FBButton) -@interface FBSDKButton : FBSDKImpressionLoggingButton - -@property (nonatomic, readonly, getter = isImplicitlyDisabled) BOOL implicitlyDisabled; - -- (void)checkImplicitlyDisabled; -- (void)configureWithIcon:(nullable FBSDKIcon *)icon - title:(nullable NSString *)title - backgroundColor:(nullable UIColor *)backgroundColor - highlightedColor:(nullable UIColor *)highlightedColor; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void) configureWithIcon:(nullable FBSDKIcon *)icon - title:(nullable NSString *)title - backgroundColor:(nullable UIColor *)backgroundColor - highlightedColor:(nullable UIColor *)highlightedColor - selectedTitle:(nullable NSString *)selectedTitle - selectedIcon:(nullable FBSDKIcon *)selectedIcon - selectedColor:(nullable UIColor *)selectedColor - selectedHighlightedColor:(nullable UIColor *)selectedHighlightedColor; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (UIColor *)defaultBackgroundColor; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (CGSize)sizeThatFits:(CGSize)size title:(NSString *)title; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (CGSize)textSizeForText:(NSString *)text font:(UIFont *)font constrainedSize:(CGSize)constrainedSize lineBreakMode:(NSLineBreakMode)lineBreakMode; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)logTapEventWithEventName:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -+ (void)configureWithApplicationActivationNotifier:(id)applicationActivationNotifier - eventLogger:(id)eventLogger - accessTokenProvider:(Class)accessTokenProvider -NS_SWIFT_NAME(configure(applicationActivationNotifier:eventLogger:accessTokenProvider:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKButtonImpressionLogging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKButtonImpressionLogging.h deleted file mode 100644 index 806edb40..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKButtonImpressionLogging.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(FBButtonImpressionLogging) -@protocol FBSDKButtonImpressionLogging - -@property (nullable, nonatomic, readonly, copy) NSDictionary *analyticsParameters; -@property (nonatomic, readonly, copy) FBSDKAppEventName impressionTrackingEventName; -@property (nonatomic, readonly, copy) NSString *impressionTrackingIdentifier; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKClientTokenProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKClientTokenProviding.h deleted file mode 100644 index cfa27c89..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKClientTokenProviding.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Protocol exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ClientTokenProviding) -@protocol FBSDKClientTokenProviding - -@property (nullable, nonatomic, readonly, copy) NSString *clientToken; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexer.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexer.h deleted file mode 100644 index 6fd4af98..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexer.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef void (^FBSDKCodelessSettingLoadBlock)(BOOL isCodelessSetupEnabled, NSError *_Nullable error); - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_CodelessIndexer) -@interface FBSDKCodelessIndexer : NSObject - -@property (class, nonatomic, readonly, copy) NSString *extInfo; - -+ (void)enable; - -// UNCRUSTIFY_FORMAT_OFF -+ (void)configureWithGraphRequestFactory:(id)graphRequestFactory - serverConfigurationProvider:(id)serverConfigurationProvider - dataStore:(id)dataStore - graphRequestConnectionFactory:(id)graphRequestConnectionFactory - swizzler:(Class)swizzler - settings:(id)settings - advertiserIDProvider:(id)advertisingIDProvider -NS_SWIFT_NAME(configure(graphRequestFactory:serverConfigurationProvider:dataStore:graphRequestConnectionFactory:swizzler:settings:advertiserIDProvider:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexing.h deleted file mode 100644 index 9917a243..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexing.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_CodelessIndexing) -@protocol FBSDKCodelessIndexing - -+ (void)enable; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKConstants.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKConstants.h deleted file mode 100644 index a319329f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKConstants.h +++ /dev/null @@ -1,214 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - The error domain for all errors from FBSDKCoreKit. - - Error codes from the SDK in the range 0-99 are reserved for this domain. - */ -FOUNDATION_EXPORT NSErrorDomain const FBSDKErrorDomain -NS_SWIFT_NAME(ErrorDomain); - -/* - @methodgroup error userInfo keys - */ - -/** - The userInfo key for the invalid collection for errors with FBSDKErrorInvalidArgument. - - If the invalid argument is a collection, the collection can be found with this key and the individual - invalid item can be found with FBSDKErrorArgumentValueKey. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorArgumentCollectionKey -NS_SWIFT_NAME(ErrorArgumentCollectionKey); - -/// The userInfo key for the invalid argument name for errors with FBSDKErrorInvalidArgument. -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorArgumentNameKey -NS_SWIFT_NAME(ErrorArgumentNameKey); - -/// The userInfo key for the invalid argument value for errors with FBSDKErrorInvalidArgument. -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorArgumentValueKey -NS_SWIFT_NAME(ErrorArgumentValueKey); - -/** - The userInfo key for the message for developers in NSErrors that originate from the SDK. - - The developer message will not be localized and is not intended to be presented within the app. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorDeveloperMessageKey -NS_SWIFT_NAME(ErrorDeveloperMessageKey); - -/// The userInfo key describing a localized description that can be presented to the user. -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorLocalizedDescriptionKey -NS_SWIFT_NAME(ErrorLocalizedDescriptionKey); - -/// The userInfo key describing a localized title that can be presented to the user, used with `FBSDKLocalizedErrorDescriptionKey`. -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorLocalizedTitleKey -NS_SWIFT_NAME(ErrorLocalizedTitleKey); - -/* - @methodgroup FBSDKGraphRequest error userInfo keys - */ - -/** - The userInfo key describing the error category, for error recovery purposes. - - See `FBSDKGraphErrorRecoveryProcessor` and `[FBSDKGraphRequest disableErrorRecovery]`. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorKey -NS_SWIFT_NAME(GraphRequestErrorKey); - -/* - The userInfo key for the Graph API error code. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorGraphErrorCodeKey -NS_SWIFT_NAME(GraphRequestErrorGraphErrorCodeKey); - -/* - The userInfo key for the Graph API error subcode. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorGraphErrorSubcodeKey -NS_SWIFT_NAME(GraphRequestErrorGraphErrorSubcodeKey); - -/* - The userInfo key for the HTTP status code. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorHTTPStatusCodeKey -NS_SWIFT_NAME(GraphRequestErrorHTTPStatusCodeKey); - -/* - The userInfo key for the raw JSON response. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorParsedJSONResponseKey -NS_SWIFT_NAME(GraphRequestErrorParsedJSONResponseKey); - -/* - @methodgroup Common Code Block typedefs - */ - -/// Success Block -typedef void (^ FBSDKCodeBlock)(void) -NS_SWIFT_NAME(CodeBlock); - -/// Error Block -typedef void (^ FBSDKErrorBlock)(NSError *_Nullable error) -NS_SWIFT_NAME(ErrorBlock); - -/// Success Block -typedef void (^ FBSDKSuccessBlock)(BOOL success, NSError *_Nullable error) -NS_SWIFT_NAME(SuccessBlock); - -/* - @methodgroup Enums - */ - -#ifndef NS_ERROR_ENUM - #define NS_ERROR_ENUM(_domain, _name) \ - enum _name : NSInteger _name; \ - enum __attribute__((ns_error_domain(_domain))) _name: NSInteger -#endif - -/** - FBSDKCoreError - Error codes for FBSDKErrorDomain. - */ -typedef NS_ERROR_ENUM (FBSDKErrorDomain, FBSDKCoreError) -{ - /// Reserved. - FBSDKErrorReserved = 0, - - /// The error code for errors from invalid encryption on incoming encryption URLs. - FBSDKErrorEncryption, - - /// The error code for errors from invalid arguments to SDK methods. - FBSDKErrorInvalidArgument, - - /// The error code for unknown errors. - FBSDKErrorUnknown, - - /** - A request failed due to a network error. Use NSUnderlyingErrorKey to retrieve - the error object from the NSURLSession for more information. - */ - FBSDKErrorNetwork, - - /// The error code for errors encountered during an App Events flush. - FBSDKErrorAppEventsFlush, - - /** - An endpoint that returns a binary response was used with FBSDKGraphRequestConnection. - - Endpoints that return image/jpg, etc. should be accessed using NSURLRequest - */ - FBSDKErrorGraphRequestNonTextMimeTypeReturned, - - /** - The operation failed because the server returned an unexpected response. - - You can get this error if you are not using the most recent SDK, or you are accessing a version of the - Graph API incompatible with the current SDK. - */ - FBSDKErrorGraphRequestProtocolMismatch, - - /** - The Graph API returned an error. - - See below for useful userInfo keys (beginning with FBSDKGraphRequestError*) - */ - FBSDKErrorGraphRequestGraphAPI, - - /** - The specified dialog configuration is not available. - - This error may signify that the configuration for the dialogs has not yet been downloaded from the server - or that the dialog is unavailable. Subsequent attempts to use the dialog may succeed as the configuration is loaded. - */ - FBSDKErrorDialogUnavailable, - - /// Indicates an operation failed because a required access token was not found. - FBSDKErrorAccessTokenRequired, - - /// Indicates an app switch (typically for a dialog) failed because the destination app is out of date. - FBSDKErrorAppVersionUnsupported, - - /// Indicates an app switch to the browser (typically for a dialog) failed. - FBSDKErrorBrowserUnavailable, - - /// Indicates that a bridge api interaction was interrupted. - FBSDKErrorBridgeAPIInterruption, - - /// Indicates that a bridge api response creation failed. - FBSDKErrorBridgeAPIResponse, -} NS_SWIFT_NAME(CoreError); - -/** - FBSDKGraphRequestError - Describes the category of Facebook error. See `FBSDKGraphRequestErrorKey`. - */ -typedef NS_ENUM(NSUInteger, FBSDKGraphRequestError) { - /// The default error category that is not known to be recoverable. Check `FBSDKLocalizedErrorDescriptionKey` for a user facing message. - FBSDKGraphRequestErrorOther = 0, - /// Indicates the error is temporary (such as server throttling). While a recoveryAttempter will be provided with the error instance, the attempt is guaranteed to succeed so you can simply retry the operation if you do not want to present an alert. - FBSDKGraphRequestErrorTransient = 1, - /// Indicates the error can be recovered (such as requiring a login). A recoveryAttempter will be provided with the error instance that can take UI action. - FBSDKGraphRequestErrorRecoverable = 2, -} NS_SWIFT_NAME(GraphRequestError); - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT NSString *const DefaultKeychainServicePrefix; - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKContainerViewController.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKContainerViewController.h deleted file mode 100644 index 6dcb6496..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKContainerViewController.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKContainerViewController; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ContainerViewControllerDelegate) -@protocol FBSDKContainerViewControllerDelegate - -- (void)viewControllerDidDisappear:(FBSDKContainerViewController *)viewController animated:(BOOL)animated; - -@end - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ContainerViewController) -@interface FBSDKContainerViewController : UIViewController - -@property (nullable, nonatomic, weak) id delegate; - -- (void)displayChildController:(UIViewController *)childController; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKConversionValueUpdating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKConversionValueUpdating.h deleted file mode 100644 index 4c3814d9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKConversionValueUpdating.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ConversionValueUpdating) -@protocol FBSDKConversionValueUpdating - -+ (void)updateConversionValue:(NSInteger)conversionValue; - -@end - -/** - Internal conformance exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@interface SKAdNetwork (ConversionValueUpdating) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h deleted file mode 100644 index 7f52b43d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h +++ /dev/null @@ -1,741 +0,0 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef FBSDKCOREKIT_SWIFT_H -#define FBSDKCOREKIT_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import CoreGraphics; -@import Foundation; -@import ObjectiveC; -@import StoreKit; -@import UIKit; -#endif - -#import - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBSDKCoreKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - -@class UIApplication; -@class NSUserActivity; -@class NSURL; -@class NSString; -@protocol FBSDKApplicationObserving; - -/// An ApplicationDelegate is designed to post-process the results from Facebook Login -/// or Facebook Dialogs (or any action that requires switching over to the native Facebook -/// app or Safari). -/// The methods in this class are designed to mirror those in UIApplicationDelegate, and you -/// should call them in the respective methods in your application delegate implementation. -SWIFT_CLASS_NAMED("ApplicationDelegate") -@interface FBSDKApplicationDelegate : NSObject -/// Gets the singleton instance. -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKApplicationDelegate * _Nonnull sharedInstance;) -+ (FBSDKApplicationDelegate * _Nonnull)sharedInstance SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -/// Initializes the SDK. -/// If you are using the SDK within the context of the UIApplication lifecycle, do not use this method. -/// Instead use application(_:didFinishLaunchingWithOptions:). -/// As part of SDK initialization, basic auto logging of app events will occur, this can be -/// controlled via the ‘FacebookAutoLogAppEventsEnabled’ key in your project’s Info.plist file. -- (void)initializeSDK; -/// Call this method from the UIApplicationDelegate.application(_:continue:restorationHandler:) method -/// of your application delegate. It should be invoked in order to properly process the web URL (universal link) -/// once the end user is redirected to your app. -/// \param application The application as passed to `UIApplicationDelegate.application(_:continue:restorationHandler:). -/// -/// \param userActivity The user activity as passed to UIApplicationDelegate.application(_:continue:restorationHandler:). -/// -/// -/// returns: -/// true if the URL was intended for the Facebook SDK, false if not. -- (BOOL)application:(UIApplication * _Nonnull)application continueUserActivity:(NSUserActivity * _Nonnull)userActivity; -/// Call this method from the UIApplicationDelegate.application(_:open:options:) method -/// of your application delegate. It should be invoked for the proper processing of responses during interaction -/// with the native Facebook app or Safari as part of an SSO authorization flow or Facebook dialogs. -/// \param application The application as passed to UIApplicationDelegate.application(_:open:options:). -/// -/// \param url The URL as passed to UIApplicationDelegate.application(_:open:options:). -/// -/// \param options The options dictionary as passed to UIApplicationDelegate.application(_:open:options:). -/// -/// -/// returns: -/// true if the URL was intended for the Facebook SDK, false if not. -- (BOOL)application:(UIApplication * _Nonnull)application openURL:(NSURL * _Nonnull)url options:(NSDictionary * _Nonnull)options; -/// Call this method from the UIApplicationDelegate.application(_:openL:sourceApplication:annotation:) method -/// of your application delegate. It should be invoked for the proper processing of responses during interaction -/// with the native Facebook app or Safari as part of an SSO authorization flow or Facebook dialogs. -/// \param application The application as passed to UIApplicationDelegate.application(_:open:sourceApplication:annotation:). -/// -/// \param url The URL as passed to UIApplicationDelegate.application(_:open:sourceApplication:annotation:). -/// -/// \param sourceApplication The source application as passed to UIApplicationDelegate.application(_:open:sourceApplication:annotation:). -/// -/// \param annotation The annotation as passed to UIApplicationDelegate.application(_:open:sourceApplication:annotation:). -/// -/// -/// returns: -/// true if the URL was intended for the Facebook SDK, false if not. -- (BOOL)application:(UIApplication * _Nonnull)application openURL:(NSURL * _Nonnull)url sourceApplication:(NSString * _Nullable)sourceApplication annotation:(id _Nullable)annotation; -/// Call this method from the UIApplicationDelegate.application(_:didFinishLaunchingWithOptions:) method -/// of your application delegate. It should be invoked for the proper use of the Facebook SDK. -/// As part of SDK initialization, basic auto-logging of app events will occur; this can be -/// controlled via the FacebookAutoLogAppEventsEnabled key in the project’s Info.plist file. -/// note: -/// If this method is called after calling initializeSDK, then the return value will always be false. -/// \param application The application as passed to UIApplicationDelegate.application(_:didFinishLaunchingWithOptions:). -/// -/// \param launchOptions The launch options as passed to UIApplicationDelegate.application(_:didFinishLaunchingWithOptions:). -/// -/// -/// returns: -/// true if there are any added application observers that themselves return true from calling application(_:didFinishLaunchingWithOptions:). -/// Otherwise will return false. -- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions; -/// Adds an observer that will be informed about application lifecycle events. -/// note: -/// Observers are weakly held -- (void)addObserver:(id _Nonnull)observer; -/// Removes an observer so that it will no longer be informed about application lifecycle events. -- (void)removeObserver:(id _Nonnull)observer; -@end - - -SWIFT_CLASS_NAMED("AuthenticationTokenClaims") -@interface FBSDKAuthenticationTokenClaims : NSObject -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (nullable instancetype)initWithEncodedClaims:(NSString * _Nonnull)encodedClaims nonce:(NSString * _Nonnull)expectedNonce; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKSettings; - -SWIFT_PROTOCOL_NAMED("CAPIReporter") -@protocol FBSDKCAPIReporter -- (void)enable; -- (void)configureWithFactory:(id _Nonnull)factory settings:(id _Nonnull)settings; -- (void)recordEvent:(NSDictionary * _Nonnull)parameters; -@end - -@class UIImage; -@class UIColor; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("FBIcon") -@interface FBSDKIcon : NSObject -- (CGPathRef _Nullable)pathWith:(CGSize)size SWIFT_WARN_UNUSED_RESULT; -- (UIImage * _Nullable)imageWithSize:(CGSize)size SWIFT_WARN_UNUSED_RESULT; -- (UIImage * _Nullable)imageWithSize:(CGSize)size color:(UIColor * _Nonnull)color SWIFT_WARN_UNUSED_RESULT; -- (UIImage * _Nullable)imageWithSize:(CGSize)size scale:(CGFloat)scale color:(UIColor * _Nonnull)color SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS("_TtC12FBSDKCoreKit25FBSDKAppEventsCAPIManager") -@interface FBSDKAppEventsCAPIManager : NSObject -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKAppEventsCAPIManager * _Nonnull shared;) -+ (FBSDKAppEventsCAPIManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)configureWithFactory:(id _Nonnull)factory settings:(id _Nonnull)settings; -- (void)enable; -- (void)recordEvent:(NSDictionary * _Nonnull)parameters; -@end - - -SWIFT_CLASS("_TtC12FBSDKCoreKit35FBSDKTransformerGraphRequestFactory") -@interface FBSDKTransformerGraphRequestFactory : NSObject -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKTransformerGraphRequestFactory * _Nonnull shared;) -+ (FBSDKTransformerGraphRequestFactory * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)configureWithDatasetID:(NSString * _Nonnull)datasetID url:(NSString * _Nonnull)url accessKey:(NSString * _Nonnull)accessKey; -- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters; -@end - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS("_TtC12FBSDKCoreKit27ServerConfigurationProvider") -@interface ServerConfigurationProvider : NSObject -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class NSDate; - -/// Internal type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_PROTOCOL_NAMED("SettingsProtocol") -@protocol FBSDKSettings -@property (nonatomic, copy) NSString * _Nullable appID; -@property (nonatomic, copy) NSString * _Nullable clientToken; -@property (nonatomic, copy) NSString * _Nullable userAgentSuffix; -@property (nonatomic, readonly, copy) NSString * _Nonnull sdkVersion; -@property (nonatomic, copy) NSString * _Nullable displayName; -@property (nonatomic, copy) NSString * _Nullable facebookDomainPart; -@property (nonatomic, copy) NSSet * _Nonnull loggingBehaviors; -@property (nonatomic, copy) NSString * _Nullable appURLSchemeSuffix; -@property (nonatomic, readonly) BOOL isDataProcessingRestricted; -@property (nonatomic, readonly) BOOL isAutoLogAppEventsEnabled; -@property (nonatomic) BOOL codelessDebugLogEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.\n "); -@property (nonatomic) BOOL isCodelessDebugLogEnabled; -@property (nonatomic) BOOL advertiserIDCollectionEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.\n "); -@property (nonatomic) BOOL isAdvertiserIDCollectionEnabled; -@property (nonatomic, readonly) BOOL isSetATETimeExceedsInstallTime SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.\n "); -@property (nonatomic, readonly) BOOL isATETimeSufficientlyDelayed; -@property (nonatomic, readonly) BOOL isSKAdNetworkReportEnabled; -@property (nonatomic, readonly) FBSDKAdvertisingTrackingStatus advertisingTrackingStatus; -@property (nonatomic, readonly, copy) NSDate * _Nullable installTimestamp; -@property (nonatomic, readonly, copy) NSDate * _Nullable advertiserTrackingEnabledTimestamp; -@property (nonatomic) BOOL isEventDataUsageLimited; -@property (nonatomic) BOOL shouldUseTokenOptimizations; -@property (nonatomic, copy) NSString * _Nonnull graphAPIVersion; -@property (nonatomic) BOOL isGraphErrorRecoveryEnabled; -@property (nonatomic, readonly, copy) NSString * _Nullable graphAPIDebugParamValue SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.\n "); -@property (nonatomic, readonly, copy) NSString * _Nullable graphAPIDebugParameterValue; -@property (nonatomic) BOOL advertiserTrackingEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.\n "); -@property (nonatomic) BOOL isAdvertiserTrackingEnabled; -@property (nonatomic) BOOL shouldUseCachedValuesForExpensiveMetadata; -@property (nonatomic, readonly, copy) NSDictionary * _Nullable persistableDataProcessingOptions; -/// Sets the data processing options. -/// \param options The list of options. -/// -- (void)setDataProcessingOptions:(NSArray * _Nullable)options; -/// Sets the data processing options. -/// \param options The list of the options. -/// -/// \param country The code for the country. -/// -/// \param state The code for the state. -/// -- (void)setDataProcessingOptions:(NSArray * _Nullable)options country:(int32_t)country state:(int32_t)state; -@end - - -SWIFT_CLASS_NAMED("Settings") -@interface FBSDKSettings : NSObject -/// The shared settings instance. Prefer this and the exposed instance methods over the type properties and methods. -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKSettings * _Nonnull sharedSettings;) -+ (FBSDKSettings * _Nonnull)sharedSettings SWIFT_WARN_UNUSED_RESULT; -/// The Facebook SDK version in use. -@property (nonatomic, readonly, copy) NSString * _Nonnull sdkVersion; -/// The default Graph API version. -@property (nonatomic, readonly, copy) NSString * _Nonnull defaultGraphAPIVersion; -/// The quality of JPEG images sent to Facebook from the SDK expressed as a value from 0.0 to 1.0. -/// The default value is 0.9. -@property (nonatomic) CGFloat JPEGCompressionQuality; -/// Controls the automatic logging of basic app events such as activateApp and deactivateApp. -/// The default value is true. -@property (nonatomic) BOOL autoLogAppEventsEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAutoLogAppEventsEnabled` instead.\n "); -/// Controls the automatic logging of basic app events such as activateApp and deactivateApp. -/// The default value is true. -@property (nonatomic) BOOL isAutoLogAppEventsEnabled; -/// Controls the fb_codeless_debug logging event. -/// The default value is false. -@property (nonatomic) BOOL codelessDebugLogEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.\n "); -/// Controls the fb_codeless_debug logging event. -/// The default value is false. -@property (nonatomic) BOOL isCodelessDebugLogEnabled; -/// Controls the access to IDFA. -/// The default value is true. -@property (nonatomic) BOOL advertiserIDCollectionEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.\n "); -/// Controls the access to IDFA. -/// The default value is true. -@property (nonatomic) BOOL isAdvertiserIDCollectionEnabled; -/// Controls the SKAdNetwork report. -/// The default value is true. -@property (nonatomic) BOOL skAdNetworkReportEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isSKAdNetworkReportEnabled` instead.\n "); -/// Controls the SKAdNetwork report. -/// The default value is true. -@property (nonatomic) BOOL isSKAdNetworkReportEnabled; -/// Whether data such as that generated through AppEvents and sent to Facebook -/// should be restricted from being used for purposes other than analytics and conversions. -/// The default value is false. This value is stored on the device and persists across app launches. -@property (nonatomic) BOOL isEventDataUsageLimited; -/// Whether in-memory cached values should be used for expensive metadata fields, such as -/// carrier and advertiser ID, that are fetched on many applicationDidBecomeActive notifications. -/// The default value is false. This value is stored on the device and persists across app launches. -@property (nonatomic) BOOL shouldUseCachedValuesForExpensiveMetadata; -/// Controls error recovery for all GraphRequest instances created after the value is changed. -@property (nonatomic) BOOL isGraphErrorRecoveryEnabled; -/// The Facebook App ID used by the SDK. -/// The default value will be read from the application’s plist (FacebookAppID). -@property (nonatomic, copy) NSString * _Nullable appID; -/// The default URL scheme suffix used for sessions. -/// The default value will be read from the application’s plist (FacebookUrlSchemeSuffix). -@property (nonatomic, copy) NSString * _Nullable appURLSchemeSuffix; -/// The client token needed for certain anonymous API calls (i.e., those made without a user-based access token). -/// An app’s client token can be found by navigating to https://developers.facebook.com/apps/YOUR-APP-ID -/// (replacing “YOUR-APP-ID” with your actual app ID), choosing “Settings->Advanced” and scrolling to the “Security”. -/// The default value will be read from the application’s plist (FacebookClientToken). -@property (nonatomic, copy) NSString * _Nullable clientToken; -/// The Facebook Display Name used by the SDK. -/// This should match the Display Name that has been set for the app with the corresponding Facebook App ID -/// in the Facebook App Dashboard. -/// The default value will be read from the application’s plist (FacebookDisplayName). -@property (nonatomic, copy) NSString * _Nullable displayName; -/// The Facebook domain part. This can be used to change the Facebook domain -/// (e.g. “beta”) so that requests will be sent to graph.beta.facebook.com. -/// The default value will be read from the application’s plist (FacebookDomainPart). -@property (nonatomic, copy) NSString * _Nullable facebookDomainPart; -/// Overrides the default Graph API version to use with GraphRequest instances. -/// The string should be of the form "v2.7". -/// The default value is defaultGraphAPIVersion. -@property (nonatomic, copy) NSString * _Nonnull graphAPIVersion; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, copy) NSString * _Nullable userAgentSuffix; -/// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. -@property (nonatomic) BOOL advertiserTrackingEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.\n "); -/// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. -@property (nonatomic) BOOL isAdvertiserTrackingEnabled; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic) FBSDKAdvertisingTrackingStatus advertisingTrackingStatus; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly) BOOL isDataProcessingRestricted; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSDictionary * _Nullable persistableDataProcessingOptions; -/// Set the data processing options. -/// \param options The list of options. -/// -- (void)setDataProcessingOptions:(NSArray * _Nullable)options; -/// Sets the data processing options. -/// \param options The list of the options. -/// -/// \param country The code for the country. -/// -/// \param state The code for the state. -/// -- (void)setDataProcessingOptions:(NSArray * _Nullable)options country:(int32_t)country state:(int32_t)state; -/// The current Facebook SDK logging behavior. This should consist of strings -/// defined as constants with LoggingBehavior that indicate what information should be logged. -/// Set to an empty set in order to disable all logging. -/// You can also define this via an array in your app’s plist with the key “FacebookLoggingBehavior”; or add/remove -/// individual values via enableLoggingBehavior(_:) or disableLoggingBehavior(_:) -/// The default value is [.developerErrors]. -@property (nonatomic, copy) NSSet * _Nonnull loggingBehaviors; -/// Enable a particular Facebook SDK logging behavior. -/// \param loggingBehavior The logging behavior to enable. This should be a string constant defined -/// as a LoggingBehavior. -/// -- (void)enableLoggingBehavior:(FBSDKLoggingBehavior _Nonnull)loggingBehavior; -/// Disable a particular Facebook SDK logging behavior. -/// \param loggingBehavior The logging behavior to disable. This should be a string constant defined -/// as a LoggingBehavior. -/// -- (void)disableLoggingBehavior:(FBSDKLoggingBehavior _Nonnull)loggingBehavior; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic) BOOL shouldUseTokenOptimizations; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly) BOOL isSetATETimeExceedsInstallTime SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.\n "); -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly) BOOL isATETimeSufficientlyDelayed; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSDate * _Nullable installTimestamp; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSDate * _Nullable advertiserTrackingEnabledTimestamp; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSString * _Nullable graphAPIDebugParamValue SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.\n "); -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSString * _Nullable graphAPIDebugParameterValue; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - - - - - -@interface FBSDKSettings (SWIFT_EXTENSION(FBSDKCoreKit)) -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (void)recordInstall; -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (void)logWarnings; -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (void)logIfSDKSettingsChanged; -@end - - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_PROTOCOL_NAMED("_AccessTokenExpiring") -@protocol _FBSDKAccessTokenExpiring -@end - -@protocol _FBSDKNotificationPosting; -@protocol FBSDKNotificationDelivering; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_AccessTokenExpirer") -@interface _FBSDKAccessTokenExpirer : NSObject <_FBSDKAccessTokenExpiring> -- (nonnull instancetype)initWithNotificationCenter:(id <_FBSDKNotificationPosting, FBSDKNotificationDelivering> _Nonnull)notificationCenter OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -@class FBSDKDialogConfiguration; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_DialogConfigurationMapBuilder") -@interface FBSDKDialogConfigurationMapBuilder : NSObject -- (NSDictionary * _Nonnull)buildDialogConfigurationMapWithRawConfigurations:(NSArray *> * _Nonnull)rawConfigurations SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// Internal type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_ErrorFactory") -@interface FBSDKErrorFactory : NSObject -- (NSError * _Nonnull)errorWithCode:(NSInteger)code userInfo:(NSDictionary * _Nullable)userInfo message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)errorWithDomain:(NSString * _Nonnull)domain code:(NSInteger)code userInfo:(NSDictionary * _Nullable)userInfo message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)invalidArgumentErrorWithName:(NSString * _Nonnull)name value:(id _Nullable)value message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)invalidArgumentErrorWithDomain:(NSString * _Nonnull)domain name:(NSString * _Nonnull)name value:(id _Nullable)value message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)requiredArgumentErrorWithName:(NSString * _Nonnull)name message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)requiredArgumentErrorWithDomain:(NSString * _Nonnull)domain name:(NSString * _Nonnull)name message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)unknownErrorWithMessage:(NSString * _Nullable)message userInfo:(NSDictionary * _Nullable)userInfo SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_FBLogo") -@interface FBSDKLogo : FBSDKIcon -- (CGPathRef _Nullable)pathWith:(CGSize)size SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_FeatureManager") -@interface FBSDKFeatureManager : NSObject -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKFeatureManager * _Nonnull shared;) -+ (FBSDKFeatureManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; -- (BOOL)isEnabled:(FBSDKFeature)feature SWIFT_WARN_UNUSED_RESULT; -- (void)checkFeature:(FBSDKFeature)feature completionBlock:(FBSDKFeatureManagerBlock _Nonnull)completionBlock; -- (void)disableFeature:(FBSDKFeature)feature; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@class SKPaymentQueue; -@protocol FBSDKPaymentProductRequestorCreating; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -/// Class to encapsulate implicit logging of purchase events -SWIFT_CLASS_NAMED("_PaymentObserver") -@interface FBSDKPaymentObserver : NSObject -- (nonnull instancetype)initWithPaymentQueue:(SKPaymentQueue * _Nonnull)paymentQueue paymentProductRequestorFactory:(id _Nonnull)paymentProductRequestorFactory OBJC_DESIGNATED_INITIALIZER; -- (void)startObservingTransactions; -- (void)stopObservingTransactions; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class SKPaymentTransaction; - -@interface FBSDKPaymentObserver (SWIFT_EXTENSION(FBSDKCoreKit)) -- (void)paymentQueue:(SKPaymentQueue * _Nonnull)queue updatedTransactions:(NSArray * _Nonnull)transactions; -@end - -@class FBSDKPaymentProductRequestor; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_PaymentProductRequestorFactory") -@interface FBSDKPaymentProductRequestorFactory : NSObject -- (FBSDKPaymentProductRequestor * _Nonnull)createRequestorWithTransaction:(SKPaymentTransaction * _Nonnull)transaction SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_RestrictiveEventFilter") -@interface FBSDKRestrictiveEventFilter : NSObject -@property (nonatomic, readonly, copy) NSString * _Nonnull eventName; -@property (nonatomic, readonly, copy) NSDictionary * _Nonnull restrictiveParameters; -- (nonnull instancetype)initWithEventName:(NSString * _Nonnull)eventName restrictiveParameters:(NSDictionary * _Nonnull)restrictiveParameters OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_ViewImpressionLogger") -@interface FBSDKViewImpressionLogger : NSObject -- (nonnull instancetype)initWithEventName:(FBSDKAppEventName _Nonnull)eventName OBJC_DESIGNATED_INITIALIZER; -+ (FBSDKViewImpressionLogger * _Nonnull)retrieveLoggerWith:(FBSDKAppEventName _Nonnull)eventName SWIFT_WARN_UNUSED_RESULT; -- (void)logImpressionWithIdentifier:(NSString * _Nonnull)identifier parameters:(NSDictionary * _Nullable)parameters; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h deleted file mode 100644 index 23c96145..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKit.h +++ /dev/null @@ -1,208 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h deleted file mode 100644 index 56befda2..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#define FBSDK_VERSION_STRING @"15.1.0" -#define FBSDK_DEFAULT_GRAPH_API_VERSION @"v15.0" diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCrashObserver.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCrashObserver.h deleted file mode 100644 index df232f9e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCrashObserver.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKFeatureChecking; -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKSettings; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_CrashObserver) -@interface FBSDKCrashObserver : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -// UNCRUSTIFY_FORMAT_OFF -- (instancetype)initWithFeatureChecker:(id)featureChecker - graphRequestFactory:(id)graphRequestFactory - settings:(id)settings - crashHandler:(id)crashHandler -NS_SWIFT_NAME(init(featureChecker:graphRequestFactory:settings:crashHandler:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCrashShield.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCrashShield.h deleted file mode 100644 index 597d58e2..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKCrashShield.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKFeatureDisabling; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_CrashShield) -@interface FBSDKCrashShield : NSObject - -+ (void)analyze:(NSArray *> *)crashLogs; - -+ (void)configureWithSettings:(id)settings - graphRequestFactory:(id)graphRequestFactory - featureChecking:(id)featureChecking -NS_SWIFT_NAME(configure(settings:graphRequestFactory:featureChecking:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDataProcessingOptionKey.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDataProcessingOptionKey.h deleted file mode 100644 index e747e21a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDataProcessingOptionKey.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef NSString *FBSDKDataProcessingOptionKey NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(DataProcessingOptionKey); - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT FBSDKDataProcessingOptionKey const FBSDKDataProcessingOptionKeyOptions; - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT FBSDKDataProcessingOptionKey const FBSDKDataProcessingOptionKeyCountry; - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT FBSDKDataProcessingOptionKey const FBSDKDataProcessingOptionKeyState; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceDialogView.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceDialogView.h deleted file mode 100644 index e290e584..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceDialogView.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeviceDialogViewDelegate) -@protocol FBSDKDeviceDialogViewDelegate; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -NS_SWIFT_NAME(FBDeviceDialogView) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@interface FBSDKDeviceDialogView : UIView - -@property (nonatomic, weak) id delegate; -@property (nonatomic, copy) NSString *confirmationCode; - -// override point for subclasses. -- (void)buildView; - -@end - -NS_SWIFT_NAME(DeviceDialogViewDelegate) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@protocol FBSDKDeviceDialogViewDelegate - -- (void)deviceDialogViewDidCancel:(FBSDKDeviceDialogView *)deviceDialogView; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h deleted file mode 100644 index ec650cfa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_DeviceInformationProviding) -@protocol FBSDKDeviceInformationProviding - -@property (nonatomic, readonly) NSString *storageKey; -@property (nullable, nonatomic, readonly) NSString *encodedDeviceInfo; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceViewControllerBase.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceViewControllerBase.h deleted file mode 100644 index 9a08f5af..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDeviceViewControllerBase.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if TARGET_OS_TV - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/* - An internal base class for device related flows. - - This is an internal API that should not be used directly and is subject to change. - */ -NS_SWIFT_NAME(FBDeviceViewControllerBase) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@interface FBSDKDeviceViewControllerBase : UIViewController -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDialogConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDialogConfiguration.h deleted file mode 100644 index bc8e29b3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDialogConfiguration.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_DialogConfiguration) -@interface FBSDKDialogConfiguration : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithName:(NSString *)name - URL:(NSURL *)URL - appVersions:(NSArray *)appVersions - NS_DESIGNATED_INITIALIZER; - -@property (nonatomic, readonly, copy) NSArray *appVersions; // NSString, possibly NSNumber -@property (nonatomic, readonly, copy) NSString *name; -@property (nonatomic, readonly, copy) NSURL *URL; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDialogConfigurationMapBuilding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDialogConfigurationMapBuilding.h deleted file mode 100644 index 7f5e4839..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDialogConfigurationMapBuilding.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@class FBSDKDialogConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_DialogConfigurationMapBuilding) -@protocol FBSDKDialogConfigurationMapBuilding - -// UNCRUSTIFY_FORMAT_OFF -- (NSDictionary *)buildDialogConfigurationMapWithRawConfigurations:(NSArray *> *)rawConfigurations -NS_SWIFT_NAME(buildDialogConfigurationMap(from:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDynamicFrameworkLoaderProxy.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDynamicFrameworkLoaderProxy.h deleted file mode 100644 index a46a303e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKDynamicFrameworkLoaderProxy.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(DynamicFrameworkLoaderProxy) -@interface FBSDKDynamicFrameworkLoaderProxy : NSObject -/** - Load the kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value from the Security Framework - - @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. - */ -+ (CFTypeRef)loadkSecAttrAccessibleAfterFirstUnlockThisDeviceOnly; -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorConfiguration.h deleted file mode 100644 index 661ae8cf..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorConfiguration.h +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -@protocol FBSDKGraphRequest; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_DecodableErrorConfiguration) -@protocol FBSDKDecodableErrorConfiguration - -- (instancetype)initWithDictionary:(NSDictionary *)dictionary; -- (void)updateWithArray:(NSArray *> *)array; - -@end - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ErrorConfiguration) -@interface FBSDKErrorConfiguration : NSObject < - NSSecureCoding, - NSCopying, - FBSDKErrorConfiguration, - FBSDKDecodableErrorConfiguration -> - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -// initialize from optional dictionary of existing configurations. If not supplied a fallback will be created. -- (instancetype)initWithDictionary:(nullable NSDictionary *)dictionary NS_DESIGNATED_INITIALIZER; - -// parses the array (supplied from app settings endpoint) -- (void)updateWithArray:(NSArray *> *)array; - -// NSString "code" instances support "*" wildcard semantics (nil is treated as "*" also) -// 'request' is optional, typically for identifying special graph request semantics (e.g., no recovery for client token) -- (nullable FBSDKErrorRecoveryConfiguration *)recoveryConfigurationForCode:(nullable NSString *)code subcode:(nullable NSString *)subcode request:(id)request; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProtocol.h deleted file mode 100644 index 247151b6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProtocol.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@class FBSDKErrorRecoveryConfiguration; -@protocol FBSDKGraphRequest; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ErrorConfigurationProtocol) -@protocol FBSDKErrorConfiguration - -- (nullable FBSDKErrorRecoveryConfiguration *)recoveryConfigurationForCode:(nullable NSString *)code - subcode:(nullable NSString *)subcode - request:(id)request; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProvider.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProvider.h deleted file mode 100644 index 3e32904e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProvider.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ErrorConfigurationProvider) -@interface FBSDKErrorConfigurationProvider : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProviding.h deleted file mode 100644 index 21be0a06..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProviding.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKErrorConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ErrorConfigurationProviding) -@protocol FBSDKErrorConfigurationProviding - -- (nullable id)errorConfiguration; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorCreating.h deleted file mode 100644 index 85c9e191..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorCreating.h +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(ErrorCreating) -@protocol FBSDKErrorCreating - -// MARK: - General Errors - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)errorWithCode:(NSInteger)code - userInfo:(nullable NSDictionary *)userInfo - message:(nullable NSString *)message - underlyingError:(nullable NSError *)underlyingError -NS_SWIFT_NAME(error(code:userInfo:message:underlyingError:)); -// UNCRUSTIFY_FORMAT_ON - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)errorWithDomain:(NSErrorDomain)domain - code:(NSInteger)code - userInfo:(nullable NSDictionary *)userInfo - message:(nullable NSString *)message - underlyingError:(nullable NSError *)underlyingError -NS_SWIFT_NAME(error(domain:code:userInfo:message:underlyingError:)); -// UNCRUSTIFY_FORMAT_ON - -// MARK: - Invalid Argument Errors - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)invalidArgumentErrorWithName:(NSString *)name - value:(nullable id)value - message:(nullable NSString *)message - underlyingError:(nullable NSError *)underlyingError -NS_SWIFT_NAME(invalidArgumentError(name:value:message:underlyingError:)); -// UNCRUSTIFY_FORMAT_ON - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)invalidArgumentErrorWithDomain:(NSErrorDomain)domain - name:(NSString *)name - value:(nullable id)value - message:(nullable NSString *)message - underlyingError:(nullable NSError *)underlyingError -NS_SWIFT_NAME(invalidArgumentError(domain:name:value:message:underlyingError:)); -// UNCRUSTIFY_FORMAT_ON - -// MARK: - Required Argument Errors - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)requiredArgumentErrorWithName:(NSString *)name - message:(nullable NSString *)message - underlyingError:(nullable NSError *)underlyingError -NS_SWIFT_NAME(requiredArgumentError(name:message:underlyingError:)); -// UNCRUSTIFY_FORMAT_ON - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)requiredArgumentErrorWithDomain:(NSErrorDomain)domain - name:(NSString *)name - message:(nullable NSString *)message - underlyingError:(nullable NSError *)underlyingError - NS_SWIFT_NAME(requiredArgumentError(domain:name:message:underlyingError:)); -// UNCRUSTIFY_FORMAT_ON - -// MARK: - Unknown Errors - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)unknownErrorWithMessage:(nullable NSString *)message - userInfo:(nullable NSDictionary *)userInfo -NS_SWIFT_NAME(unknownError(message:userInfo:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryAttempting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryAttempting.h deleted file mode 100644 index a7e03eed..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryAttempting.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - A formal protocol very similar to the informal protocol NSErrorRecoveryAttempting - Internal use only - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(ErrorRecoveryAttempting) -@protocol FBSDKErrorRecoveryAttempting - -/** - Attempt the recovery - @param error the error - @param completionHandler the handler called upon completion of error recovery - - Attempt recovery from the error, and call the completion handler. The value passed for didRecover must be YES if error recovery was completely successful, NO otherwise. - */ -- (void)attemptRecoveryFromError:(NSError *)error - completionHandler:(void (^)(BOOL didRecover))completionHandler -NS_SWIFT_NAME(attemptRecovery(from:completion:)); -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryConfiguration.h deleted file mode 100644 index 059b0a6f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryConfiguration.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ErrorRecoveryConfiguration) -@interface FBSDKErrorRecoveryConfiguration : NSObject - -@property (nonatomic, readonly) NSString *localizedRecoveryDescription; -@property (nonatomic, readonly) NSArray *localizedRecoveryOptionDescriptions; -@property (nonatomic, readonly) FBSDKGraphRequestError errorCategory; -@property (nonatomic, readonly) NSString *recoveryActionName; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithRecoveryDescription:(NSString *)description - optionDescriptions:(NSArray *)optionDescriptions - category:(FBSDKGraphRequestError)category - recoveryActionName:(NSString *)recoveryActionName NS_DESIGNATED_INITIALIZER; -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorReporter.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorReporter.h deleted file mode 100644 index e70741c3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorReporter.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKFileManaging; -@protocol FBSDKSettings; -@protocol FBSDKFileDataExtracting; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(ErrorReporter) -@interface FBSDKErrorReporter : NSObject - -@property (class, nonatomic, readonly) FBSDKErrorReporter *shared; - -@property (nonatomic, strong) id graphRequestFactory; -@property (nonatomic, strong) id fileManager; -@property (nonatomic, strong) id settings; -@property (nonatomic, strong) Class dataExtractor; -@property (nonatomic, readonly, strong) NSString *directoryPath; -@property (nonatomic) BOOL isEnabled; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (void)saveError:(NSInteger)errorCode - errorDomain:(NSErrorDomain)errorDomain - message:(nullable NSString *)message; - -- (instancetype)initWithGraphRequestFactory:(id)graphRequestFactory - fileManager:(id)fileManager - settings:(id)settings - fileDataExtractor:(Class)dataExtractor; -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorReporting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorReporting.h deleted file mode 100644 index 5800dcd1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKErrorReporting.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(ErrorReporting) -@protocol FBSDKErrorReporting - -- (void)enable; -- (void)saveError:(NSInteger)errorCode - errorDomain:(NSErrorDomain)errorDomain - message:(nullable NSString *)message; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKEventLogging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKEventLogging.h deleted file mode 100644 index 830c0adf..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKEventLogging.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import -#import -#import - -@class FBSDKAccessToken; - - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(EventLogging) -@protocol FBSDKEventLogging - -@property (nonatomic, readonly) FBSDKAppEventsFlushBehavior flushBehavior; - -- (void)flushForReason:(FBSDKAppEventsFlushReason)flushReason; - -- (void)logEvent:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters; - -- (void)logEvent:(FBSDKAppEventName)eventName - valueToSum:(double)valueToSum - parameters:(nullable NSDictionary *)parameters; - -- (void)logInternalEvent:(FBSDKAppEventName)eventName - isImplicitlyLogged:(BOOL)isImplicitlyLogged; - -- (void)logInternalEvent:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters - isImplicitlyLogged:(BOOL)isImplicitlyLogged; - -- (void)logInternalEvent:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters - isImplicitlyLogged:(BOOL)isImplicitlyLogged - accessToken:(nullable FBSDKAccessToken *)accessToken; - -- (void)logInternalEvent:(FBSDKAppEventName)eventName - valueToSum:(double)valueToSum - isImplicitlyLogged:(BOOL)isImplicitlyLogged; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKEventProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKEventProcessing.h deleted file mode 100644 index 77ea4a01..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKEventProcessing.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_EventProcessing) -@protocol FBSDKEventProcessing - -- (NSString *)processSuggestedEvents:(NSString *)textFeature - denseData:(nullable float *)denseData; - -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKEventsProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKEventsProcessing.h deleted file mode 100644 index 0ee10aec..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKEventsProcessing.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_EventsProcessing) -@protocol FBSDKEventsProcessing - -- (void)processEvents:(NSMutableArray *> *)events; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeatureChecking.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeatureChecking.h deleted file mode 100644 index bdb5d532..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeatureChecking.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(FeatureChecking) -@protocol FBSDKFeatureChecking - -- (BOOL)isEnabled:(FBSDKFeature)feature; - -- (void)checkFeature:(FBSDKFeature)feature - completionBlock:(FBSDKFeatureManagerBlock)completionBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeatureDisabling.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeatureDisabling.h deleted file mode 100644 index 26696faa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeatureDisabling.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Protocol exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_FeatureDisabling) -@protocol FBSDKFeatureDisabling - -- (void)disableFeature:(FBSDKFeature)feature; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtracting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtracting.h deleted file mode 100644 index 99c6bd64..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtracting.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_FeatureExtracting) -@protocol FBSDKFeatureExtracting - -+ (nullable float *)getDenseFeatures:(NSDictionary *)viewHierarchy; -+ (NSString *)getTextFeature:(NSString *)text - withScreenName:(NSString *)screenName; -+ (void)loadRulesForKey:(NSString *)useCaseKey; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtractor.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtractor.h deleted file mode 100644 index 22ace15c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtractor.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_FeatureExtractor) -@interface FBSDKFeatureExtractor : NSObject - -@property (class, nullable, nonatomic) id rulesFromKeyProvider; - -+ (void)configureWithRulesFromKeyProvider:(id)rulesFromKeyProvider -NS_SWIFT_NAME(configure(rulesFromKeyProvider:)); - -+ (void)loadRulesForKey:(NSString *)useCaseKey; - -+ (NSString *)getTextFeature:(NSString *)text - withScreenName:(NSString *)screenName; - -+ (nullable float *)getDenseFeatures:(NSDictionary *)viewHierarchy; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManager.h deleted file mode 100644 index d0374d72..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManager.h +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -#define FBSDK_GATEKEEPER_MANAGER_CACHE_TIMEOUT (60 * 60) - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKSettings; -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKGraphRequestConnectionFactory; -@protocol FBSDKDataPersisting; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef NSString *const FBSDKGateKeeperKey NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(_GateKeeperManager.GateKeeperKey); -typedef void (^ FBSDKGKManagerBlock)(NSError *_Nullable error) -NS_SWIFT_NAME(_GKManagerBlock); - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_GateKeeperManager) -@interface FBSDKGateKeeperManager : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -+ (void) configureWithSettings:(id)settings - graphRequestFactory:(id)graphRequestFactory - graphRequestConnectionFactory:(id)graphRequestConnectionFactory - store:(id)store -NS_SWIFT_NAME(configure(settings:graphRequestFactory:graphRequestConnectionFactory:store:)); - -/// Returns the locally cached configuration. -+ (BOOL)boolForKey:(NSString *)key defaultValue:(BOOL)defaultValue; - -/** - Load the gate keeper configurations from server - - WARNING: Must call `configure` before loading gate keepers. - */ -+ (void)loadGateKeepers:(nullable FBSDKGKManagerBlock)completionBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManaging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManaging.h deleted file mode 100644 index 386908a5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManaging.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -typedef void (^FBSDKGKManagerBlock)(NSError *_Nullable error); - -NS_SWIFT_NAME(_GateKeeperManaging) -@protocol FBSDKGateKeeperManaging - -/// Returns the bool value of a GateKeeper. -+ (BOOL)boolForKey:(nonnull NSString *)key defaultValue:(BOOL)defaultValue; - -+ (void)loadGateKeepers:(nonnull FBSDKGKManagerBlock)completionBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphErrorRecoveryProcessor.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphErrorRecoveryProcessor.h deleted file mode 100644 index 62f9f04f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphErrorRecoveryProcessor.h +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKGraphErrorRecoveryProcessor; -@protocol FBSDKGraphRequest; - -/// Defines a delegate for `FBSDKGraphErrorRecoveryProcessor`. -NS_SWIFT_NAME(GraphErrorRecoveryProcessorDelegate) -@protocol FBSDKGraphErrorRecoveryProcessorDelegate - -/** - Indicates the error recovery has been attempted. - @param processor the processor instance. - @param didRecover YES if the recovery was successful. - @param error the error that that was attempted to be recovered from. - */ -- (void)processorDidAttemptRecovery:(FBSDKGraphErrorRecoveryProcessor *)processor - didRecover:(BOOL)didRecover - error:(nullable NSError *)error; - -@optional -/** - Indicates the processor is about to process the error. - @param processor the processor instance. - @param error the error is about to be processed. - - return NO if the processor should not process the error. For example, - if you want to prevent alerts of localized messages but otherwise perform retries and recoveries, - you could return NO for errors where userInfo[FBSDKGraphRequestErrorKey] equal to FBSDKGraphRequestErrorOther - */ -- (BOOL)processorWillProcessError:(FBSDKGraphErrorRecoveryProcessor *)processor - error:(nullable NSError *)error; - -@end - -/** - Defines a type that can process Facebook NSErrors with best practices. - - Facebook NSErrors can contain FBSDKErrorRecoveryAttempting instances to recover from errors, or - localized messages to present to the user. This class will process the instances as follows: - - 1. If the error is temporary as indicated by FBSDKGraphRequestErrorKey, assume the recovery succeeded and - notify the delegate. - 2. If a FBSDKErrorRecoveryAttempting instance is available, display an alert (dispatched to main thread) - with the recovery options and call the instance's attemptRecoveryFromError method. - 3. If a FBSDKErrorRecoveryAttempting is not available, check the userInfo for FBSDKLocalizedErrorDescriptionKey - and present that in an alert (dispatched to main thread). - - By default, FBSDKGraphRequests use this type to process errors and retry the request upon a successful - recovery. - - Note that Facebook recovery attempters can present UI or even cause app switches (such as to login). Any such - work is dispatched to the main thread (therefore your request handlers may then run on the main thread). - - Login recovery requires FBSDKLoginKit. Login will prompt the user - for all permissions last granted. If any are declined on the new request, the recovery is not successful but - the `[FBSDKAccessToken currentAccessToken]` might still have been updated. - . - */ -NS_SWIFT_NAME(GraphErrorRecoveryProcessor) -@interface FBSDKGraphErrorRecoveryProcessor : NSObject - -/// Initializes a GraphErrorRecoveryProcessor with an access token string. -- (instancetype)initWithAccessTokenString:(NSString *)accessTokenString; - -/** - Attempts to process the error, return YES if the error can be processed. - @param error the error to process. - @param request the related request that may be reissued. - @param delegate the delegate that will be retained until recovery is complete. - */ -- (BOOL)processError:(NSError *)error - request:(id)request - delegate:(nullable id)delegate; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequest.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequest.h deleted file mode 100644 index 156f5ddb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequest.h +++ /dev/null @@ -1,168 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import -#import -#import -#import - -@protocol FBSDKSettings; - -NS_ASSUME_NONNULL_BEGIN -/** - Represents a request to the Facebook Graph API. - - `FBSDKGraphRequest` encapsulates the components of a request (the - Graph API path, the parameters, error recovery behavior) and should be - used in conjunction with `FBSDKGraphRequestConnection` to issue the request. - - Nearly all Graph APIs require an access token. Unless specified, the - `[FBSDKAccessToken currentAccessToken]` is used. Therefore, most requests - will require login first (see `FBSDKLoginManager` in FBSDKLoginKit.framework). - - A `- start` method is provided for convenience for single requests. - - By default, FBSDKGraphRequest will attempt to recover any errors returned from - Facebook. You can disable this via `disableErrorRecovery:`. - - See FBSDKGraphErrorRecoveryProcessor - */ -NS_SWIFT_NAME(GraphRequest) -@interface FBSDKGraphRequest : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// UNCRUSTIFY_FORMAT_OFF -+ (void) configureWithSettings:(id)settings - currentAccessTokenStringProvider:(Class)accessTokenProvider - graphRequestConnectionFactory:(id)_graphRequestConnectionFactory -NS_SWIFT_NAME(configure(settings:currentAccessTokenStringProvider:graphRequestConnectionFactory:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Initializes a new instance that use use `[FBSDKAccessToken currentAccessToken]`. - @param graphPath the graph path (e.g., @"me"). - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath; - -/** - Initializes a new instance that use use `[FBSDKAccessToken currentAccessToken]`. - @param graphPath the graph path (e.g., @"me"). - @param method the HTTP method. Empty String defaults to @"GET". - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath - HTTPMethod:(FBSDKHTTPMethod)method; - -/** - Initializes a new instance that use use `[FBSDKAccessToken currentAccessToken]`. - @param graphPath the graph path (e.g., @"me"). - @param parameters the optional parameters dictionary. - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters; - -/** - Initializes a new instance that use use `[FBSDKAccessToken currentAccessToken]`. - @param graphPath the graph path (e.g., @"me"). - @param parameters the optional parameters dictionary. - @param method the HTTP method. Empty String defaults to @"GET". - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters - HTTPMethod:(FBSDKHTTPMethod)method; - -/** - Initializes a new instance. - @param graphPath the graph path (e.g., @"me"). - @param parameters the optional parameters dictionary. - @param tokenString the token string to use. Specifying nil will cause no token to be used. - @param version the optional Graph API version (e.g., @"v2.0"). nil defaults to `[FBSDKSettings graphAPIVersion]`. - @param method the HTTP method. Empty String defaults to @"GET". - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters - tokenString:(nullable NSString *)tokenString - version:(nullable NSString *)version - HTTPMethod:(FBSDKHTTPMethod)method - NS_DESIGNATED_INITIALIZER; - -/** - Initializes a new instance. - @param graphPath the graph path (e.g., @"me"). - @param parameters the optional parameters dictionary. - @param requestFlags flags that indicate how a graph request should be treated in various scenarios - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath - parameters:(nullable NSDictionary *)parameters - flags:(FBSDKGraphRequestFlags)requestFlags; - -/** - Initializes a new instance. - @param graphPath the graph path (e.g., @"me"). - @param parameters the optional parameters dictionary. - @param tokenString the token string to use. Specifying nil will cause no token to be used. - @param HTTPMethod the HTTP method. Empty String defaults to @"GET". - @param flags flags that indicate how a graph request should be treated in various scenarios - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath - parameters:(nullable NSDictionary *)parameters - tokenString:(nullable NSString *)tokenString - HTTPMethod:(nullable NSString *)HTTPMethod - flags:(FBSDKGraphRequestFlags)flags; - -/// The request parameters. -@property (nonatomic, copy) NSDictionary *parameters; - -/// The access token string used by the request. -@property (nullable, nonatomic, readonly, copy) NSString *tokenString; - -/// The Graph API endpoint to use for the request, for example "me". -@property (nonatomic, readonly, copy) NSString *graphPath; - -/// The HTTPMethod to use for the request, for example "GET" or "POST". -@property (nonatomic, readonly, copy) FBSDKHTTPMethod HTTPMethod; - -/// The Graph API version to use (e.g., "v2.0") -@property (nonatomic, readonly, copy) NSString *version; - -/** - If set, disables the automatic error recovery mechanism. - @param disable whether to disable the automatic error recovery mechanism - - By default, non-batched FBSDKGraphRequest instances will automatically try to recover - from errors by constructing a `FBSDKGraphErrorRecoveryProcessor` instance that - re-issues the request on successful recoveries. The re-issued request will call the same - handler as the receiver but may occur with a different `FBSDKGraphRequestConnection` instance. - - This will override [FBSDKSettings setGraphErrorRecoveryDisabled:]. - */ - -// UNCRUSTIFY_FORMAT_OFF -- (void)setGraphErrorRecoveryDisabled:(BOOL)disable -NS_SWIFT_NAME(setGraphErrorRecovery(disabled:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Starts a connection to the Graph API. - @param completion The handler block to call when the request completes. - */ -- (id)startWithCompletion:(nullable FBSDKGraphRequestCompletion)completion; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnecting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnecting.h deleted file mode 100644 index 36ce296e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnecting.h +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKGraphRequest; -@protocol FBSDKGraphRequestConnecting; -@protocol FBSDKGraphRequestConnectionDelegate; -@class FBSDKGraphRequestMetadata; - -/** - FBSDKGraphRequestCompletion - - A block that is passed to addRequest to register for a callback with the results of that - request once the connection completes. - - Pass a block of this type when calling addRequest. This will be called once - the request completes. The call occurs on the UI thread. - - @param connection The connection that sent the request. - - @param result The result of the request. This is a translation of - JSON data to `NSDictionary` and `NSArray` objects. This - is nil if there was an error. - - @param error The `NSError` representing any error that occurred. - */ -NS_SWIFT_NAME(GraphRequestCompletion) -typedef void (^FBSDKGraphRequestCompletion)(id _Nullable connection, - id _Nullable result, - NSError *_Nullable error); - -/// A protocol to describe an object that can manage graph requests -NS_SWIFT_NAME(GraphRequestConnecting) -@protocol FBSDKGraphRequestConnecting - -@property (nonatomic, assign) NSTimeInterval timeout; -@property (nullable, nonatomic, weak) id delegate; - -- (void)addRequest:(id)request - completion:(FBSDKGraphRequestCompletion)handler; - -- (void)start; -- (void)cancel; - - -/** - Internal property exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (nonatomic, readonly) NSMutableArray *requests; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h deleted file mode 100644 index 4882c97f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h +++ /dev/null @@ -1,212 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -@protocol FBSDKURLSessionProxyProviding; -@protocol FBSDKErrorConfigurationProviding; -@protocol FBSDKGraphRequestPiggybackManaging; -@protocol FBSDKSettings; -@protocol FBSDKGraphRequestConnectionFactory; -@protocol FBSDKEventLogging; -@protocol FBSDKOperatingSystemVersionComparing; -@protocol FBSDKMacCatalystDetermining; -@protocol FBSDKAccessTokenProviding; -@protocol FBSDKErrorCreating; -@protocol FBSDKAuthenticationTokenProviding; - -NS_ASSUME_NONNULL_BEGIN - -/** - The key in the result dictionary for requests to old versions of the Graph API - whose response is not a JSON object. - - When a request returns a non-JSON response (such as a "true" literal), that response - will be wrapped into a dictionary using this const as the key. This only applies for very few Graph API - prior to v2.1. - */ -FOUNDATION_EXPORT NSString *const FBSDKNonJSONResponseProperty -NS_SWIFT_NAME(NonJSONResponseProperty); - -@protocol FBSDKGraphRequest; - -/** - The `FBSDKGraphRequestConnection` represents a single connection to Facebook to service a request. - - The request settings are encapsulated in a reusable object. The - `FBSDKGraphRequestConnection` object encapsulates the concerns of a single communication - e.g. starting a connection, canceling a connection, or batching requests. - */ -NS_SWIFT_NAME(GraphRequestConnection) -@interface FBSDKGraphRequestConnection : NSObject - -/// The default timeout on all FBSDKGraphRequestConnection instances. Defaults to 60 seconds. -@property (class, nonatomic, assign) NSTimeInterval defaultConnectionTimeout; - -/// The delegate object that receives updates. -@property (nullable, nonatomic, weak) id delegate; - -/// Gets or sets the timeout interval to wait for a response before giving up. -@property (nonatomic, assign) NSTimeInterval timeout; - -/** - The raw response that was returned from the server. (readonly) - - This property can be used to inspect HTTP headers that were returned from - the server. - - The property is nil until the request completes. If there was a response - then this property will be non-nil during the FBSDKGraphRequestBlock callback. - */ -@property (nullable, nonatomic, readonly, retain) NSHTTPURLResponse *urlResponse; - -/** - Determines the operation queue that is used to call methods on the connection's delegate. - - By default, a connection is scheduled on the current thread in the default mode when it is created. - You cannot reschedule a connection after it has started. - */ -@property (nullable, nonatomic) NSOperationQueue *delegateQueue; - -/// @methodgroup Class methods - -/// @methodgroup Adding requests - -/** - @method - - This method adds an object to this connection. - - @param request A request to be included in the round-trip when start is called. - @param completion A handler to call back when the round-trip completes or times out. - - The completion handler is retained until the block is called upon the - completion or cancellation of the connection. - */ -- (void)addRequest:(id)request - completion:(FBSDKGraphRequestCompletion)completion; - -/** - @method - - This method adds an object to this connection. - - @param request A request to be included in the round-trip when start is called. - - @param completion A handler to call back when the round-trip completes or times out. - The handler will be invoked on the main thread. - - @param name A name for this request. This can be used to feed - the results of one request to the input of another in the same - `FBSDKGraphRequestConnection` as described in - [Graph API Batch Requests]( https://developers.facebook.com/docs/reference/api/batch/ ). - - The completion handler is retained until the block is called upon the - completion or cancellation of the connection. This request can be named - to allow for using the request's response in a subsequent request. - */ -- (void)addRequest:(id)request - name:(NSString *)name - completion:(FBSDKGraphRequestCompletion)completion; - -/** - @method - - This method adds an object to this connection. - - @param request A request to be included in the round-trip when start is called. - - @param completion A handler to call back when the round-trip completes or times out. - - @param parameters The dictionary of parameters to include for this request - as described in [Graph API Batch Requests]( https://developers.facebook.com/docs/reference/api/batch/ ). - Examples include "depends_on", "name", or "omit_response_on_success". - - The completion handler is retained until the block is called upon the - completion or cancellation of the connection. This request can be named - to allow for using the request's response in a subsequent request. - */ -- (void)addRequest:(id)request - parameters:(nullable NSDictionary *)parameters - completion:(FBSDKGraphRequestCompletion)completion; - -/// @methodgroup Instance methods - -/** - @method - - Signals that a connection should be logically terminated as the - application is no longer interested in a response. - - Synchronously calls any handlers indicating the request was cancelled. Cancel - does not guarantee that the request-related processing will cease. It - does promise that all handlers will complete before the cancel returns. A call to - cancel prior to a start implies a cancellation of all requests associated - with the connection. - */ -- (void)cancel; - -/** - @method - - This method starts a connection with the server and is capable of handling all of the - requests that were added to the connection. - - By default, a connection is scheduled on the current thread in the default mode when it is created. - See `setDelegateQueue:` for other options. - - This method cannot be called twice for an `FBSDKGraphRequestConnection` instance. - */ -- (void)start; - -/** - @method - - Overrides the default version for a batch request - - The SDK automatically prepends a version part, such as "v2.0" to API paths in order to simplify API versioning - for applications. If you want to override the version part while using batch requests on the connection, call - this method to set the version for the batch request. - - @param version This is a string in the form @"v2.0" which will be used for the version part of an API path - */ -- (void)overrideGraphAPIVersion:(NSString *)version; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -+ (void)setCanMakeRequests; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -+ (void)configureWithURLSessionProxyFactory:(nonnull id)proxyFactory - errorConfigurationProvider:(nonnull id)errorConfigurationProvider - piggybackManager:(nonnull id)piggybackManager - settings:(nonnull id)settings - graphRequestConnectionFactory:(nonnull id)factory - eventLogger:(nonnull id)eventLogger - operatingSystemVersionComparer:(nonnull id)operatingSystemVersionComparer - macCatalystDeterminator:(nonnull id)macCatalystDeterminator - accessTokenProvider:(nonnull Class)accessTokenProvider - errorFactory:(nonnull id)errorFactory - authenticationTokenProvider:(nonnull Class)authenticationTokenProvider -NS_SWIFT_NAME(configure(urlSessionProxyFactory:errorConfigurationProvider:piggybackManager:settings:graphRequestConnectionFactory:eventLogger:operatingSystemVersionComparer:macCatalystDeterminator:accessTokenProvider:errorFactory:authenticationTokenProvider:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionDelegate.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionDelegate.h deleted file mode 100644 index 738ad47d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionDelegate.h +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - @protocol - - The `FBSDKGraphRequestConnectionDelegate` protocol defines the methods used to receive network - activity progress information from a . - */ -NS_SWIFT_NAME(GraphRequestConnectionDelegate) -@protocol FBSDKGraphRequestConnectionDelegate - -@optional - -/** - @method - - Tells the delegate the request connection will begin loading - - If the is created using one of the convenience factory methods prefixed with - start, the object returned from the convenience method has already begun loading and this method - will not be called when the delegate is set. - - @param connection The request connection that is starting a network request - */ -- (void)requestConnectionWillBeginLoading:(id)connection; - -/** - @method - - Tells the delegate the request connection finished loading - - If the request connection completes without a network error occurring then this method is called. - Invocation of this method does not indicate success of every made, only that the - request connection has no further activity. Use the error argument passed to the FBSDKGraphRequestBlock - block to determine success or failure of each . - - This method is invoked after the completion handler for each . - - @param connection The request connection that successfully completed a network request - */ -- (void)requestConnectionDidFinishLoading:(id)connection; - -/** - @method - - Tells the delegate the request connection failed with an error - - If the request connection fails with a network error then this method is called. The `error` - argument specifies why the network connection failed. The `NSError` object passed to the - FBSDKGraphRequestBlock block may contain additional information. - - @param connection The request connection that successfully completed a network request - @param error The `NSError` representing the network error that occurred, if any. May be nil - in some circumstances. Consult the `NSError` for the for reliable - failure information. - */ -- (void)requestConnection:(id)connection - didFailWithError:(NSError *)error; - -/** - @method - - Tells the delegate how much data has been sent and is planned to send to the remote host - - The byte count arguments refer to the aggregated objects, not a particular . - - Like `NSURLSession`, the values may change in unexpected ways if data needs to be resent. - - @param connection The request connection transmitting data to a remote host - @param bytesWritten The number of bytes sent in the last transmission - @param totalBytesWritten The total number of bytes sent to the remote host - @param totalBytesExpectedToWrite The total number of bytes expected to send to the remote host - */ -- (void) requestConnection:(id)connection - didSendBodyData:(NSInteger)bytesWritten - totalBytesWritten:(NSInteger)totalBytesWritten - totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactory.h deleted file mode 100644 index 19e62d20..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactory.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type not intended for use outside of the SDKs. - - A factory for providing objects that conform to `GraphRequestConnecting`. - */ -NS_SWIFT_NAME(GraphRequestConnectionFactory) -@interface FBSDKGraphRequestConnectionFactory : NSObject -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactoryProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactoryProtocol.h deleted file mode 100644 index 96b43dfa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactoryProtocol.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKGraphRequestConnecting; - -/// Describes anything that can provide instances of `FBSDKGraphRequestConnecting` -NS_SWIFT_NAME(GraphRequestConnectionFactoryProtocol) -@protocol FBSDKGraphRequestConnectionFactory - -- (id)createGraphRequestConnection; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h deleted file mode 100644 index 3775cb4f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// A container class for data attachments so that additional metadata can be provided about the attachment. -NS_SWIFT_NAME(GraphRequestDataAttachment) -@interface FBSDKGraphRequestDataAttachment : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Initializes the receiver with the attachment data and metadata. - @param data The attachment data (retained, not copied) - @param filename The filename for the attachment - @param contentType The content type for the attachment - */ -- (instancetype)initWithData:(NSData *)data - filename:(NSString *)filename - contentType:(NSString *)contentType - NS_DESIGNATED_INITIALIZER; - -/// The content type for the attachment. -@property (nonatomic, readonly, copy) NSString *contentType; - -/// The attachment data. -@property (nonatomic, readonly, strong) NSData *data; - -/// The filename for the attachment. -@property (nonatomic, readonly, copy) NSString *filename; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactory.h deleted file mode 100644 index 6661ac1c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactory.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKGraphRequestFactory; - -/** - Internal type not intended for use outside of the SDKs. - - A factory for providing objects that conform to `GraphRequest` - */ -NS_SWIFT_NAME(GraphRequestFactory) -@interface FBSDKGraphRequestFactory : NSObject -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactoryProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactoryProtocol.h deleted file mode 100644 index eb85a3ba..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactoryProtocol.h +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -@protocol FBSDKGraphRequest; - -typedef NSString *const FBSDKHTTPMethod NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(HTTPMethod); - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type not intended for use outside of the SDKs. - -Describes anything that can provide instances of `GraphRequestProtocol` - */ -NS_SWIFT_NAME(GraphRequestFactoryProtocol) -@protocol FBSDKGraphRequestFactory - -- (id)createGraphRequestWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters - tokenString:(nullable NSString *)tokenString - HTTPMethod:(nullable FBSDKHTTPMethod)method - flags:(FBSDKGraphRequestFlags)flags; - -- (id)createGraphRequestWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters; - -- (id)createGraphRequestWithGraphPath:(NSString *)graphPath; - -- (id)createGraphRequestWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters - HTTPMethod:(FBSDKHTTPMethod)method; - -- (id)createGraphRequestWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters - tokenString:(nullable NSString *)tokenString - version:(nullable NSString *)version - HTTPMethod:(FBSDKHTTPMethod)method; - -- (id)createGraphRequestWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters - flags:(FBSDKGraphRequestFlags)flags; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFlags.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFlags.h deleted file mode 100644 index 68e7c8da..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFlags.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// Flags that indicate how a graph request should be treated in various scenarios -typedef NS_OPTIONS(NSUInteger, FBSDKGraphRequestFlags) { - FBSDKGraphRequestFlagNone = 0, - /// indicates this request should not use a client token as its token parameter - FBSDKGraphRequestFlagSkipClientToken = 1 << 1, - /// indicates this request should not close the session if its response is an oauth error - FBSDKGraphRequestFlagDoNotInvalidateTokenOnError = 1 << 2, - /// indicates this request should not perform error recovery - FBSDKGraphRequestFlagDisableErrorRecovery = 1 << 3, -} NS_SWIFT_NAME(GraphRequestFlags); - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestHTTPMethod.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestHTTPMethod.h deleted file mode 100644 index e79728d9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestHTTPMethod.h +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/// typedef for FBSDKHTTPMethod -typedef NSString *const FBSDKHTTPMethod NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(HTTPMethod); - -/// GET Request -FOUNDATION_EXPORT FBSDKHTTPMethod FBSDKHTTPMethodGET NS_SWIFT_NAME(get); - -/// POST Request -FOUNDATION_EXPORT FBSDKHTTPMethod FBSDKHTTPMethodPOST NS_SWIFT_NAME(post); - -/// DELETE Request -FOUNDATION_EXPORT FBSDKHTTPMethod FBSDKHTTPMethodDELETE NS_SWIFT_NAME(delete); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestMetadata.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestMetadata.h deleted file mode 100644 index 8792b8a0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestMetadata.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKGraphRequest; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - Used to facilitate FBSDKGraphRequest processing, specifically - associating FBSDKGraphRequest and FBSDKGraphRequestBlock instances and necessary - data for retry processing. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(GraphRequestMetadata) -@interface FBSDKGraphRequestMetadata : NSObject - -@property (nonatomic, retain) id request; -@property (nonatomic, copy) FBSDKGraphRequestCompletion completionHandler; -@property (nonatomic, copy) NSDictionary *batchParameters; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithRequest:(id)request - completionHandler:(nullable FBSDKGraphRequestCompletion)handler - batchParameters:(nullable NSDictionary *)batchParameters - NS_DESIGNATED_INITIALIZER; - -- (void)invokeCompletionHandlerForConnection:(id)connection - withResults:(id)results - error:(nullable NSError *)error; -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestPiggybackManaging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestPiggybackManaging.h deleted file mode 100644 index 0e1f76b9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestPiggybackManaging.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_GraphRequestPiggybackManaging) -@protocol FBSDKGraphRequestPiggybackManaging - -- (void)addPiggybackRequests:(id)connection; -- (void)addRefreshPiggyback:(id)connection - permissionHandler:(nullable FBSDKGraphRequestCompletion)permissionHandler; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h deleted file mode 100644 index 6cc4da38..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKGraphRequestConnection; -@protocol FBSDKGraphRequestConnecting; - -typedef void (^FBSDKGraphRequestCompletion)(id _Nullable connection, - id _Nullable result, - NSError *_Nullable error); - -typedef void (^FBSDKGraphRequestBlock)(FBSDKGraphRequestConnection *_Nullable connection, - id _Nullable result, - NSError *_Nullable error); - -/// A protocol to describe anything that represents a graph request -NS_SWIFT_NAME(GraphRequestProtocol) -@protocol FBSDKGraphRequest - -/// The request parameters. -@property (nonatomic, copy) NSDictionary *parameters; - -/// The access token string used by the request. -@property (nullable, nonatomic, readonly, copy) NSString *tokenString; - -/// The Graph API endpoint to use for the request, for example "me". -@property (nonatomic, readonly, copy) NSString *graphPath; - -/// The HTTPMethod to use for the request, for example "GET" or "POST". -@property (nonatomic, readonly, copy) FBSDKHTTPMethod HTTPMethod; - -/// The Graph API version to use (e.g., "v2.0") -@property (nonatomic, readonly, copy) NSString *version; - -/// The graph request flags to use -@property (nonatomic, readonly, assign) FBSDKGraphRequestFlags flags; - -/// Convenience property to determine if graph error recover is disabled -@property (nonatomic, getter = isGraphErrorRecoveryDisabled) BOOL graphErrorRecoveryDisabled; - -/// Convenience property to determine if the request has attachments -@property (nonatomic, readonly) BOOL hasAttachments; - -/** - Starts a connection to the Graph API. - @param completion The handler block to call when the request completes. - */ -- (id)startWithCompletion:(nullable FBSDKGraphRequestCompletion)completion; - -/// A formatted description of the graph request -- (NSString *)formattedDescription; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactory.h deleted file mode 100644 index c976ecb7..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactory.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKEventLogging; -@protocol FBSDKNotificationDelivering; -@protocol FBSDKAccessTokenProviding; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ImpressionLoggerFactory) -@interface FBSDKImpressionLoggerFactory : NSObject - -@property (nonatomic, readonly) id graphRequestFactory; -@property (nonatomic, readonly) id eventLogger; -@property (nonatomic, readonly) id notificationCenter; -@property (nonatomic, readonly) Class accessTokenWallet; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -// UNCRUSTIFY_FORMAT_OFF -- (instancetype)initWithGraphRequestFactory:(nonnull id)graphRequestFactory - eventLogger:(nonnull id)eventLogger - notificationCenter:(nonnull id)notificationCenter - accessTokenWallet:(nonnull Class)accessTokenWallet - NS_DESIGNATED_INITIALIZER - NS_SWIFT_NAME(init(graphRequestFactory:eventLogger:notificationCenter:accessTokenWallet:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactoryProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactoryProtocol.h deleted file mode 100644 index 5ef206c7..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactoryProtocol.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ImpressionLoggerFactoryProtocol) -@protocol FBSDKImpressionLoggerFactory - -- (id)makeImpressionLoggerWithEventName:(FBSDKAppEventName)eventName; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKImpressionLogging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKImpressionLogging.h deleted file mode 100644 index 0cb0f2cb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKImpressionLogging.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(ImpressionLogging) -@protocol FBSDKImpressionLogging - -- (void)logImpressionWithIdentifier:(NSString *)identifier - parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggingButton.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggingButton.h deleted file mode 100644 index 3c4b8b2f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggingButton.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKImpressionLoggerFactory; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(ImpressionLoggingButton) -@interface FBSDKImpressionLoggingButton : UIButton - -+ (void)configureWithImpressionLoggerFactory:(id)impressionLoggerFactory -NS_SWIFT_NAME(configure(impressionLoggerFactory:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKInstrumentManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKInstrumentManager.h deleted file mode 100644 index b9ed31dc..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKInstrumentManager.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKFeatureChecking; -@protocol FBSDKSettings; -@protocol FBSDKCrashObserving; -@protocol FBSDKErrorReporting; -@protocol FBSDKCrashHandler; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_InstrumentManager) -@interface FBSDKInstrumentManager : NSObject - -@property (class, nonatomic, readonly) FBSDKInstrumentManager *shared; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -// UNCRUSTIFY_FORMAT_OFF -- (void)configureWithFeatureChecker:(id)featureChecker - settings:(id)settings - crashObserver:(id)crashObserver - errorReporter:(id)errorReporter - crashHandler:(id)crashHandler -NS_SWIFT_NAME(configure(featureChecker:settings:crashObserver:errorReporter:crashHandler:)); -// UNCRUSTIFY_FORMAT_ON - -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKIntegrityParametersProcessorProvider.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKIntegrityParametersProcessorProvider.h deleted file mode 100644 index ee680932..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKIntegrityParametersProcessorProvider.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKAppEventsParameterProcessing; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_IntegrityParametersProcessorProvider) -@protocol FBSDKIntegrityParametersProcessorProvider - -@property (nullable, nonatomic) id integrityParametersProcessor; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKIntegrityProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKIntegrityProcessing.h deleted file mode 100644 index dcd5535f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKIntegrityProcessing.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(IntegrityProcessing) -@protocol FBSDKIntegrityProcessing - -- (BOOL)processIntegrity:(nullable NSString *)parameter; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKInternalURLOpener.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKInternalURLOpener.h deleted file mode 100644 index fbd2988d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKInternalURLOpener.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_InternalURLOpener) -@protocol FBSDKInternalURLOpener - -- (BOOL)canOpenURL:(NSURL *)url; -- (BOOL)openURL:(NSURL *)url; -- (void) openURL:(NSURL *)url - options:(NSDictionary *)options - completionHandler:(nullable void (^)(BOOL success))completion; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKInternalUtility.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKInternalUtility.h deleted file mode 100644 index 9c1f25e6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKInternalUtility.h +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -#import -#import -#import -#import - -#if !TARGET_OS_TV - #import -#endif - -@protocol FBSDKErrorCreating; -@protocol FBSDKInfoDictionaryProviding; -@protocol FBSDKSettings; -@protocol __FBSDKLoggerCreating; - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(InternalUtility) -@interface FBSDKInternalUtility : NSObject -#if !TARGET_OS_TV - -#else - -#endif - -#if !DEBUG -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; -#endif - -@property (class, nonnull, readonly) FBSDKInternalUtility *sharedUtility; - -/** - Returns bundle for returning localized strings - - We assume a convention of a bundle named FBSDKStrings.bundle, otherwise we - return the main bundle. - */ -@property (nonatomic, readonly, strong) NSBundle *bundleForStrings; - -/** - Tests whether the supplied URL is a valid URL for opening in the browser. - @param URL The URL to test. - @return YES if the URL refers to an http or https resource, otherwise NO. - */ -- (BOOL)isBrowserURL:(NSURL *)URL; - -/** - Checks equality between 2 objects. - - Checks for pointer equality, nils, isEqual:. - @param object The first object to compare. - @param other The second object to compare. - @return YES if the objects are equal, otherwise NO. - */ -- (BOOL)object:(id)object isEqualToObject:(id)other; - -/// Attempts to find the first UIViewController in the view's responder chain. Returns nil if not found. -- (nullable UIViewController *)viewControllerForView:(UIView *)view; - -/// returns true if the url scheme is registered in the CFBundleURLTypes -- (BOOL)isRegisteredURLScheme:(NSString *)urlScheme; - -/// returns currently displayed top view controller. -- (nullable UIViewController *)topMostViewController; - -/// returns the current key window -- (nullable UIWindow *)findWindow; - -#pragma mark - FB Apps Installed - -@property (nonatomic, readonly, assign) BOOL isMessengerAppInstalled; - -- (BOOL)isRegisteredCanOpenURLScheme:(NSString *)urlScheme; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)configureWithInfoDictionaryProvider:(id)infoDictionaryProvider - loggerFactory:(id<__FBSDKLoggerCreating>)loggerFactory - settings:(id)settings - errorFactory:(id)errorFactory -NS_SWIFT_NAME(configure(infoDictionaryProvider:loggerFactory:settings:errorFactory:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKInternalUtilityProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKInternalUtilityProtocol.h deleted file mode 100644 index 32a2e858..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKInternalUtilityProtocol.h +++ /dev/null @@ -1,139 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(InternalUtilityProtocol) -@protocol FBSDKInternalUtility - -#pragma mark - FB Apps Installed - -@property (nonatomic, readonly) BOOL isFacebookAppInstalled; - -/* - Checks if the app is Unity. - */ -@property (nonatomic, readonly) BOOL isUnity; - -/** - Constructs an NSURL. - @param scheme The scheme for the URL. - @param host The host for the URL. - @param path The path for the URL. - @param queryParameters The query parameters for the URL. This will be converted into a query string. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return The URL. - */ -- (nullable NSURL *)URLWithScheme:(NSString *)scheme - host:(NSString *)host - path:(NSString *)path - queryParameters:(NSDictionary *)queryParameters - error:(NSError *__autoreleasing *)errorRef; - -/** - Constructs an URL for the current app. - @param host The host for the URL. - @param path The path for the URL. - @param queryParameters The query parameters for the URL. This will be converted into a query string. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return The app URL. - */ -- (nullable NSURL *)appURLWithHost:(NSString *)host - path:(NSString *)path - queryParameters:(NSDictionary *)queryParameters - error:(NSError *__autoreleasing *)errorRef; - -/** - Constructs a Facebook URL. - @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. - @param path The path for the URL. This may or may not include a version. - @param queryParameters The query parameters for the URL. This will be converted into a query string. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return The Facebook URL. - */ -- (nullable NSURL *)facebookURLWithHostPrefix:(NSString *)hostPrefix - path:(NSString *)path - queryParameters:(NSDictionary *)queryParameters - error:(NSError *__autoreleasing *)errorRef -NS_SWIFT_NAME(facebookURL(hostPrefix:path:queryParameters:)); - -/** - Registers a transient object so that it will not be deallocated until unregistered - @param object The transient object - */ -- (void)registerTransientObject:(id)object; - -/** - Unregisters a transient object that was previously registered with registerTransientObject: - @param object The transient object - */ -- (void)unregisterTransientObject:(__weak id)object; - -- (void)checkRegisteredCanOpenURLScheme:(NSString *)urlScheme; - -/// Validates that the right URL schemes are registered, throws an NSException if not. -- (void)validateURLSchemes; - -/// add data processing options to the dictionary. -- (void)extendDictionaryWithDataProcessingOptions:(NSMutableDictionary *)parameters; - -/// Converts NSData to a hexadecimal UTF8 String. -- (nullable NSString *)hexadecimalStringFromData:(NSData *)data; - -/// validates that the app ID is non-nil, throws an NSException if nil. -- (void)validateAppID; - -/** - Validates that the client access token is non-nil, otherwise - throws an NSException otherwise. - Returns the composed client access token. - */ -- (NSString *)validateRequiredClientAccessToken; - -/** - Extracts permissions from a response fetched from me/permissions - @param responseObject the response - @param grantedPermissions the set to add granted permissions to - @param declinedPermissions the set to add declined permissions to. - */ -- (void)extractPermissionsFromResponse:(NSDictionary *)responseObject - grantedPermissions:(NSMutableSet *)grantedPermissions - declinedPermissions:(NSMutableSet *)declinedPermissions - expiredPermissions:(NSMutableSet *)expiredPermissions; - -/// validates that Facebook reserved URL schemes are not registered, throws an NSException if they are. -- (void)validateFacebookReservedURLSchemes; - -/** - Parses an FB url's query params (and potentially fragment) into a dictionary. - @param url The FB url. - @return A dictionary with the key/value pairs. - */ -- (NSDictionary *)parametersFromFBURL:(NSURL *)url; - -/** - Returns bundle for returning localized strings - - We assume a convention of a bundle named FBSDKStrings.bundle, otherwise we - return the main bundle. - */ -@property (nonatomic, readonly, strong) NSBundle *bundleForStrings; - -/// Returns currently displayed top view controller. -- (nullable UIViewController *)topMostViewController; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKKeychainStore.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKKeychainStore.h deleted file mode 100644 index a4292d54..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKKeychainStore.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(KeychainStore) -@interface FBSDKKeychainStore : NSObject - -@property (nonatomic, readonly, copy) NSString *service; -@property (nullable, nonatomic, readonly, copy) NSString *accessGroup; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithService:(NSString *)service accessGroup:(nullable NSString *)accessGroup NS_DESIGNATED_INITIALIZER; - -- (BOOL)setData:(nullable NSData *)value forKey:(NSString *)key accessibility:(CFTypeRef)accessibility; -- (nullable NSData *)dataForKey:(NSString *)key; - -// hook for subclasses to override keychain query construction. -- (NSMutableDictionary *)queryForKey:(NSString *)key; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProtocol.h deleted file mode 100644 index 4f8636a8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProtocol.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(KeychainStoreProtocol) -@protocol FBSDKKeychainStore - -- (nullable NSString *)stringForKey:(NSString *)key; -- (nullable NSDictionary *)dictionaryForKey:(NSString *)key; - -- (BOOL)setString:(nullable NSString *)value forKey:(NSString *)key accessibility:(nullable CFTypeRef)accessibility; -- (BOOL)setDictionary:(nullable NSDictionary *)value forKey:(NSString *)key accessibility:(nullable CFTypeRef)accessibility; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProviding.h deleted file mode 100644 index fcf65190..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProviding.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(KeychainStoreProviding) -@protocol FBSDKKeychainStoreProviding - -- (nonnull id)createKeychainStoreWithService:(NSString *)service - accessGroup:(nullable NSString *)accessGroup -NS_SWIFT_NAME(createKeychainStore(service:accessGroup:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLocation.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLocation.h deleted file mode 100644 index e9fd1304..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLocation.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(Location) -@interface FBSDKLocation : NSObject - -/// Location id -@property (nonatomic, readonly, strong) NSString *id; -/// Location name -@property (nonatomic, readonly, strong) NSString *name; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Returns a Location object from a dinctionary containing valid location information. - @param dictionary The dictionary containing raw location - - Valid location will consist of "id" and "name" strings. - */ -+ (nullable instancetype)locationFromDictionary:(NSDictionary *)dictionary; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLogger.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLogger.h deleted file mode 100644 index bfeeec47..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLogger.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Simple logging utility for conditionally logging strings and then emitting them - via NSLog(). - - @unsorted - - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_Logger) -@interface FBSDKLogger : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -// Simple helper to write a single log entry, based upon whether the behavior matches a specified on. -+ (void)singleShotLogEntry:(FBSDKLoggingBehavior)loggingBehavior - logEntry:(NSString *)logEntry; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLoggerFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLoggerFactory.h deleted file mode 100644 index c6ad1f03..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLoggerFactory.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_LoggerFactory) -@interface FBSDKLoggerFactory : NSObject <__FBSDKLoggerCreating> -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLogging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLogging.h deleted file mode 100644 index dbef5411..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLogging.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(Logging) -@protocol FBSDKLogging - -@property (nonatomic, readonly, copy) NSString *contents; -@property (nonatomic, readonly, copy) FBSDKLoggingBehavior loggingBehavior; - -- (instancetype)initWithLoggingBehavior:(FBSDKLoggingBehavior)loggingBehavior; - -+ (void)singleShotLogEntry:(FBSDKLoggingBehavior)loggingBehavior - logEntry:(NSString *)logEntry; - -- (void)logEntry:(NSString *)logEntry; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLoggingBehavior.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLoggingBehavior.h deleted file mode 100644 index 776e274e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLoggingBehavior.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/* - * Constants defining logging behavior. Use with <[FBSDKSettings setLoggingBehavior]>. - */ - -typedef NSString *FBSDKLoggingBehavior NS_TYPED_ENUM NS_SWIFT_NAME(LoggingBehavior); - -/// Include access token in logging. -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorAccessTokens; - -/// Log performance characteristics -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorPerformanceCharacteristics; - -/// Log FBSDKAppEvents interactions -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorAppEvents; - -/// Log Informational occurrences -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorInformational; - -/// Log cache errors. -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorCacheErrors; - -/// Log errors from SDK UI controls -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorUIControlErrors; - -/// Log debug warnings from API response, i.e. when friends fields requested, but user_friends permission isn't granted. -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorGraphAPIDebugWarning; - -/** Log warnings from API response, i.e. when requested feature will be deprecated in next version of API. - Info is the lowest level of severity, using it will result in logging all previously mentioned levels. - */ -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorGraphAPIDebugInfo; - -/// Log errors from SDK network requests -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorNetworkRequests; - -/// Log errors likely to be preventable by the developer. This is in the default set of enabled logging behaviors. -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorDeveloperErrors; - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLoggingNotifying.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLoggingNotifying.h deleted file mode 100644 index 0230cbc4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLoggingNotifying.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_LoggingNotifying) -@protocol FBSDKLoggingNotifying - -- (void)logAndNotify:(NSString *)message; -- (void)logAndNotify:(NSString *)message allowLogAsDeveloperError:(BOOL)allowLogAsDeveloperError; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLoginTooltip.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLoginTooltip.h deleted file mode 100644 index a6637497..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKLoginTooltip.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** -Internal Type exposed to facilitate transition to Swift. -API Subject to change or removal without warning. Do not use. - -@warning INTERNAL - DO NOT USE - */ -@interface FBSDKLoginTooltip : NSObject -@property (nonatomic, readonly, getter = isEnabled, assign) BOOL enabled; -@property (nonatomic, readonly, copy) NSString *text; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithText:(NSString *)text - enabled:(BOOL)enabled - NS_DESIGNATED_INITIALIZER; -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMacCatalystDetermining.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMacCatalystDetermining.h deleted file mode 100644 index 226ea6f4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMacCatalystDetermining.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_MacCatalystDetermining) -@protocol FBSDKMacCatalystDetermining - -@property (readonly) BOOL fb_isMacCatalystApp; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMath.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMath.h deleted file mode 100644 index 613cc12e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMath.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface FBSDKMath : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -+ (CGSize)ceilForSize:(CGSize)value; -+ (CGSize)floorForSize:(CGSize)value; -+ (NSUInteger)hashWithInteger:(NSUInteger)value; -+ (NSUInteger)hashWithIntegerArray:(NSUInteger *)values count:(NSUInteger)count; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventListener.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventListener.h deleted file mode 100644 index 5bc17830..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventListener.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_MeasurementEventListener) -@interface FBSDKMeasurementEventListener : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithEventLogger:(id)eventLogger - sourceApplicationTracker:(id)sourceApplicationTracker; - -- (void)registerForAppLinkMeasurementEvents; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventNames.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventNames.h deleted file mode 100644 index bb6ebe71..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventNames.h +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** -Internal value exposed to facilitate transition to Swift. -API Subject to change or removal without warning. Do not use. - -@warning INTERNAL - DO NOT USE - -The name of the notification posted by FBSDKMeasurementEvent -*/ -FOUNDATION_EXPORT NSNotificationName const FBSDKMeasurementEventNotification -NS_SWIFT_NAME(MeasurementEvent); - -/** -Internal value exposed to facilitate transition to Swift. -API Subject to change or removal without warning. Do not use. - -@warning INTERNAL - DO NOT USE - -Events raised by FBSDKMeasurementEvent for Applink -The name of the event posted when [FBSDKURL URLWithURL:] is called successfully. This represents the successful parsing of an app link URL. -*/ -FOUNDATION_EXPORT NSString *const FBSDKAppLinkParseEventName -NS_SWIFT_NAME(AppLinkParseEventName); - -/** -Internal value exposed to facilitate transition to Swift. -API Subject to change or removal without warning. Do not use. - -@warning INTERNAL - DO NOT USE - -The name of the event posted when [FBSDKURL URLWithInboundURL:] is called successfully. -This represents parsing an inbound app link URL from a different application -*/ -FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateInEventName -NS_SWIFT_NAME(AppLinkNavigateInEventName); - -/** -Internal value exposed to facilitate transition to Swift. -API Subject to change or removal without warning. Do not use. - -@warning INTERNAL - DO NOT USE - -The event raised when the user navigates from your app to other apps -*/ -FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateOutEventName -NS_SWIFT_NAME(AppLinkNavigateOutEventName); - -/** -Internal value exposed to facilitate transition to Swift. -API Subject to change or removal without warning. Do not use. - -@warning INTERNAL - DO NOT USE - -The event raised when the user navigates out from your app and back to the referrer app. -e.g when the user leaves your app after tapping the back-to-referrer navigation bar -*/ -FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateBackToReferrerEventName -NS_SWIFT_NAME(AppLinkNavigateBackToReferrerEventName); - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexer.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexer.h deleted file mode 100644 index 869ecf53..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexer.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -@protocol FBSDKUserDataPersisting; -@protocol FBSDKSwizzling; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_MetadataIndexer) -@interface FBSDKMetadataIndexer : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithUserDataStore:(id)userDataStore - swizzler:(Class)swizzler - NS_DESIGNATED_INITIALIZER; - -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexing.h deleted file mode 100644 index efcc149f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexing.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_MetadataIndexing) -@protocol FBSDKMetadataIndexing - -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKModelManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKModelManager.h deleted file mode 100644 index ee88a709..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKModelManager.h +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import -#import -#import -#import -#import - -@protocol FBSDKFeatureChecking; -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKFileManaging; -@protocol FBSDKDataPersisting; -@protocol FBSDKSettings; -@protocol FBSDKFileDataExtracting; -@protocol FBSDKGateKeeperManaging; -@protocol FBSDKSuggestedEventsIndexer; -@protocol FBSDKFeatureExtracting; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ModelManager) -@interface FBSDKModelManager : NSObject - -@property (class, nonnull, readonly) FBSDKModelManager *shared; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (void)enable; -- (nullable NSData *)getWeightsForKey:(NSString *)useCase; -- (nullable NSArray *)getThresholdsForKey:(NSString *)useCase; -- (BOOL)processIntegrity:(nullable NSString *)param; -- (NSString *)processSuggestedEvents:(NSString *)textFeature denseData:(nullable float *)denseData; - -- (void)configureWithFeatureChecker:(id)featureChecker - graphRequestFactory:(id)graphRequestFactory - fileManager:(id)fileManager - store:(id)store - getAppID:(NSString * (^)(void))getAppID - dataExtractor:(Class)dataExtractor - gateKeeperManager:(Class)gateKeeperManager - suggestedEventsIndexer:(id)suggestedEventsIndexer - featureExtractor:(Class)featureExtractor -NS_SWIFT_NAME(configure(featureChecker:graphRequestFactory:fileManager:store:getAppID:dataExtractor:gateKeeperManager:suggestedEventsIndexer:featureExtractor:)); - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h deleted file mode 100644 index 219d3fef..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Extension protocol for NSMutableCopying that adds the mutableCopy method, which is implemented on NSObject. - - NSObject implicitly conforms to this protocol. - */ -NS_SWIFT_NAME(MutableCopying) -@protocol FBSDKMutableCopying - -/** - Implemented by NSObject as a convenience to mutableCopyWithZone:. - @return A mutable copy of the receiver. - */ -- (id)mutableCopy; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecker.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecker.h deleted file mode 100644 index 5b157c20..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecker.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Concrete type providing functionality that checks whether an error represents a - network error. - */ -NS_SWIFT_NAME(NetworkErrorChecker) -@interface FBSDKNetworkErrorChecker : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecking.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecking.h deleted file mode 100644 index 2868737f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecking.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_SWIFT_NAME(NetworkErrorChecking) -@protocol FBSDKNetworkErrorChecking - -/** - Checks whether an error is a network error. - - @param error An error that may or may not represent a network error. - - @return `YES` if the error represents a network error, otherwise `NO`. - */ -- (BOOL)isNetworkError:(NSError *)error; - -@end diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKObjectDecoding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKObjectDecoding.h deleted file mode 100644 index a27700f2..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKObjectDecoding.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@protocol FBSDKObjectDecoding - -- (nullable id)decodeObjectOfClass:(Class)aClass - forKey:(NSString *)key; -- (nullable id)decodeObjectOfClasses:(NSSet *)classes - forKey:(NSString *)key; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKOperatingSystemVersionComparing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKOperatingSystemVersionComparing.h deleted file mode 100644 index 29dcb507..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKOperatingSystemVersionComparing.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// An interface for indicating whether the version of the operating system on which the process is executing -// is the same or later than a given version. -NS_SWIFT_NAME(_OperatingSystemVersionComparing) -@protocol FBSDKOperatingSystemVersionComparing - -// UNCRUSTIFY_FORMAT_OFF -- (BOOL)fb_isOperatingSystemAtLeastVersion:(NSOperatingSystemVersion)version -NS_SWIFT_NAME(fb_isOperatingSystemAtLeast(_:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKPasteboard.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKPasteboard.h deleted file mode 100644 index fd7faf11..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKPasteboard.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal protocol exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_Pasteboard) -@protocol FBSDKPasteboard - -@property (nonatomic, readonly) NSString *name; - -@property (nonatomic, readonly) BOOL _isGeneralPasteboard; - -- (nullable NSData *)dataForPasteboardType:(NSString *)pasteboardType; -- (void)setData:(NSData *)data forPasteboardType:(NSString *)pasteboardType; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKPaymentObserving.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKPaymentObserving.h deleted file mode 100644 index 6e717028..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKPaymentObserving.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// Protocol of the class to encapsulate implicit logging of purchase events -NS_SWIFT_NAME(_PaymentObserving) -@protocol FBSDKPaymentObserving - -// These methods need Swift name overrides since they otherwise get changed to -// `startTransactions` and `stopTransactions` otherwise. -- (void)startObservingTransactions NS_SWIFT_NAME(startObservingTransactions()); -- (void)stopObservingTransactions NS_SWIFT_NAME(stopObservingTransactions()); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestor.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestor.h deleted file mode 100644 index 8cd5aa58..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestor.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKSettings; -@protocol FBSDKEventLogging; -@protocol FBSDKGateKeeperManaging; -@protocol FBSDKDataPersisting; -@protocol __FBSDKLoggerCreating; -@protocol FBSDKProductsRequestCreating; -@protocol FBSDKAppStoreReceiptProviding; - -NS_ASSUME_NONNULL_BEGIN - -/** - Used for requesting information about purchase events from StoreKit to use when - logging AppEvents - */ -NS_SWIFT_NAME(PaymentProductRequestor) -@interface FBSDKPaymentProductRequestor : NSObject - -+ (instancetype)new NS_UNAVAILABLE; -- (instancetype)init NS_UNAVAILABLE; - -- (instancetype)initWithTransaction:(SKPaymentTransaction *)transaction - settings:(id)settings - eventLogger:(id)eventLogger - gateKeeperManager:(Class)gateKeeperManager - store:(id)store - loggerFactory:(id<__FBSDKLoggerCreating>)loggerFactory - productsRequestFactory:(id)productRequestFactory - appStoreReceiptProvider:(id)receiptProvider; - -- (void)resolveProducts; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestorCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestorCreating.h deleted file mode 100644 index bcf69856..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestorCreating.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@class FBSDKPaymentProductRequestor; -@class SKPaymentTransaction; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Protocol exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_PaymentProductRequestorCreating) -@protocol FBSDKPaymentProductRequestorCreating - -// UNCRUSTIFY_FORMAT_OFF -- (nonnull FBSDKPaymentProductRequestor *)createRequestorWithTransaction:(SKPaymentTransaction *)transaction -NS_SWIFT_NAME(createRequestor(transaction:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProductAvailability.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProductAvailability.h deleted file mode 100644 index fa8f4cde..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProductAvailability.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -/** - NS_ENUM(NSUInteger, FBSDKProductAvailability) - Specifies product availability for Product Catalog product item update - */ -typedef NS_ENUM(NSUInteger, FBSDKProductAvailability) { - /// Item ships immediately - FBSDKProductAvailabilityInStock = 0, - /// No plan to restock - FBSDKProductAvailabilityOutOfStock, - /// Available in future - FBSDKProductAvailabilityPreOrder, - /// Ships in 1-2 weeks - FBSDKProductAvailabilityAvailableForOrder, - /// Discontinued - FBSDKProductAvailabilityDiscontinued, -} NS_SWIFT_NAME(AppEvents.ProductAvailability); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProductCondition.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProductCondition.h deleted file mode 100644 index 41e23b1e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProductCondition.h +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -/** - NS_ENUM(NSUInteger, FBSDKProductCondition) - Specifies product condition for Product Catalog product item update - */ -typedef NS_ENUM(NSUInteger, FBSDKProductCondition) { - FBSDKProductConditionNew = 0, - FBSDKProductConditionRefurbished, - FBSDKProductConditionUsed, -} NS_SWIFT_NAME(AppEvents.ProductCondition); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProductRequestFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProductRequestFactory.h deleted file mode 100644 index b5154e72..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProductRequestFactory.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ProductRequestFactory) -@interface FBSDKProductRequestFactory : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProductsRequestProtocols.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProductsRequestProtocols.h deleted file mode 100644 index 514087c0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProductsRequestProtocols.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -@protocol SKProductsRequestDelegate; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - - An abstraction for an `SKProductsRequest` instance - */ -NS_SWIFT_NAME(_ProductsRequest) -@protocol FBSDKProductsRequest - -@property (nullable, nonatomic, weak) id delegate; - -- (void)cancel; -- (void)start; - -@end - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - - An abstraction for any object that can create a `ProductsRequest` - */ -NS_SWIFT_NAME(_ProductsRequestCreating) -@protocol FBSDKProductsRequestCreating - -- (id)createWithProductIdentifiers:(NSSet *)identifiers; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProfileBlock.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProfileBlock.h deleted file mode 100644 index bb74fab0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProfileBlock.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -@class FBSDKProfile; - -NS_ASSUME_NONNULL_BEGIN - -/** - The callback closure type for loading the current profile. - - @param profile The Profile that was loaded, if any. - @param error The error that occurred during the request, if any. - */ -typedef void (^ FBSDKProfileBlock)(FBSDKProfile *_Nullable profile, NSError *_Nullable error) -NS_SWIFT_NAME(ProfileBlock); - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProfileNotifications.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProfileNotifications.h deleted file mode 100644 index 6fa7925d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKProfileNotifications.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -NS_ASSUME_NONNULL_BEGIN - -/** - Notification name indicating that the current profile has changed. - - The user info dictionary of the notification may contain values for the keys - `ProfileChangeOldKey` and `ProfileChangeNewKey`. - */ -FOUNDATION_EXPORT NSNotificationName const FBSDKProfileDidChangeNotification -NS_SWIFT_NAME(ProfileDidChange); - -/** - Key in notification's user info object for storing the old profile. - - If there was no old profile, the key will not be present. - */ -FOUNDATION_EXPORT NSString *const FBSDKProfileChangeOldKey -NS_SWIFT_NAME(ProfileChangeOldKey); - -/** - Key in notification's user info object for storing the new profile. - - If there is no new profile, the key will not be present. - */ -FOUNDATION_EXPORT NSString *const FBSDKProfileChangeNewKey -NS_SWIFT_NAME(ProfileChangeNewKey); - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKRandom.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKRandom.h deleted file mode 100644 index 9efef73c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKRandom.h +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - Provides a random string - @param numberOfBytes the number of bytes to use - */ -extern NSString *_Nullable fb_randomString(NSUInteger numberOfBytes); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h deleted file mode 100644 index e352b82e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKServerConfigurationProviding; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_RestrictiveDataFilterManager) -@interface FBSDKRestrictiveDataFilterManager : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithServerConfigurationProvider:(id)serverConfigurationProvider NS_DESIGNATED_INITIALIZER; - -- (void)enable; -- (void)processEvents:(NSArray *> *)events; -- (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters - eventName:(FBSDKAppEventName)eventName; -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKRulesFromKeyProvider.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKRulesFromKeyProvider.h deleted file mode 100644 index a57e67d1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKRulesFromKeyProvider.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_RulesFromKeyProvider) -@protocol FBSDKRulesFromKeyProvider - -- (nullable NSDictionary *)getRulesForKey:(NSString *)useCase; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSKAdNetworkReporter.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSKAdNetworkReporter.h deleted file mode 100644 index c6f11640..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSKAdNetworkReporter.h +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_SKAdNetworkReporter) -@interface FBSDKSKAdNetworkReporter : NSObject - -@property (nonatomic) id graphRequestFactory; -@property (nonatomic) id dataStore; -@property (nonatomic) Class conversionValueUpdater; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -// UNCRUSTIFY_FORMAT_OFF -- (instancetype)initWithGraphRequestFactory:(id)graphRequestFactory - dataStore:(id)dataStore - conversionValueUpdater:(Class)conversionValueUpdater -NS_SWIFT_NAME(init(graphRequestFactory:dataStore:conversionValueUpdater:)); -// UNCRUSTIFY_FORMAT_ON - -- (void)enable; - -- (void)recordAndUpdateEvent:(NSString *)event - currency:(nullable NSString *)currency - value:(nullable NSNumber *)value; - -- (BOOL)shouldCutoff; - -- (BOOL)isReportingEvent:(NSString *)event; - -- (void)checkAndRevokeTimer; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationManager.h deleted file mode 100644 index fd533bac..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationManager.h +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -#define FBSDK_SERVER_CONFIGURATION_MANAGER_CACHE_TIMEOUT (60 * 60) - -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKGraphRequestConnectionFactory; -@protocol FBSDKDialogConfigurationMapBuilding; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ServerConfigurationManager) -@interface FBSDKServerConfigurationManager : NSObject - -@property (class, readonly) FBSDKServerConfigurationManager *shared; - -+ (instancetype)new NS_UNAVAILABLE; -- (instancetype)init NS_UNAVAILABLE; - -@property (nullable, nonatomic) id graphRequestFactory; -@property (nullable, nonatomic) id graphRequestConnectionFactory; -@property (nullable, nonatomic) id dialogConfigurationMapBuilder; - -// UNCRUSTIFY_FORMAT_OFF -- (void)configureWithGraphRequestFactory:(id)graphRequestFactory - graphRequestConnectionFactory:(id)graphRequestConnectionFactory - dialogConfigurationMapBuilder:(id)dialogConfigurationMapBuilder - NS_SWIFT_NAME(configure(graphRequestFactory:graphRequestConnectionFactory:dialogConfigurationMapBuilder:)); -// UNCRUSTIFY_FORMAT_ON - -- (void)clearCache; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationProviding.h deleted file mode 100644 index 0921d73a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationProviding.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ServerConfigurationBlock) -typedef void (^FBSDKServerConfigurationBlock)(FBSDKServerConfiguration *_Nullable serverConfiguration, NSError *_Nullable error); - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ServerConfigurationProviding) -@protocol FBSDKServerConfigurationProviding - -- (FBSDKServerConfiguration *)cachedServerConfiguration; - -/** - Executes the completionBlock with a valid and current configuration when it is available. - - This method will use a cached configuration if it is valid and not expired. - */ -- (void)loadServerConfigurationWithCompletionBlock:(nullable FBSDKServerConfigurationBlock)completionBlock; - -- (void)processLoadRequestResponse:(id)result error:(nullable NSError *)error appID:(NSString *)appID; - -- (nullable FBSDKGraphRequest *)requestToLoadServerConfiguration:(NSString *)appID; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSettingsLogging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSettingsLogging.h deleted file mode 100644 index 1e21fe02..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSettingsLogging.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(SettingsLogging) -@protocol FBSDKSettingsLogging - -- (void)logWarnings; -- (void)logIfSDKSettingsChanged; -- (void)recordInstall; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSourceApplicationTracking.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSourceApplicationTracking.h deleted file mode 100644 index 686617fa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSourceApplicationTracking.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_SourceApplicationTracking) -@protocol FBSDKSourceApplicationTracking - -- (void)setSourceApplication:(nullable NSString *)sourceApplication openURL:(nullable NSURL *)url; -- (void)setSourceApplication:(nullable NSString *)sourceApplication isFromAppLink:(BOOL)isFromAppLink; -- (void)registerAutoResetSourceApplication; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexer.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexer.h deleted file mode 100644 index 38e3dc32..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexer.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKServerConfigurationProviding; -@protocol FBSDKSwizzling; -@protocol FBSDKSettings; -@protocol FBSDKEventLogging; -@protocol FBSDKFeatureExtracting; -@protocol FBSDKEventProcessing; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_SuggestedEventsIndexer) -@interface FBSDKSuggestedEventsIndexer : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithGraphRequestFactory:(id)graphRequestFactory - serverConfigurationProvider:(id)serverConfigurationProvider - swizzler:(Class)swizzler - settings:(id)settings - eventLogger:(id)eventLogger - featureExtractor:(Class)featureExtractor - eventProcessor:(id)eventProcessor - NS_DESIGNATED_INITIALIZER; - -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexerProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexerProtocol.h deleted file mode 100644 index 8fda03d1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexerProtocol.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_SuggestedEventsIndexerProtocol) -@protocol FBSDKSuggestedEventsIndexer - -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSwizzler.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSwizzler.h deleted file mode 100644 index 13de9a47..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSwizzler.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -// Cast to turn things that are not ids into NSMapTable keys -#define MAPTABLE_ID(x) (__bridge id)((void *)x) - -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wstrict-prototypes" - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef void (^_swizzleBlock)(); - -#pragma clang diagnostic pop - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_Swizzler) -@interface FBSDKSwizzler : NSObject - -+ (void)swizzleSelector:(SEL)aSelector onClass:(Class)aClass withBlock:(_swizzleBlock)block named:(NSString *)aName; -+ (void)unswizzleSelector:(SEL)aSelector onClass:(Class)aClass named:(NSString *)aName; -+ (void)printSwizzles; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSwizzling.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSwizzling.h deleted file mode 100644 index 2bccd15c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKSwizzling.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wstrict-prototypes" - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef void (^_swizzleBlock)(); - -#pragma clang diagnostic pop - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_Swizzling) -@protocol FBSDKSwizzling - -+ (void)swizzleSelector:(SEL)aSelector onClass:(Class)aClass withBlock:(_swizzleBlock)block named:(NSString *)aName; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentData.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentData.h deleted file mode 100644 index a443696e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentData.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -@protocol FBSDKEventLogging; -@protocol FBSDKServerConfigurationProviding; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// Class to encapsulate persisting of time spent data collected by [FBSDKAppEvents.shared activateApp]. The activate app App Event is -// logged when restore: is called with sufficient time since the last deactivation. -NS_SWIFT_NAME(_TimeSpentData) -@interface FBSDKTimeSpentData : NSObject - -+ (instancetype)new NS_UNAVAILABLE; -- (instancetype)init NS_UNAVAILABLE; - -- (instancetype)initWithEventLogger:(id)eventLogger - serverConfigurationProvider:(id)serverConfigurationProvider; - -- (void)setSourceApplication:(nullable NSString *)sourceApplication openURL:(nullable NSURL *)url; -- (void)setSourceApplication:(nullable NSString *)sourceApplication isFromAppLink:(BOOL)isFromAppLink; -- (void)registerAutoResetSourceApplication; -- (void)suspend; -- (void)restore:(BOOL)calledFromActivateApp; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentRecording.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentRecording.h deleted file mode 100644 index e79f2c77..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentRecording.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_TimeSpentRecording) -@protocol FBSDKTimeSpentRecording - -- (void)suspend; -- (void)restore:(BOOL)calledFromActivateApp; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTokenCaching.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTokenCaching.h deleted file mode 100644 index 9b9ec1f6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTokenCaching.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKAccessToken; -@class FBSDKAuthenticationToken; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(TokenCaching) -@protocol FBSDKTokenCaching - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (nullable, nonatomic, copy) FBSDKAccessToken *accessToken; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (nullable, nonatomic, copy) FBSDKAuthenticationToken *authenticationToken; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTokenStringProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTokenStringProviding.h deleted file mode 100644 index a167defa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTokenStringProviding.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_TokenStringProviding) -@protocol FBSDKTokenStringProviding - -/** - Return the token string of the current access token. - - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -@property (class, nullable, nonatomic, readonly, copy) NSString *tokenString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTransformer.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTransformer.h deleted file mode 100644 index ea415c83..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKTransformer.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -extern CATransform3D const FBSDKCATransform3DIdentity; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@interface FBSDKTransformer : NSObject -- (CATransform3D)CATransform3DMakeScale:(CGFloat)sx sy:(CGFloat)sy sz:(CGFloat)sz; -- (CATransform3D)CATransform3DMakeTranslation:(CGFloat)tx ty:(CGFloat)ty tz:(CGFloat)tz; -- (CATransform3D)CATransform3DConcat:(CATransform3D)a b:(CATransform3D)b; -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURL.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURL.h deleted file mode 100644 index ddfad59a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURL.h +++ /dev/null @@ -1,101 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKAppLink; -@protocol FBSDKAppLinkCreating; - -/** - Provides a set of utilities for working with NSURLs, such as parsing of query parameters - and handling for App Link requests. - */ -NS_SWIFT_NAME(AppLinkURL) -@interface FBSDKURL : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Creates a link target from a raw URL. - On success, this posts the FBSDKAppLinkParseEventName measurement event. If you are constructing the FBSDKURL within your application delegate's - application:openURL:sourceApplication:annotation:, you should instead use URLWithInboundURL:sourceApplication: - to support better FBSDKMeasurementEvent notifications - @param url The instance of `NSURL` to create FBSDKURL from. - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (instancetype)URLWithURL:(NSURL *)url -NS_SWIFT_NAME(init(url:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Creates a link target from a raw URL received from an external application. This is typically called from the app delegate's - application:openURL:sourceApplication:annotation: and will post the FBSDKAppLinkNavigateInEventName measurement event. - @param url The instance of `NSURL` to create FBSDKURL from. - @param sourceApplication the bundle ID of the app that is requesting your app to open the URL. The same sourceApplication in application:openURL:sourceApplication:annotation: - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (instancetype)URLWithInboundURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication -NS_SWIFT_NAME(init(inboundURL:sourceApplication:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Gets the target URL. If the link is an App Link, this is the target of the App Link. - Otherwise, it is the url that created the target. - */ -@property (nonatomic, readonly, strong) NSURL *targetURL; - -/// Gets the query parameters for the target, parsed into an NSDictionary. -@property (nonatomic, readonly, strong) NSDictionary *targetQueryParameters; - -/** - If this link target is an App Link, this is the data found in al_applink_data. - Otherwise, it is nil. - */ -@property (nullable, nonatomic, readonly, strong) NSDictionary *appLinkData; - -/// If this link target is an App Link, this is the data found in extras. -@property (nullable, nonatomic, readonly, strong) NSDictionary *appLinkExtras; - -/// The App Link indicating how to navigate back to the referer app, if any. -@property (nullable, nonatomic, readonly, strong) id appLinkReferer; - -/// The URL that was used to create this FBSDKURL. -@property (nonatomic, readonly, strong) NSURL *inputURL; - -/// The query parameters of the inputURL, parsed into an NSDictionary. -@property (nonatomic, readonly, strong) NSDictionary *inputQueryParameters; - -/// The flag indicating whether the URL comes from auto app link -@property (nonatomic, readonly, getter = isAutoAppLink) BOOL isAutoAppLink; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// UNCRUSTIFY_FORMAT_OFF -+ (void)configureWithSettings:(id)settings - appLinkFactory:(id)appLinkFactory - appLinkTargetFactory:(id)appLinkTargetFactory - appLinkEventPoster:(id)appLinkEventPoster -NS_SWIFT_NAME(configure(settings:appLinkFactory:appLinkTargetFactory:appLinkEventPoster:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLHosting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLHosting.h deleted file mode 100644 index e5d8993f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLHosting.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(URLHosting) -@protocol FBSDKURLHosting - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (nullable NSURL *)appURLWithHost:(NSString *)host - path:(NSString *)path - queryParameters:(NSDictionary *)queryParameters - error:(NSError *__autoreleasing *)errorRef; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (nullable NSURL *)facebookURLWithHostPrefix:(NSString *)hostPrefix - path:(NSString *)path - queryParameters:(NSDictionary *)queryParameters - error:(NSError *__autoreleasing *)errorRef -NS_SWIFT_NAME(facebookURL(hostPrefix:path:queryParameters:)); - - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLOpener.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLOpener.h deleted file mode 100644 index 7fb6687d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLOpener.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKURLOpening; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(URLOpener) -@protocol FBSDKURLOpener - -- (void)openURL:(NSURL *)url - sender:(nullable id)sender - handler:(FBSDKSuccessBlock)handler; - -// UNCRUSTIFY_FORMAT_OFF -- (void)openURLWithSafariViewController:(NSURL *)url - sender:(nullable id)sender - fromViewController:(nullable UIViewController *)fromViewController - handler:(FBSDKSuccessBlock)handler -NS_SWIFT_NAME(openURLWithSafariViewController(url:sender:from:handler:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLOpening.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLOpening.h deleted file mode 100644 index c2e50cd4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLOpening.h +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(URLOpening) -@protocol FBSDKURLOpening - -// Implementations should make sure they can handle nil parameters -// which is possible in SafariViewController. -// see canOpenURL below. -- (BOOL)application:(nullable UIApplication *)application - openURL:(nullable NSURL *)url - sourceApplication:(nullable NSString *)sourceApplication - annotation:(nullable id)annotation; - -// create a different handler to return YES/NO if the receiver can process the above openURL:. -// This is separated so that we can process the openURL: in callbacks, while still returning -// the result of canOpenURL synchronously in FBSDKApplicationDelegate -- (BOOL) canOpenURL:(NSURL *)url - forApplication:(nullable UIApplication *)application - sourceApplication:(nullable NSString *)sourceApplication - annotation:(nullable id)annotation; - -- (void)applicationDidBecomeActive:(UIApplication *)application; - -- (BOOL)isAuthenticationURL:(NSURL *)url; - -@optional - -+ (instancetype)makeOpener; - -- (BOOL)shouldStopPropagationOfURL:(NSURL *)url; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLScheme.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLScheme.h deleted file mode 100644 index f7283921..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLScheme.h +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -typedef NSString *FBSDKURLScheme NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(URLScheme); - -FOUNDATION_EXPORT FBSDKURLScheme const FBSDKURLSchemeFacebookAPI; -FOUNDATION_EXPORT FBSDKURLScheme const FBSDKURLSchemeMessengerApp; -FOUNDATION_EXPORT FBSDKURLScheme const FBSDKURLSchemeHTTPS NS_SWIFT_NAME(https); -FOUNDATION_EXPORT FBSDKURLScheme const FBSDKURLSchemeHTTP NS_SWIFT_NAME(http); -FOUNDATION_EXPORT FBSDKURLScheme const FBSDKURLSchemeWeb; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyFactory.h deleted file mode 100644 index 278ec728..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyFactory.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_URLSessionProxyFactory) -@interface FBSDKURLSessionProxyFactory : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyProviding.h deleted file mode 100644 index cf4eb064..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyProviding.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_URLSessionProxyProviding) -@protocol FBSDKURLSessionProxyProviding - -- (id)createSessionProxyWithDelegate:(nullable id)delegate - queue:(nullable NSOperationQueue *)queue; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxying.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxying.h deleted file mode 100644 index 0a9636c1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxying.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_PROTOCOL_REQUIRES_EXPLICIT_IMPLEMENTATION -NS_SWIFT_NAME(_URLSessionProxying) -@protocol FBSDKURLSessionProxying - -@property (nullable, nonatomic, retain) NSOperationQueue *delegateQueue; - -- (void)executeURLRequest:(NSURLRequest *)request - completionHandler:(FBSDKURLSessionTaskBlock)handler; -- (void)invalidateAndCancel; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProvider.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProvider.h deleted file mode 100644 index ba415cca..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProvider.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(UnarchiverProvider) -@interface FBSDKUnarchiverProvider : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProviding.h deleted file mode 100644 index c01ee41f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProviding.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@protocol FBSDKUnarchiverProviding - -+ (nonnull id)createSecureUnarchiverFor:(NSData *)data; -+ (nonnull id)createInsecureUnarchiverFor:(NSData *)data; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserAgeRange.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserAgeRange.h deleted file mode 100644 index 38c09110..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserAgeRange.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(UserAgeRange) -@interface FBSDKUserAgeRange : NSObject - -/// The user's minimum age, nil if unspecified -@property (nullable, nonatomic, readonly, strong) NSNumber *min; -/// The user's maximum age, nil if unspecified -@property (nullable, nonatomic, readonly, strong) NSNumber *max; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Returns a UserAgeRange object from a dinctionary containing valid user age range. - @param dictionary The dictionary containing raw user age range - - Valid user age range will consist of "min" and/or "max" values that are - positive integers, where "min" is smaller than or equal to "max". - */ -+ (nullable instancetype)ageRangeFromDictionary:(NSDictionary *)dictionary; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserDataPersisting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserDataPersisting.h deleted file mode 100644 index 7ab945c9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserDataPersisting.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_UserDataPersisting) -@protocol FBSDKUserDataPersisting - -// UNCRUSTIFY_FORMAT_OFF -- (void)setUserEmail:(nullable NSString *)email - firstName:(nullable NSString *)firstName - lastName:(nullable NSString *)lastName - phone:(nullable NSString *)phone - dateOfBirth:(nullable NSString *)dateOfBirth - gender:(nullable NSString *)gender - city:(nullable NSString *)city - state:(nullable NSString *)state - zip:(nullable NSString *)zip - country:(nullable NSString *)country - externalId:(nullable NSString *)externalId -NS_SWIFT_NAME(setUser(email:firstName:lastName:phone:dateOfBirth:gender:city:state:zip:country:externalId:)); -// UNCRUSTIFY_FORMAT_ON - -- (nullable NSString *)getUserData; - -- (void)clearUserData; - -- (void)setUserData:(nullable NSString *)data - forType:(FBSDKAppEventUserDataType)type; - -- (void)clearUserDataForType:(FBSDKAppEventUserDataType)type; - -- (void)setEnabledRules:(NSArray *)rules; - -- (nullable NSString *)getInternalHashedDataForType:(FBSDKAppEventUserDataType)type; - -- (void)setInternalHashData:(nullable NSString *)hashData - forType:(FBSDKAppEventUserDataType)type; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserDataStore.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserDataStore.h deleted file mode 100644 index efcb281f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserDataStore.h +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_UserDataStore) -@interface FBSDKUserDataStore : NSObject - -/* - Sets custom user data to associate with all app events. All user data are hashed - and used to match Facebook user from this instance of an application. - - The user data will be persisted between application instances. - - @param email user's email - @param firstName user's first name - @param lastName user's last name - @param phone user's phone - @param dateOfBirth user's date of birth - @param gender user's gender - @param city user's city - @param state user's state - @param zip user's zip - @param country user's country - @param externalId user's external id - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)setUserEmail:(nullable NSString *)email - firstName:(nullable NSString *)firstName - lastName:(nullable NSString *)lastName - phone:(nullable NSString *)phone - dateOfBirth:(nullable NSString *)dateOfBirth - gender:(nullable NSString *)gender - city:(nullable NSString *)city - state:(nullable NSString *)state - zip:(nullable NSString *)zip - country:(nullable NSString *)country - externalId:(nullable NSString *)externalId -NS_SWIFT_NAME(setUser(email:firstName:lastName:phone:dateOfBirth:gender:city:state:zip:country:externalId:)); -// UNCRUSTIFY_FORMAT_ON - -/* - Returns the set user data else nil - */ -- (nullable NSString *)getUserData; - -/* - Clears the current user data - */ -- (void)clearUserData; - -/* - Sets custom user data to associate with all app events. All user data are hashed - and used to match Facebook user from this instance of an application. - - The user data will be persisted between application instances. - - @param data data - @param type data type, e.g. FBSDKAppEventEmail, FBSDKAppEventPhone - */ -- (void)setUserData:(nullable NSString *)data - forType:(FBSDKAppEventUserDataType)type; - -/* - Clears the current user data of certain type - */ -- (void)clearUserDataForType:(FBSDKAppEventUserDataType)type; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserIDProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserIDProviding.h deleted file mode 100644 index 50be52dd..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserIDProviding.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_UserIDProviding) -@protocol FBSDKUserIDProviding - -@property (nullable, nonatomic, copy) NSString *userID; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserIdentifier.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserIdentifier.h deleted file mode 100644 index cc1a8012..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUserIdentifier.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -NS_ASSUME_NONNULL_BEGIN - -/// A unique identifier for an end user. -typedef NSString *FBSDKUserIdentifier NS_SWIFT_NAME(UserIdentifier) NS_SWIFT_BRIDGED_TYPEDEF; - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUtility.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUtility.h deleted file mode 100644 index eb5ca0a4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKUtility.h +++ /dev/null @@ -1,108 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// Class to contain common utility methods. -NS_SWIFT_NAME(Utility) -@interface FBSDKUtility : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Parses a query string into a dictionary. - @param queryString The query string value. - @return A dictionary with the key/value pairs. - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (NSDictionary *)dictionaryWithQueryString:(NSString *)queryString -NS_SWIFT_NAME(dictionary(withQuery:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Constructs a query string from a dictionary. - @param dictionary The dictionary with key/value pairs for the query string. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return Query string representation of the parameters. - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (NSString *)queryStringWithDictionary:(NSDictionary *)dictionary - error:(NSError **)errorRef -NS_SWIFT_NAME(query(from:)) -__attribute__((swift_error(nonnull_error))); -// UNCRUSTIFY_FORMAT_ON - -/** - Decodes a value from an URL. - @param value The value to decode. - @return The decoded value. - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (NSString *)URLDecode:(NSString *)value -NS_SWIFT_NAME(decode(urlString:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Encodes a value for an URL. - @param value The value to encode. - @return The encoded value. - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (NSString *)URLEncode:(NSString *)value -NS_SWIFT_NAME(encode(urlString:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Creates a timer using Grand Central Dispatch. - @param interval The interval to fire the timer, in seconds. - @param block The code block to execute when timer is fired. - @return The dispatch handle. - */ -+ (dispatch_source_t)startGCDTimerWithInterval:(double)interval block:(dispatch_block_t)block; - -/** - Stop a timer that was started by startGCDTimerWithInterval. - @param timer The dispatch handle received from startGCDTimerWithInterval. - */ -+ (void)stopGCDTimer:(dispatch_source_t)timer; - -/** - Get SHA256 hased string of NSString/NSData - - @param input The data that needs to be hashed, it could be NSString or NSData. - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (nullable NSString *)SHA256Hash:(NSObject *)input -NS_SWIFT_NAME(sha256Hash(_:)); -// UNCRUSTIFY_FORMAT_ON - -/// Returns the graphdomain stored in FBSDKAuthenticationToken -+ (nullable NSString *)getGraphDomainFromToken; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -+ (NSURL *)unversionedFacebookURLWithHostPrefix:(NSString *)hostPrefix - path:(NSString *)path - queryParameters:(NSDictionary *)queryParameters - error:(NSError *__autoreleasing *)errorRef; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebDialogDelegate.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebDialogDelegate.h deleted file mode 100644 index f4f21ec5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebDialogDelegate.h +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@class FBSDKWebDialog; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(WebDialogDelegate) -@protocol FBSDKWebDialogDelegate - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)webDialog:(FBSDKWebDialog *)webDialog didCompleteWithResults:(NSDictionary *)results; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)webDialog:(FBSDKWebDialog *)webDialog didFailWithError:(NSError *)error; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)webDialogDidCancel:(FBSDKWebDialog *)webDialog; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebDialogView.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebDialogView.h deleted file mode 100644 index 824f39ff..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebDialogView.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@protocol FBSDKWebDialogViewDelegate; -@protocol FBSDKWebViewProviding; - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(FBWebDialogView) -@interface FBSDKWebDialogView : UIView - -@property (nonatomic, weak) id delegate; - -- (void)loadURL:(NSURL *)URL; -- (void)stopLoading; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// UNCRUSTIFY_FORMAT_OFF -+ (void)configureWithWebViewProvider:(id)webViewProvider - urlOpener:(id)urlOpener - errorFactory:(id)errorFactory -NS_SWIFT_NAME(configure(webViewProvider:urlOpener:errorFactory:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_SWIFT_NAME(WebDialogViewDelegate) -@protocol FBSDKWebDialogViewDelegate - -- (void)webDialogView:(FBSDKWebDialogView *)webDialogView didCompleteWithResults:(NSDictionary *)results; -- (void)webDialogView:(FBSDKWebDialogView *)webDialogView didFailWithError:(NSError *)error; -- (void)webDialogViewDidCancel:(FBSDKWebDialogView *)webDialogView; -- (void)webDialogViewDidFinishLoad:(FBSDKWebDialogView *)webDialogView; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebView.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebView.h deleted file mode 100644 index 8765cc48..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebView.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(WebView) -@protocol FBSDKWebView - -@property (nullable, nonatomic, weak) id navigationDelegate; -@property (nonatomic) CGRect frame; -@property (nonatomic) CGRect bounds; - -- (nullable WKNavigation *)loadRequest:(NSURLRequest *)request; -- (void)stopLoading; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebViewAppLinkResolver.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebViewAppLinkResolver.h deleted file mode 100644 index f1d7dbed..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebViewAppLinkResolver.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - A reference implementation for an App Link resolver that uses a hidden WKWebView - to parse the HTML containing App Link metadata. - */ -NS_SWIFT_NAME(WebViewAppLinkResolver) -@interface FBSDKWebViewAppLinkResolver : NSObject - -/// Gets the instance of a FBSDKWebViewAppLinkResolver. -@property (class, nonatomic, readonly, strong) FBSDKWebViewAppLinkResolver *sharedInstance -NS_SWIFT_NAME(shared); - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebViewProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebViewProviding.h deleted file mode 100644 index b2f4ae68..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/FBSDKWebViewProviding.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(_WebViewProviding) -@protocol FBSDKWebViewProviding - -- (id)createWebViewWithFrame:(CGRect)frame -NS_SWIFT_NAME(createWebView(frame:)); - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/NSNotificationCenter+NotificationPosting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/NSNotificationCenter+NotificationPosting.h deleted file mode 100644 index 86fc689c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/NSNotificationCenter+NotificationPosting.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal conformance exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FB_LINK_CATEGORY_INTERFACE(NSNotificationCenter, NotificationPosting) -@interface NSNotificationCenter (NotificationPosting) <_FBSDKNotificationPosting> - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/NSProcessInfo+MacCatalystDetermining.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/NSProcessInfo+MacCatalystDetermining.h deleted file mode 100644 index 04d01441..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/NSProcessInfo+MacCatalystDetermining.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal conformance exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FB_LINK_CATEGORY_INTERFACE(NSProcessInfo, MacCatalystDetermining) -@interface NSProcessInfo (MacCatalystDetermining) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/NSProcessInfo+OperatingSystemVersionComparing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/NSProcessInfo+OperatingSystemVersionComparing.h deleted file mode 100644 index 4f8f2e36..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/NSProcessInfo+OperatingSystemVersionComparing.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal conformance exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FB_LINK_CATEGORY_INTERFACE(NSProcessInfo, OperatingSystemVersionComparing) -@interface NSProcessInfo (OperatingSystemVersionComparing) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/UIApplication+URLOpener.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/UIApplication+URLOpener.h deleted file mode 100644 index 9eff5f71..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/UIApplication+URLOpener.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal conformance exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@interface UIApplication (URLOpener) - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/UIPasteboard+Pasteboard.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/UIPasteboard+Pasteboard.h deleted file mode 100644 index fd6f07a7..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/UIPasteboard+Pasteboard.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -#import - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FB_LINK_CATEGORY_INTERFACE(UIPasteboard, FBSDKPasteboard) -@interface UIPasteboard (FBSDKPasteboard) -@end - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/WKWebView+WebViewProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/WKWebView+WebViewProtocol.h deleted file mode 100644 index 3c18fe2b..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/WKWebView+WebViewProtocol.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(WebView) -@protocol FBSDKWebView; - -@interface WKWebView (FBSDKWebView) -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/_FBSDKNotificationPosting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/_FBSDKNotificationPosting.h deleted file mode 100644 index 1f022660..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/_FBSDKNotificationPosting.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -/// An internal protocol used to describe a type that can post a notification -NS_SWIFT_NAME(_NotificationPosting) -@protocol _FBSDKNotificationPosting - -// UNCRUSTIFY_FORMAT_OFF -- (void)fb_postNotificationName:(NSNotificationName)name - object:(nullable id)object - userInfo:(nullable NSDictionary *)userInfo -NS_SWIFT_NAME(fb_post(name:object:userInfo:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/_FBSDKWindowFinding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/_FBSDKWindowFinding.h deleted file mode 100644 index a9d946f3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/_FBSDKWindowFinding.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_WindowFinding) -@protocol _FBSDKWindowFinding - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (nullable UIWindow *)findWindow; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/__FBSDKLoggerCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/__FBSDKLoggerCreating.h deleted file mode 100644 index 6af2025a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Headers/__FBSDKLoggerCreating.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_LoggerCreating) -@protocol __FBSDKLoggerCreating - -- (id)createLoggerWithLoggingBehavior:(FBSDKLoggingBehavior)loggingBehavior; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Info.plist b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Info.plist deleted file mode 100644 index 7a6de978..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Info.plist and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos.swiftdoc b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos.swiftdoc deleted file mode 100644 index 88567c19..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos.swiftdoc and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Modules/module.modulemap b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Modules/module.modulemap deleted file mode 100644 index f951cee0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/FBSDKCoreKit.framework/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module FBSDKCoreKit { - umbrella header "FBSDKCoreKit.h" - - export * - module * { export * } -} - -module FBSDKCoreKit.Swift { - header "FBSDKCoreKit-Swift.h" - requires objc -} diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index e9fd3068..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKCoreKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit deleted file mode 100644 index 05fb18a8..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FBSDKCoreKit b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FBSDKCoreKit deleted file mode 100755 index 7e36c178..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FBSDKCoreKit and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings deleted file mode 100644 index 84881da5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besoek %@ en voer die kode in wat hierbo vertoon word."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Om jou rekening te verbind, maak die Facebook-toepassing op jou mobiele toestel oop en kontroleer vir kennisgewings."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OF -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Goed"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Kanselleer"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Meld asseblief weer by hierdie toepassing aan om jou Facebook-rekening te herkoppel. "; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Goed"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Die bediener is tydelik besig, probeer asseblief weer."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Kanselleer"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Meld af"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Met Facebook aangemeld"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "As %@ aangemeld"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Meld aan"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Gaan voort met Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Meld met Facebook aan"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Meld af"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Toegang is nie na die Facebook-rekening verleen nie. Verifieer toestelinstellings."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kan nie aan Facebook koppel nie. Gaan jou netwerkverbinding na en probeer weer."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Jou Facebook-wagwoord het verander. Om jou wagwoord te bevestig, maak Instellings > Facebook oop en tik jou naam."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Die Facebook-rekening is nie op die toestel opgestel nie."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Jou rekening is nie bevestig nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Jy kan nie op die oomblik by toepassings aanmeld nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Jy is in beheer – kies watter inligting jy met toepassings wil deel."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Meld aan"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Stuur"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Deel"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nie jy nie?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bevestig aantekening"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Gaan voort as %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings deleted file mode 100644 index f67e1352..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "تفضل بزيارة %@ وإدخال الرمز الموضح أدناه."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "لربط حسابك، افتح تطبيق فيسبوك على جهازك المحمول ثم تفقد الإشعارات."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- أو -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "موافق"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "إلغاء"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "يرجى تسجيل الدخول إلى هذا التطبيق مرة أخرى لإعادة الاتصال بحساب فيسبوك."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "موافق"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "الخادم مشغول مؤقتًا، يرجى إعادة المحاولة."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "إلغاء"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "تسجيل الخروج"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "تم تسجيل الدخول بحساب فيسبوك"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "تم تسجيل الدخول باسم %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "تسجيل الدخول"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "متابعة بحساب فيسبوك"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "تسجيل الدخول بحساب فيسبوك"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "تسجيل الخروج"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "لم يتم منح إذن الوصول لحساب فيسبوك. تحقق من إعدادات الجهاز."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "تعذر الاتصال بفيسبوك. يُرجى التحقق من الاتصال بالإنترنت وإعادة المحاولة."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "تم تغيير كلمة سر فيسبوك الخاصة بك. لتأكيد كلمة السر، افتح الإعدادات > فيسبوك ثم اضغط على اسمك."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "لم تتم تهيئة حساب فيسبوك على الجهاز."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "لم يتم تأكيد حسابك. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "لا يمكنك تسجيل الدخول إلى التطبيقات حاليًا. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "أنت المتحكم - اختر المعلومات التي تريد مشاركتها مع التطبيقات."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "تسجيل الدخول"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "إرسال"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "مشاركة"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "لست أنت؟"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "تأكيد تسجيل الدخول"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "متابعة باسم %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings deleted file mode 100644 index 768fcdbb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ -এ যান এবং উপরে যে কোডটি দেখানো হয়েছে সেটি লিখুন।"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "আপনার অ্যাকাউন্টে সংযোগ করতে, আপনার মোবাইল ডিভাইসে Facebook অ্যাপটি খুলুন এবং বিজ্ঞপ্তি চেক করুন।"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- অথবা -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ঠিক আছে"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "বাতিল করুন"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "আপনার Facebook অ্যাকাউন্টটিতে পুনরায় সংযোগ করার জন্য অনুগ্রহ করে এই অ্যাপটিতে লগ ইন করুন৷"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ঠিক আছে"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "এই সার্ভারটি সাময়িকভাবে ব্যস্ত আছে, অনুগ্রহ করে পুনরায় চেষ্টা করুন৷"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "বাতিল করুন"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "লগ আউট করুন"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ব্যবহার করে লগ ইন করা হয়েছে"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ হিসাবে লগ ইন করা হয়েছে"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "লগ ইন করুন"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook এর সাথে চালিয়ে যান"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook -এর সাথে লগ ইন করুন"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "লগ আউট করুন"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook অ্যাকাউন্টটিতে অ্যাক্সেস করার অনুমতি নেই৷ ডিভাইস সেটিংস যাচাই করুন৷"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook-এ সংযোগ করা যাচ্ছে না৷ আপনার নেটওয়ার্ক সংযোগটি পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন৷"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "আপনার Facebook পাসওয়ার্ডটি পরিবর্তিত হয়েছে৷ আপনার পাসওয়ার্ডটি নিশ্চিত করতে, সেটিংস > Facebook খুলুন এবং আপনার নামটি ট্যাপ করুন৷"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook অ্যাকাউন্টটি এই ডিভাইসে কনফিগার করা যাযনি৷"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "আপনার অ্যাকাউন্টটি নিশ্চিত করা যায়নি৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "এই সময়ে আপনি অ্যাপসে লগ ইন করতে পারবেন না৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "আপনি নিয়ন্ত্রণে আছেন - অ্যাপ্সের সাথে আপনি যে তথ্য শেয়ার করতে চান তা বাছুন৷"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "লগ ইন করুন"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "পাঠান"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ভাগ করুন"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "আপনি নন?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "লগ ইন নিশ্চিত করুন"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ হিসেবে চালিয়ে যান"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings deleted file mode 100644 index c15549c4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Navštivte %@ a zadejte nahoře uvedený kód."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Účet si můžete připojit tak, že si na mobilním zařízení spustíte aplikaci Facebook a podíváte se do upozornění."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- NEBO -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Zrušit"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Pokud se chcete ke svému Facebook účtu znovu připojit, přihlaste se k této aplikaci ještě jednou."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server je dočasně zaneprázdněný, zkuste to znovu."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Zrušit"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odhlásit"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Přihlášen(a) přes Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Přihlášen(a) jako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Přihlásit"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Pokračovat přes Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Přihlásit se přes Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odhlásit"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook účtu nebylo oprávnění uděleno. Ověřte nastavení zařízení."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "K Facebooku se nedá připojit. Zkontrolujte připojení k síti a zkuste to znovu."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Vaše heslo na Facebook je změněné. Pokud chcete heslo potvrdit, přejděte do Nastavení > Facebook a klepněte na své jméno."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "V tomto zařízení není Facebook účet konfigurovaný."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet není potvrzený. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Do aplikací se v této chvíli přihlásit nemůžete. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Je jen na vás, které informace chcete s aplikacemi sdílet."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Přihlásit"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Odeslat"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Sdílet"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nejste to vy?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrdit přihlášení"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Pokračovat jako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings deleted file mode 100644 index a6d9ed40..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Gå til %@, og indtast den kode, der er angivet ovenfor."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Du kan tilknytte din konto ved at åbne Facebook-appen på din mobilenhed og tjekke notifikationerne."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuller"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Log på denne app igen for at genoprette forbindelsen til din Facebook-konto."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serveren er optaget i øjeblikket. Prøv igen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuller"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log af"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logget på med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logget på som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log på"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsæt med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log på med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log af"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Der er ikke blevet givet adgang til Facebook-kontoen. Kontrollér enhedsindstillingerne."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kunne ikke oprette forbindelse til Facebook. Kontrollér din netværksforbindelse, og prøv igen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Din Facebook-adgangskode er ændret. For at bekræfte din adgangskode skal du åbne Indstillinger > Facebook og trykke på dit navn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke blevet konfigureret på enheden."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Din konto er ikke bekræftet. Log på www.facebook.com, og følg instruktionerne."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge på apps på nuværende tidspunkt. Log på www.facebook.com, og følg instruktionerne."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du har styringen – vælg de oplysninger, som du vil dele med apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log på"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Del"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ikke dig?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekræft login"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsæt som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings deleted file mode 100644 index 1e470805..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besuche %@ und gib den oben angezeigten Code ein."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Um dein Konto zu verbinden, öffne die Facebook-App auf deinem Mobilgerät und prüfe, ob du Benachrichtigungen erhalten hast."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– ODER –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Abbrechen"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Melde dich bitte erneut bei dieser App an, um die Verbindung mit deinem Facebook-Konto wiederherzustellen."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Der Server ist vorübergehend beschäftigt. Bitte versuche es erneut."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Abbrechen"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Abmelden"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Über Facebook angemeldet"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Als %@ angemeldet"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Anmelden"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Mit Facebook fortfahren"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Über Facebook anmelden"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Abmelden"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Auf das Facebook-Konto wurde kein Zugriff erteilt. Überprüfe bitte die Geräteeinstellungen."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Verbindung zu Facebook kann nicht hergestellt werden. Bitte überprüfe deine Netzwerkverbindung und versuche es erneut."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Dein Facebook-Passwort hat sich geändert. Öffne „Einstellungen“ > „Facebook“ und tippe auf deinen Namen, um dein Passwort zu bestätigen."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Das Facebook-Konto wurde für dieses Gerät nicht konfiguriert."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Dein Konto wurde nicht bestätigt. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kannst dich zurzeit nicht bei Apps anmelden. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Es liegt ganz an dir – du kannst dir aussuchen, was du mit Apps teilen möchtest."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Anmelden"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Senden"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Teilen"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nicht du?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Login bestätigen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortfahren als %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings deleted file mode 100644 index 09ca6484..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Επισκεφτείτε τη διεύθυνση %@ και συμπληρώστε τον παραπάνω κωδικό."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Για να συνδεθείτε στο λογαριασμό σας, ανοίξτε την εφαρμογή Facebook στη φορητή συσκευή σας και ελέγξτε τις ειδοποιήσεις."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- Ή -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Άκυρο"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Συνδεθείτε ξανά σε αυτή την εφαρμογή για να συνδέσετε και πάλι το λογαριασμό σας στο Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Ο διακομιστής είναι προσωρινά απασχολημένος, προσπαθήστε ξανά."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Άκυρο"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Αποσύνδεση"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Έχει γίνει σύνδεση μέσω Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Έχει γίνει σύνδεση ως %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Σύνδεση"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Συνεχίστε με το Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Σύνδεση μέσω Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Αποσύνδεση"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Δεν έχει παραχωρηθεί πρόσβαση στο λογαριασμό Facebook. Επαληθεύστε τις ρυθμίσεις της συσκευής σας."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Δεν είναι δυνατή η σύνδεση στο Facebook. Ελέγξτε τη σύνδεση στο δίκτυο και προσπαθήστε ξανά."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ο κωδικός πρόσβασής σας στο Facebook άλλαξε. Για να επιβεβαιώσετε τον κωδικό σας, πηγαίνετε στις Ρυθμίσεις > Facebook και πατήστε το όνομά σας."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Ο λογαριασμός Facebook δεν έχει διαμορφωθεί στη συσκευή."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ο λογαριασμός σας δεν επιβεβαιώθηκε. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Προς το παρόν δεν μπορείτε να συνδεθείτε σε εφαρμογές. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Έχετε τον έλεγχο - επιλέξτε ποιες πληροφορίες θέλετε να κοινοποιούνται στις εφαρμογές."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Σύνδεση"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Αποστολή"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Κοινοποίηση"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Δεν είστε εσείς;"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Επιβεβαίωση σύνδεσης"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Συνέχεια ως %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings deleted file mode 100644 index c88ac076..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings deleted file mode 100644 index e36f841c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Visit %@ and enter the code shown above."; - -/* The 'or' string for smart login instructions */ -"DeviceLogin.SmartLogInOrLabel" = "-- OR --"; - -/* The string for smart login instructions */ -"DeviceLogin.SmartLogInPrompt" = "To connect your account, open the Facebook app on your mobile device and check for notifications."; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancel"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Please log in to this app again to reconnect your Facebook account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "The server is temporarily busy, please try again."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancel"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log out"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logged in using Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logged in as %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continue with Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log in with Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log out"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Access has not been granted to the Facebook account. Verify device settings."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Unable to connect to Facebook. Please check your network connection and try again."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Your Facebook password has changed. To confirm your password, open Settings > Facebook and tap your name."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "The Facebook account has not been configured on the device."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Your account is not confirmed. Please log in to www.facebook.com and follow the instructions given."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "You cannot log in to apps at this time. Please log in to www.facebook.com and follow the instructions given."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "You're in control – choose what information you want to share with apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log In"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Share"; - -/* The title for the alert when smart login requires confirmation */ -"SmartLogin.ConfirmationTitle" = "Confirm Login"; - -/* The format string to continue as for the alert when smart login requires confirmation */ -"SmartLogin.Continue" = "Continue as %@"; - -/* The cancel label for the alert when smart login requires confirmation */ -"SmartLogin.NotYou" = "Not you?"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings deleted file mode 100644 index 0c5ce879..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e ingresa el código que se muestra arriba."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Aceptar"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Inicia sesión de nuevo en esta aplicación para volver a conectarte a tu cuenta de Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Aceptar"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "El servidor está temporalmente ocupado. Vuelve a intentarlo."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Cerrar sesión"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Inicio de sesión"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Salir"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "No se concedió acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión a internet y vuelve a intentarlo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Cambió tu contraseña de Facebook. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "No se configuró la cuenta de Facebook en el dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no está confirmada. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tú decides: elige qué información quieres compartir con las aplicaciones."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Inicio de sesión"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartir"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "¿No eres tú?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings deleted file mode 100644 index 4ecd5d68..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e introduce el código que se muestra arriba."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Aceptar"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Vuelve a iniciar sesión en esta aplicación para volver a conectar tu cuenta de Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Aceptar"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "El servidor está ocupado temporalmente. Vuelve a intentarlo más tarde."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Salir"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sesión iniciada con Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sesión iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Inicio de sesión"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sesión con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Salir"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "No se ha otorgado acceso a la cuenta de Facebook. Verifica la configuración del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "No es posible conectarse a Facebook. Comprueba tu conexión de red y vuelve a intentarlo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Tu contraseña de Facebook ha cambiado. Para confirmar tu contraseña, abre Configuración > Facebook y toca tu nombre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "La cuenta de Facebook no se ha configurado en el dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tu cuenta no se ha confirmado. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tú tienes el control: elige la información que quieres compartir con las aplicaciones."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Inicio de sesión"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartir"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "¿No eres tú?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings deleted file mode 100644 index f51fcaa6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Siirry osoitteeseen %@ ja kirjoita oheinen koodi sivulle."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Pääset liittämään käyttäjätilisi avaamalla Facebook-sovelluksen mobiililaitteellasi ja tarkistamalla ilmoitukset."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- TAI -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Peruuta"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Kirjaudu tähän sovellukseen uudelleen, jotta voit yhdistää Facebook-tilisi uudelleen."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Palvelin on tilapäisesti varattu, yritä uudelleen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Peruuta"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Kirjaudu ulos"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Sisäänkirjautunut Facebookin avulla"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Sisäänkirjautunut nimellä %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Kirjaudu sisään"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Jatka Facebook-tunnuksilla"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Kirjaudu sisään Facebookin avulla"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Kirjaudu ulos"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Pääsyä Facebook-tiliin ei ole myönnetty. Tarkista laiteasetukset."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Yhteyttä Facebookiin ei voi muodostaa. Tarkista verkkoyhteys ja yritä sitten uudelleen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-salasanasi on vaihdettu. Vahvista salasanasi avaamalla Asetukset > Facebook ja napauttamalla nimeäsi."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-tiliä ei ole määritetty laitteessa."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tiliäsi ei ole vahvistettu. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Et pysty kirjautumaan sovelluksiin tällä hetkellä. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Sinä voit valita, mitä tietoja jaat sovelluksille."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Kirjaudu sisään"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Lähetä"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Jaa"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Etkö tämä ole sinä?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Vahvista sisäänkirjautuminen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Jatka nimellä %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings deleted file mode 100644 index c72600b1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Pumunta sa %@ at ilagay ang code na ipinapakita sa itaas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para ikonekta ang iyong account, buksan ang Facebook app sa iyong cellphone at tumingin ng mga notification."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- O KAYA -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Kanselahin"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Mangyaring mag-log in muli sa app na ito para ikonekta muli ang iyong Facebook account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Pansamantalang abala ang server, pakisubukan muli."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Kanselahin"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Mag-log Out"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Naka-log in gamit ang Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Naka-log in bilang si %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Mag-log in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Magatuloy sa Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Mag-log in sa pamamagitan ng Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Mag-log out"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Hindi binigyan ng access ang Facebook account. Beripikahin ang mga setting ng device."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Hindi nakakonekta sa Facebook. Tingnan ang iyong koneksyon sa network at subukan muli."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Nagbago ang iyong password sa Facebook. Para makumpirma ang iyong password, buksan ang Mga Setting > Facebook at i-tap ang iyong pangalan."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Hindi na-configure sa device ang Facebook account."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Hindi nakumpirma ang iyong account. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Hindi ka makakapag-log in sa mga app sa oras na ito. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Ikaw ang may kontrol - piliin kung anong impormasyon ang gusto mong ibahagi sa mga app."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Mag-log In"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Ipadala"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Ibahagi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Hindi ikaw?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "I-confirm ang Pag-log in"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Magpatuloy bilang %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings deleted file mode 100644 index f0511b2e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Consultez la page %@ et saisissez le code indiqué ci-dessus."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Pour connecter votre compte, lancez l’application Facebook sur votre appareil mobile et consultez les notifications."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OU -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuler"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Veuillez vous connecter à nouveau à cette application pour reconnecter votre compte Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Le serveur est temporairement occupé. Veuillez réessayer plus tard."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuler"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Déconnexion"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Connecté(e) à l’aide de Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Connecté(e) en tant que %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Connexion"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuer avec Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Connexion avec Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Déconnexion"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "L’accès au compte Facebook n’a pas été autorisé. Vérifiez les paramètres de l’appareil."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Connexion à Facebook impossible. Vérifiez votre connexion avant de réessayer."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Votre mot de passe Facebook a changé. Pour confirmer votre mot de passe, ouvrez Paramètres > Facebook et saisissez votre nom."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Le compte Facebook n’a pas été configuré sur l’appareil."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Votre compte n’est pas confirmé. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Vous ne pouvez pas vous connecter à des applications pour le moment. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Vous gardez le contrôle. Choisissez les informations que vous souhaitez partager avec les applications."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Connexion"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Envoyer"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Partager"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ce n’est pas vous ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmer la connexion"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuer en tant que %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings deleted file mode 100644 index 95bec7fb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ ની મુલાકાત લો અને ઉપર બતાવ્યા પ્રમાણે કોડ દાખલ કરો."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "તમારા એકાઉન્ટ સાથે જોડાવા માટે, તમારા મોબાઇલ ઉપકરણ પર Facebook એપ્લિકેશન ખોલો અને સૂચનો માટે તપાસો."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- અથવા -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ઠીક"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "રદ કરો"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "તમારા ફેસબુક ખાતાને ફરીથી કનેક્ટ કરવા માટે કૃપા કરીને આ એપ્લિકેશનમાં ફરી લૉગ ઇન કરો."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ઠીક"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "સર્વર અસ્થાયીરૂપે વ્યસ્ત છે, કૃપા કરીને ફરી પ્રયાસ કરો."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "રદ કરો"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "લૉગ આઉટ કરો"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "ફેસબુકનો ઉપયોગ કરીને લૉગ ઇન કરો"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ તરીકે લૉગ ઇન થયાં"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "લૉગ ઇન કરો"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook સાથે ચાલુ રાખો"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "ફેસબુક સાથે લૉગ ઇન કરો"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "લૉગ આઉટ કરો"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "ફેસબુક ખાતા પર ઍક્સેસ આપવામાં આવી નથી. ઉપકરણ સેટિંગ્સ ચકાસો"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "ફેસબુકથી કનેક્ટ કરવામાં અસમર્થ. તમારું નેટવર્ક કનેક્શન તપાસો અને ફરી પ્રયાસ કરો."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "તમારો ફેસબુક પાસવર્ડ બદલાઈ ગયો છે. તમારા પાસવર્ડની પુષ્ટિ કરવા માટે, સેટિંગ્સ > ફેસબુક ખોલો અને તમારા નામ પર ટૅપ કરો."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "ઉપકરણ પર ફેસબુક ખાતું કન્ફિગર કરવામાં આવ્યું નથી."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "તમારા ખાતાની પુષ્ટિ કરવામાં આવી નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "તમે આ સમયે એપ્લિકેશન્સમાં લૉગ ઇન કરી શકતાં નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "તમે નિયંત્રણ કરો છો - તમે એપ્લિકેશન્સ સાથે કઈ માહિતી શેર કરવા માંગો છો તે પસંદ કરો."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "લૉગ ઇન કરો"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "મોકલો"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "શેર કરો"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "તમે નહિ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "લૉગિનની પુષ્ટિ કરો"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ તરીકે ચાલુ રાખો"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings deleted file mode 100644 index be0f033b..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "בקר ב-%@ והזן את הקוד המופיע למעלה."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "כדי לחבר את החשבון שלך, פתח את אפליקציית פייסבוק במכשיר הנייד שלך ובדוק אם יש התראות."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- או -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "אישור"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ביטול"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "התחבר לאפליקציה זו שוב כדי לחבר מחדש את חשבון הפייסבוק שלך."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "אישור"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "השרת עמוס באופן זמני, נסה שוב."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ביטול"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "התנתק"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "מחובר באמצעות פייסבוק"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "מחובר בתור %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "התחבר"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "המשך עם פייסבוק"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "התחבר באמצעות פייסבוק"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "התנתק"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "לא הוענקה גישה לחשבון הפייסבוק. אמת את הגדרות המכשיר."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "לא ניתן להתחבר לפייסבוק. בדוק את החיבור שלך לרשת ונסה שוב."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "סיסמת הפייסבוק שלך השתנתה. כדי לאשר את הסיסמה, פתח את 'הגדרות' > 'פייסבוק' והקש על שמך."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "חשבון הפייסבוק לא הוגדר במכשיר."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "החשבון שלך לא אושר. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "לא ניתן להתחבר לאפליקציות כעת. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "אתה מחליט - בחר איזה מידע אתה רוצה לשתף עם אפליקציות."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "התחבר"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "שלח"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "שתף"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "לא אתה?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "אשר התחברות"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "המשך כ-%@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings deleted file mode 100644 index 16d49ea6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ पर जाएँ और ऊपर दिया गया कोड दर्ज करें."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "अपने खाते को कनेक्ट करने के लिए, अपने मोबाइल एप्लिकेशन में Facebook एप्लिकेशन खोलें और सूचनाओं के लिए जाँच करें."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- या -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ठीक"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "रद्द करें"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "अपने Facebook खाते से फिर से कनेक्ट होने के लिए कृपया इस एप्लिकेशन में फिर से लॉग इन करें."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ठीक"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "सर्वर अस्थायी रूप से व्यस्त है, कृपया फिर से कोशिश करें."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "रद्द करें"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "लॉग आउट करें"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook का उपयोग करके लॉग इन किया हुआ है"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ के रूप में लॉग इन किया हुआ है"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "लॉग इन करें"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook के साथ जारी रखें"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook से लॉग इन करें"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "लॉग आउट"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook खाते को एक्सेस नहीं दी गई है. डिवाइस सेटिंग सत्यापित करें."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook से कनेक्ट होने में असमर्थ. कृपया अपने नेटवर्क कनेक्शन की जाँच करें फिर से प्रयास करें."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "आपका Facebook पासवर्ड बदल गया है. अपना पासवर्ड कन्फ़र्म करने के लिए, सेटिंग > Facebook खोलें और अपना नाम टैप करें."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "डिवाइस पर Facebook खाता कॉन्फ़िगर नहीं किया गया है."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "आपका खाता कन्फ़र्म नहीं किया गया है. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "आप इस समय एप्लिकेशन में लॉग इन नहीं कर सकते. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "आप नियंत्रण में हैं - चुनें कि आप एप्लिकेशन से कौन-सी जानकारी साझा करना चाहते हैं."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "लॉग इन करें"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "भेजें"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "साझा करें"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "आप नहीं हैं?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "लॉग इन कन्फ़र्म करें"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ के रूप में जारी रखें"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings deleted file mode 100644 index 1a30854a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Posjetite adresu %@ i unesite gore prikazan kod."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Da biste povezali račun, otvorite aplikaciju Facebook na mobilnom uređaju i potražite obavijesti."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ILI -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "U redu"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Odustani"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Ponovo se prijavite u ovu aplikaciju kako biste se ponovo povezali s Facebook računom."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "U redu"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Poslužitelj je privremeno zauzet, pokušajte ponovo."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Odustani"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odjavi se"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Prijavljen putem Facebooka"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Prijavljen kao %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Prijavi se"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Nastavite s korištenjem Facebooka"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Prijava putem Facebooka"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odjavi se"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Pristup Facebook računu nije odobren. Provjerite postavke uređaja."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Povezivanje s Facebookom nije uspjelo. Provjerite mrežnu vezu i pokušajte ponovo."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Promijenili ste lozinku za Facebook. Za potvrdu lozinke otvorite Postavke > Facebook i dodirnite svoje ime."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Na uređaju nije konfiguriran račun za Facebook."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Vaš račun nije potvrđen. Prijavite se na www.facebook.com i slijedite upute."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "U ovome trenutku prijava u aplikacije nije moguća. Prijavite se na www.facebook.com i slijedite upute."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Vi odlučujete – odaberite koje podatke želite dijeliti u aplikacijama."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Prijava"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Pošalji"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Dijeli"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "To niste vi?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrda prijave"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Nastavi kao %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings deleted file mode 100644 index 81a206e1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Keresd fel a %@ címet, és írd be a fent megjelenített kódot."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "A fiók hozzákapcsolásához nyisd meg a Facebook alkalmazást a mobilkészülékeden, és nézd meg az értesítéseket."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- VAGY -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Mégsem"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Kérjük, jelentkezz be újra ebbe az alkalmazásba, ha szeretnéd ismét összekapcsolni a Facebook-fiókoddal."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "A kiszolgáló átmenetileg foglalt, próbáld meg újra."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Mégsem"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Kijelentkezés"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Bejelentkezve a Facebook használatával"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Bejelentkezve %@ néven"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Bejelentkezés"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Folytatás a Facebookkal"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Bejelentkezés a Facebook használatával"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Kijelentkezés"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "A Facebook-fiókhoz nincs megadva a hozzáférés. Ellenőrizd az eszköz beállításait."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nem sikerült kapcsolódni a Facebookhoz. Ellenőrizd a hálózati kapcsolatot, majd próbáld meg újra."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-jelszavad megváltozott. A jelszó megerősítéséhez nyisd meg a Settings (Beállítások) > Facebook pontot, és koppints a nevedre."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A készüléken nincs beállítva a Facebook-fiók."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A fiókod nincs megerősítve. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Jelenleg nem tudsz alkalmazásokba bejelentkezni. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "A döntés a kezedben van: kiválaszthatod, hogy milyen adatokat osztasz meg az alkalmazásokkal."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Bejelentkezés"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Küldés"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Megosztás"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nem te vagy az?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bejelentkezés megerősítése"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Folytatás mint %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings deleted file mode 100644 index da53d0d0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Kunjungi %@ dan masukkan kode yang ditampilkan di atas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akun Anda, buka aplikasi Facebook di perangkat seluler Anda dan periksa pemberitahuan."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Batal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Harap masuk ke aplikasi ini lagi untuk menghubungkan kembali akun Facebook Anda."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server untuk sementara sedang sibuk, harap coba lagi."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Batal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Keluar"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Masuk menggunakan Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Masuk sebagai %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Masuk"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Lanjutkan dengan Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Masuk menggunakan Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Keluar"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Akses belum diberikan ke akun Facebook. Verifikasi pengaturan perangkat."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Tidak dapat terhubung ke Facebook. Periksa koneksi jaringan dan coba lagi."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Kata sandi Facebook Anda telah diubah. Untuk mengonfirmasi kata sandi Anda, buka Pengaturan > Facebook, lalu ketuk nama Anda."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Akun Facebook belum dikonfigurasikan di perangkat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Akun Anda tidak dikonfirmasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Saat ini Anda tidak dapat masuk ke aplikasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Anda memegang kendali - pilih info yang ingin Anda bagikan dengan aplikasi."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Masuk"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Kirim"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Berbagi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Bukan Anda?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Konfirmasikan Masuk"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Lanjutkan sebagai %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings deleted file mode 100644 index 38915663..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e inserisci il codice mostrato sopra."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Per collegare il tuo account, apri l'app Facebook sul tuo dispositivo mobile e controlla se hai notifiche."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OPPURE -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annulla"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Effettua di nuovo l'accesso a questa applicazione per riconnettere il tuo account Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Il server è temporaneamente occupato, riprova."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annulla"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Esci"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Accesso effettuato tramite Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Accesso effettuato come %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Accedi"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continua con Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Accedi con Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Esci"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "All'account Facebook non è stato concesso l'accesso. Verifica le impostazioni del dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Impossibile connettersi a Facebook. Controlla la tua connessione e riprova."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "La tua password di Facebook è stata modificata. Per confermare la password, apri Impostazioni > Facebook e tocca il tuo nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "L'account Facebook non è stato configurato nel dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Il tuo account non è stato verificato. Accedi a www.facebook.com e segui le istruzioni fornite."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Impossibile accedere alle applicazioni al momento. Accedi a www.facebook.com e segui le istruzioni fornite."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Il controllo è nelle tue mani: scegli quali informazioni condividere con le app."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Accedi"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Invia"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Condividi"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Non sei tu?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Conferma l'accesso"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continua come %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings deleted file mode 100644 index c4922b5e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@にアクセスし、上に表示されているコードを入力してください。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "アカウントをリンクするには、お使いのモバイル機器でFacebookアプリを開き、お知らせをご確認ください。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- または -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "キャンセル"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "このアプリにもう一度ログインして、Facebookアカウントを再接続してください。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "サーバーが一時的にビジーです。もう一度お試しください。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "キャンセル"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ログアウト"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebookを使用してログイン中"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@としてログイン中"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ログイン"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebookで続ける"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebookでログイン"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ログアウト"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebookアカウントにアクセス権が与えられていません。デバイス設定を確認してください。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebookに接続できませんでした。ネットワーク接続を確認してもう一度お試しください。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebookパスワードが変更されています。パスワードを確認するには、[設定] > [Facebook]の順に開き、名前をタップしてください。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "デバイスにFacebookアカウントが構成されていません。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "アカウントが確認されません。www.facebook.comにログインし、表示される説明に従ってください。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "今はアプリにログインできません。www.facebook.comにログインし、表示される説明に従ってください。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "アプリと共有する情報をコントロールできます。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ログイン"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "送信"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "シェア"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "別のユーザーとしてログイン"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ログインの確認"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@として続行"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings deleted file mode 100644 index 9ecdac9d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings +++ /dev/null @@ -1,71 +0,0 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "ನಿಮ್ಮ ಸ್ಮಾರ್ಟ್‌ ಫೋನ್‌ ಅಥವಾ ಕಂಪ್ಯೂಟರ್‌ನಲ್ಲಿ %@ ಗೆ ಭೇಟಿ ನೀಡಿ ಮತ್ತು ಈ ಕೋಡ್‌ ಅನ್ನು ನಮೂದಿಸಿ:"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ಸರಿ"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ರದ್ದುಮಾಡು"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "ನಿಮ್ಮ Facebook ಖಾತೆಯನ್ನು ಮರುಸಂಪರ್ಕಗೊಳಿಸಲು ಈ ಅಪ್ಲಿಕೇಶನ್‌ನಲ್ಲಿ ಮತ್ತೊಮ್ಮೆ ಲಾಗಿನ್‌ ಮಾಡಿ."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ಸರಿ"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "ಸರ್ವರ್ ತಾತ್ಕಾಲಿಕವಾಗಿ ಕಾರ್ಯನಿರತವಾಗಿದೆ, ದಯವಿಟ್ಟು ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ರದ್ದುಮಾಡು"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ಲಾಗ್‌ ಔಟ್‌"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ಬಳಸಿಕೊಂಡು ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ ರಂತೆ ಲಾಗಿನ್‌ ಮಾಡಲಾಗಿದೆ"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ಲಾಗ್‌ ಇನ್‌"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ಅನ್ನು ಮುಂದುವರಿಸಿ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ಮೂಲಕ ಲಾಗ್‌ ಇನ್‌ ಮಾಡಿ"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ಲಾಗ್‌ ಔಟ್‌"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ಖಾತೆಗೆ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಲಾಗಿಲ್ಲ. ಸಾಧನದ ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ಪರಿಶೀಲಿಸಿ."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook ಗೆ ಸಂಪರ್ಕಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನಿಮ್ಮ ನೆಟ್‌ವರ್ಕ್‌ ಸಂಪರ್ಕವನ್ನು ಪರಿಶೀಲಿಸಿ ಹಾಗೂ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "ನಿಮ್ಮ Facebook ಪಾಸ್‌ವರ್ಡ್‌ ಬದಲಿಸಲಾಗಿದೆ. ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್‌ ಖಚಿತಪಡಿಸಲು, ಸೆಟ್ಟಿಂಗ್‌ಗಳು > Facebook ತೆರೆಯಿರಿ ಮತ್ತು ನಿಮ್ಮ ಹೆಸರನ್ನು ಟ್ಯಾಪ್‌ ಮಾಡಿ."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook ಖಾತೆಯನ್ನು ಸಾಧನದಲ್ಲಿ ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿಲ್ಲ."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ದೃಢೀಕರಿಸಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ನೀವು ಈ ಸಮಯದಲ್ಲಿ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗೆ ಲಾಗಿನ್‌ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ನೀವು ನಿಯಂತ್ರಣದಲ್ಲಿರುವಿರಿ - ನೀವು ಅಪ್ಲಿಕೇಶನ್‌ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಹಂಚಿಕೊಳ್ಳಲು ಬಯಸುವ ವಿಷಯವನ್ನು ಆರಿಸಿ."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ಲಾಗ್‌ ಇನ್‌"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ಕಳುಹಿಸಿ"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ಹಂಚಿಕೊಳ್ಳಿ"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings deleted file mode 100644 index f7692eff..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@를 방문하여 위에 표시된 코드를 입력하세요."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "계정을 연결하려면 모바일 기기에서 Facebook 앱을 열고 알림을 확인하세요."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 또는 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "확인"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "취소"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Facebook 계정을 다시 연결하려면 이 앱에 다시 로그인하세요."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "확인"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "일시적으로 서버 사용량이 많아졌습니다. 다시 시도하세요."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "취소"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "로그아웃"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook 계정으로 로그인함"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@(으)로 로그인함"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "로그인"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook으로 계속"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook으로 로그인"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "로그아웃"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook 계정에 대한 액세스가 승인되지 않았습니다. 기기 설정을 확인하세요."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook에 연결할 수 없습니다. 네트워크 연결을 확인하고 다시 시도하세요."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook 비밀번호가 변경되었습니다. 비밀번호를 확인하려면 설정 > Facebook으로 이동하여 이름을 누르세요."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook 계정이 기기에 구성되어 있지 않습니다."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "계정이 확인되지 않았습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "현재 앱에 로그인할 수 없습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "원하는 정보를 선택하여 앱에 공유할 수 있습니다."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "로그인"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "보내기"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "공유하기"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "회원님이 아닌가요?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "로그인 확인"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@님으로 계속"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings deleted file mode 100644 index 8b9ead15..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ സന്ദർശിച്ച്‌ മുകളിൽ കാണിച്ച‌ കോഡ്‌ നൽകുക."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "നിങ്ങളുടെ അക്കൗണ്ട്‌ കണക്‌റ്റുചെയ്യാൻ, നിങ്ങളുടെ മൊബൈൽ ഉപകരണത്തിലെ Facebook ആപ്പ്‌ തുറന്ന്‌ അറിയിപ്പുകൾ പരിശോധിക്കുക."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- അല്ലെങ്കിൽ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ശരി"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "റദ്ദാക്കുക"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "നിങ്ങളുടെ Facebook അക്കൗണ്ടുമായി വീണ്ടും കണക്‌റ്റുചെയ്യുന്നതിന് ഈ ആപ്ലിക്കേഷനിൽ വീണ്ടും ലോഗിൻ ചെയ്യുക."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ശരി"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "സെർവർ താൽക്കാലികമായി തിരക്കിലാണ്, വീണ്ടും ശ്രമിക്കുക."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "റദ്ദാക്കുക"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്‌തു"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ എന്നതായി ലോഗിൻ ചെയ്‌തു"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ലോഗിൻ ചെയ്യുക"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ഉപയോഗിച്ച് തുടരുക"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ലോഗ്ഔട്ട് ചെയ്യുക"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook അക്കൗണ്ടിലേക്ക് ആക്‌സസ് നൽകിയിട്ടില്ല. ഉപകരണ ക്രമീകരണങ്ങൾ പരിശോധിച്ചുറപ്പിക്കുക."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook-ലേക്ക് കണക്‌റ്റുചെയ്യാനായില്ല. നിങ്ങളുടെ നെറ്റ്‌വർക്ക് കണക്ഷൻ പരിശോധിച്ച് വീണ്ടും ശ്രമിക്കുക."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "നിങ്ങളുടെ Facebook പാസ്‌വേഡ് മാറി. പാ‌സ്‌വേഡ് സ്ഥിരീകരിക്കുന്നതിന് ക്രമീകരണങ്ങൾ > Facebook എന്നത് തുറന്ന് പേര് ടാപ്പുചെയ്യുക."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "ഉപകരണത്തിൽ Facebook അക്കൗണ്ട് കോൺഫിഗർ ചെയ്‌തിട്ടില്ല."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "അക്കൗണ്ട് സ്ഥിരീകരിച്ചു. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "നിങ്ങൾക്ക് ഈ സമയം ആപ്ലിക്കേഷനുകളിലേക്ക് ലോഗിൻ ചെയ്യാനാവില്ല. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "നിങ്ങളുടെ നിയന്ത്രണത്തിലാണ് - നിങ്ങൾക്ക് ആപ്‌സുമായി ഏതെല്ലാം വിവരങ്ങൾ പങ്കിടണമെന്ന് തിരഞ്ഞെടുക്കുക."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ലോഗിൻ ചെയ്യുക"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "അയയ്‌ക്കുക"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "പങ്കിടൂ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "നിങ്ങൾ അല്ലേ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ലോഗിൻ സ്ഥിരീകരിക്കുക"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ആയി തുടരുക"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings deleted file mode 100644 index e857096c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ वर भेट द्या आणि वर दर्शवलेला कोड प्रविष्ट करा."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "तुमचे खाते कनेक्ट करण्यासाठी, तुमच्या मोबाईल उपकरणावर Facebook अॅप उघडा आणि सूचना तपासा."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- किंवा -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ठीक"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "रद्द करा"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "कृपया आपले फेसबुक खाते रीकनेक्ट करण्यासाठी या अनुप्रयोगावर पुन्हा लॉग इन करा."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ठीक"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "सर्व्हर तात्पुरता व्यस्त आहे, कृपया पुन्हा प्रयत्न करा."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "रद्द करा"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "लॉग आउट करा"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "फेसबुक वापरून लॉग इन केले"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ म्हणून लॉग इन केले"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "लॉग इन करा"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook सह चालू ठेवा"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "फेसबुकसह लॉग इन करा"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "लॉग आउट करा"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "फेसबुक खात्यावर प्रवेशास मंजूरी दिली गेली नाही. डिव्हाइस सेटिंग्ज सत्यापित करा."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "फेसबुकशी कनेक्ट करण्यात अक्षम. आपले नेटवर्क कनेक्शन तपासा आणि पुन्हा प्रयत्न करा."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "आपला फेसबुक पासवर्ड बदलला आहे. आपल्या पासवर्डची पुष्टी करण्यासाठी, सेटिंग्ज > फेसबुक उघडा आणि आपले नाव टॅप करा."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "डिव्हाइसवर फेसबुक खाते कॉन्फिगर केले गेले नाही."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "आपल्या खात्याची पुष्टी झाली नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "आपण यावेळी अनुप्रयोगांवर लॉग इन करू शकत नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "तुम्ही नियंत्रणात आहात - तुम्ही कोणती माहिती अॅपसह सामायिक करू इच्छिता ते निवडा."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "लॉग इन करा"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "पाठवा"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "सामायिक करा"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "तुम्ही नाही?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "लॉग इन पुष्टी करा"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ म्हणून चालू ठेवा"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings deleted file mode 100644 index 60b4cdb9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Lawati %@ dan masukkan kod yang ditunjukkan di atas."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akaun anda, buka apl Facebook di peranti mudah alih anda dan semak pemberitahuan."; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Bukan anda?"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Batal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Sila log masuk ke aplikasi ini sekali lagi untuk menyambung semula akaun Facebook anda."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Pelayan ini sibuk buat sementara waktu, sila cuba lagi."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Batal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Log Keluar"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Dilog masuk menggunakan Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Dilog masuk sebagai %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Log masuk"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Teruskan dengan Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Log masuk dengan Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Log keluar"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Akses ke akaun Facebook tidak diberikan. Sahkan tetapan peranti."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Tidak dapat menyambung ke Facebook. Semak sambungan rangkaian anda dan cuba lagi."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Kata laluan Facebook anda telah ditukar. Untuk mengesahkan kata laluan anda, buka Tetapan > Facebook dan ketik nama anda."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Akaun Facebook masih belum dikonfigurasikan pada peranti."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Akaun anda tidak disahkan. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Anda tidak boleh log masuk ke aplikasi pada masa ini. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Anda yang mengawal - pilih maklumat yang anda ingin kongsi dengan apl."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Log Masuk"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Hantar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Kongsi"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Sahkan Log Masuk"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Teruskan sebagai %@"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings deleted file mode 100644 index 3ebb66c3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Gå til %@, og oppgi koden som vises ovenfor."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Koble til kontoen din ved å åpne Facebook-appen på mobilenheten din og se etter varsler."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Avbryt"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Logg deg inn igjen på denne appen for å koble til Facebook-kontoen på nytt."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serveren er midlertidig opptatt. Prøv på nytt."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Avbryt"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Logg ut"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Logget inn med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Logget inn som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Logg inn"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsett med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Logg inn med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Logg ut"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Det er ikke gitt tilgang til Facebook-kontoen. Bekreft enhetsinnstillinger."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Kunne ikke koble til Facebook. Kontroller nettverkstilkoblingen, og prøv på nytt."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook-passordet ditt er endret. Bekreft passordet ditt ved å gå til Innstillinger > Facebook og trykke på navnet ditt."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-kontoen er ikke konfigurert på enheten."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Kontoen din er bekreftet. Logg deg inn på www.facebook.com, og følg instruksjonene."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge deg inn på apper for øyeblikket. Logg deg inn på www.facebook.com, og følg instruksjonene."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du bestemmer – velg hvilke opplysninger du vil dele med appene."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Logg inn"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Send"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Del"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ikke deg?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekreft innlogging"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsett som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings deleted file mode 100644 index 160654a4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Ga naar %@ en voer de bovenstaande code in."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Om je account te verbinden, open je de Facebook-app op je mobiele apparaat en controleer of je meldingen ziet."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- OF -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Annuleren"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Meld je nogmaals aan bij deze app om verbinding te maken met je Facebook-account."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "De server is tijdelijk niet beschikbaar. Probeer het opnieuw."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Annuleren"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Afmelden"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Aangemeld via Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Aangemeld als %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Aanmelden"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Doorgaan met Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Aanmelden met Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Afmelden"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Er is geen toegang verleend aan het Facebook-account. Verifieer de apparaatinstellingen."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Er kan geen verbinding worden gemaakt met Facebook. Controleer je netwerkverbinding en probeer het opnieuw."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Je Facebook-wachtwoord is gewijzigd. Open Instellingen > Facebook en tik op je naam om je wachtwoord te bevestigen."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Het Facebook-account is niet geconfigureerd op het apparaat."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Je account is niet bevestigd. Meld je aan bij www.facebook.com en volg de instructies."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Je kunt je momenteel niet aanmelden bij apps. Meld je aan bij www.facebook.com en volg de instructies."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Jij hebt de controle. Kies welke informatie je met apps wilt delen."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Aanmelden"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Verzenden"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Delen"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Ben jij dit niet?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Aanmelden bevestigen"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Doorgaan als %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings deleted file mode 100644 index 07027466..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ ਵਿੱਚ ਜਾਓ ਅਤੇ ਉੱਤੇ ਦਿਖਾਏ ਗਏ ਕੋਡ ਨੂੰ ਦਾਖ਼ਲ ਕਰੋ।"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "ਆਪਣੇ ਖਾਤੇ ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਲਈ, ਆਪਣੀ ਮੋਬਾਈਲ ਡਿਵਾਈਸ 'ਤੇ Facebook ਐਪ ਨੂੰ ਖੋਲ੍ਹੋ ਅਤੇ ਸੂਚਨਾਵਾਂ ਨੂੰ ਦੇਖੋ।"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ਜਾਂ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ਠੀਕ"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ਰੱਦ ਕਰੋ"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੇ Facebook ਖਾਤੇ ਨਾਲ ਮੁੜ ਕਨੈਕਟ ਕਰਨ ਲਈ ਇਸ ਐਪ ਵਿੱਚ ਦੁਬਾਰਾ ਲੌਗ ਇਨ ਕਰੋ।"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ਠੀਕ"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "ਇਹ ਸਰਵਰ ਅਸਥਾਈ ਰੂਪ ਵਿੱਚ ਵਿਅਸਤ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ਰੱਦ ਕਰੋ"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ਦਾ ਉਪਯੋਗ ਕਰਕੇ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ ਵੱਜੋਂ ਲੌਗ ਇਨ ਕੀਤਾ ਗਿਆ"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "ਲੌਗ ਇਨ ਕਰੋ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ਦੇ ਨਾਲ ਜਾਰੀ ਰੱਖੋ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ਦੇ ਨਾਲ ਲੌਗ ਇਨ ਕਰੋ"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ਲੌਗ ਆਉਟ ਕਰੋ"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ਖਾਤੇ ਨੂੰ ਐਕਸੈਸ ਪ੍ਰਦਾਨ ਨਹੀਂ ਕੀਤੀ ਗਈ। ਡਿਵਾਈਸ ਸੈੱਟਿੰਗਜ਼ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਵਿੱਚ ਅਸਮਰਥਿਤ ਆਪਣੇ ਨੈੱਟਵਰਕ ਕਨੈਕਸ਼ਨ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "ਤੁਹਾਡੇ Facebook ਪਾਸਵਰਡ ਨੂੰ ਬਦਲ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਆਪਣੇ ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰਨ ਲਈ, ਸੈੱਟਿੰਗਜ਼ > Facebook ਖੋਲ੍ਹੋ ਅਤੇ ਆਪਣੇ ਨਾਂ ਨੂੰ ਟੈਪ ਕਰੋ।"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook ਖਾਤੇ ਨੂੰ ਡਿਵਾਈਸ 'ਤੇ ਕਨਫ਼ੀਗਰ ਨਹੀਂ ਕੀਤਾ ਗਿਆ ਹੈ।"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "ਤੁਹਾਡੇ ਖਾਤੇ ਦੀ ਪੁਸ਼ਟੀ ਨਹੀਂ ਕੀਤੀ ਗਈ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ਤੁਸੀਂ ਇਸ ਸਮੇਂ ਐਪ ਵਿੱਚ ਲੌਗ ਇਨ ਨਹੀਂ ਕਰ ਸਕਦੇ ਹੋ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ਤੁ\ਸੀਂ ਨਿਯੰਤਰਣ ਵਿੱਚ ਹੋ - ਉਹ ਜਾਣਕਾਰੀ ਚੁਣੋ ਜੋ ਤੁਸੀਂ ਐਪਸ ਦੇ ਨਾਲ ਸਾਂਝੀ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ।"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "ਲੌਗ ਇਨ ਕਰੋ"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ਸਾਂਝਾ ਕਰੋ"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "ਭੇਜੋ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "ਕੀ ਤੁਸੀਂ ਨਹੀਂ ਹੋ?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ਲੌਗਇਨ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ਵੱਜੋਂ ਜਾਰੀ ਰੱਖੋ"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings deleted file mode 100644 index 5b0954f5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Wejdź na stronę %@ i wprowadź podany powyżej kod."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Aby połączyć konto, otwórz aplikację Facebook na urządzeniu mobilnym i sprawdź powiadomienia."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- LUB -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Anuluj"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Zaloguj się jeszcze raz do aplikacji, aby ponownie przyłączyć swoje konto na Facebooku."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Serwer jest zajęty, spróbuj później."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Anuluj"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Wyloguj się"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Zalogowano przez Facebooka"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Zalogowano jako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Zaloguj się"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Kontynuuj za pośrednictwem Facebooka"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Zaloguj się przez Facebooka"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Wyloguj się"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Brak dostępu z tego konta na Facebooku. Sprawdź ustawienia urządzenia."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nie można połączyć się z Facebookiem. Sprawdź połączenie sieciowe i spróbuj ponownie."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Twoje hasło do Facebooka zostało zmienione. Aby potwierdzić hasło, otwórz Ustawienia > Facebook i dotknij swojego imienia i nazwiska."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Na tym urządzeniu nie skonfigurowano konta na Facebooku."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Konto niepotwierdzone. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Brak możliwości logowania się do aplikacji. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Masz pełną kontrolę – określ, jakie informacje chcesz udostępniać aplikacjom."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Zaloguj się"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Wyślij"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Udostępnij"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "To nie Ty?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potwierdź logowanie"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Kontynuuj jako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings deleted file mode 100644 index 6ff2c772..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Acesse %@ e introduza o código mostrado acima."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para conectar sua conta, abra o aplicativo Facebook em seu dispositivo móvel e verifique se tem notificações."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– OU –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Entre nesse aplicativo novamente para reconectar sua conta do Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tente novamente."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Sair"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Você entrou usando o Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Conectado como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Entrar"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar com o Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Entrar com o Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Sair"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "O acesso à conta do Facebook não foi permitido. Verifique as configurações do dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Não foi possível se conectar ao Facebook. Verifique sua conexão de rede e tente novamente."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "A sua senha do Facebook foi alterada. Para confirmar a sua senha, abra Configurações > Facebook e toque no seu nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A sua conta não foi confirmada. Entre no site www.facebook.com e siga as instruções fornecidas."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Não é possível entrar em aplicativos neste momento. Entre no site www.facebook.com e siga as instruções fornecidas."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Você é quem controla — escolha quais informações você quer compartilhar com os aplicativos."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Entrar"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Envio"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Compartilhar"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Não é você?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirme o login"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continue como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings deleted file mode 100644 index 6648e115..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Visita %@ e introduz o código mostrado acima."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Para ligares a tua conta, abre a app Facebook no teu dispositivo móvel e verifica se tens notificações."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "– OU –"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Cancelar"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Volta a iniciar sessão nesta aplicação para te ligares novamente à tua conta do Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "O servidor está temporariamente ocupado. Tenta novamente."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Cancelar"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Terminar sessão"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Com sessão iniciada através do Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Com sessão iniciada como %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Iniciar sessão"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Continuar com o Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Iniciar sessão com o Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Terminar a sessão"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "O acesso não foi concedido à conta do Facebook. Verificar as definições do dispositivo."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Não é possível ligar ao Facebook. Verifica a tua ligação à rede e tenta novamente."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "A tua palavra-passe do Facebook foi alterada. Para confirmares a tua palavra-passe, abre as Definições > Facebook e toca no teu nome."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "A conta do Facebook não foi configurada no dispositivo."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "A tua conta não foi confirmada. Inicia sessão em www.facebook.com e segue as instruções indicadas."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Não podes iniciar sessão em aplicações neste momento. Inicia sessão em www.facebook.com e segue as instruções indicadas."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Tens o controlo: escolhe a informação que pretendes partilhar com as apps."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Iniciar sessão"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Enviar"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Partilhar"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Não és tu?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Confirmar Início de Sessão"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Continuar como %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings deleted file mode 100644 index 450a9cc8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Откройте страницу %@ и введите представленный выше код."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Чтобы подключить аккаунт, откройте приложение Facebook на мобильном устройстве и проверьте уведомления."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ИЛИ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Отменить"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Войдите в это приложение еще раз, чтобы повторно подключить ваш аккаунт Facebook."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Сервер временно загружен, повторите попытку."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Отменить"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Выход"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Выполнен вход с помощью Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Вы вошли как %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Вход"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Продолжить с Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Вход через Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Выход"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Аккаунту Facebook доступ не предоставлен. Проверьте настройки устройства."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Не удалось подключиться к Facebook. Проверьте сетевое подключение и повторите попытку."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ваш пароль Facebook изменен. Чтобы подтвердить пароль, откройте «Настройки» > Facebook и коснитесь вашего имени."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "На устройстве не настроен аккаунт Facebook."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ваш аккаунт не подтвержден. Войдите на сайт www.facebook.com и следуйте инструкциям."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Сейчас нельзя войти в приложения. Войдите на сайт www.facebook.com и следуйте инструкциям."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Вы сами выбираете, какой информацией поделиться с приложениями."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Вход в систему"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Отправить"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Поделиться"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Это не вы?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Подтвердить вход"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Продолжить как %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings deleted file mode 100644 index 859b9b3d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Navštívte stránku %@ a zadajte kód zobrazený vyššie."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Na pripojenie svojho účtu otvorte vo svojom mobilnom zariadení aplikáciu Facebook a skontrolujte upozornenia."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ALEBO -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Zrušiť"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Ak sa chcete znova pripojiť k svojmu účtu na Facebooku, prihláste sa znova do tejto aplikácie."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Server je dočasne zaneprázdnený – skúste znova."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Zrušiť"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Odhlásiť"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Prihlásený cez Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Prihlásený ako %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Prihlásiť sa"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Pokračovať s Facebookom"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Prihlásiť sa cez Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Odhlásiť sa"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Danému účtu na Facebooku nebol poskytnutý prístup. Skontrolujte nastavenia zariadenia."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Nedá sa pripojiť k Facebooku. Skontrolujte svoje sieťové pripojenie a skúste znova."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Vaše heslo pre Facebook sa zmenilo. Na potvrdenie svojho hesla otvorte Nastavenia > Facebook a ťuknite na svoje meno."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Daný účet na Facebooku nebol nastavený v zariadení."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Váš účet nie je potvrdený. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Momentálne sa nemôžete prihlásiť do aplikácií. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Máte to pod kontrolou: vyberte, ktoré informácie chcete zdieľať s aplikáciami."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Prihlásenie sa"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Odoslať"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Zdieľať"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Nie ste to vy?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Potvrdiť prihlásenie"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Pokračovať ako %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings deleted file mode 100644 index 69c80525..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Besök %@ och ange koden som visas ovan."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Koppla ditt konto genom att öppna Facebook-appen på din mobila enhet och söka efter aviseringar."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Avbryt"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Logga in på den här appen igen om du vill ansluta ditt Facebook-konto på nytt."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Servern är upptagen för tillfället. Försök igen."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Avbryt"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Logga ut"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Inloggad med Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Inloggad som %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Logga in"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Fortsätt med Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Logga in med Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Logga ut"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Du har inte fått tillgång till Facebook-kontot. Verifiera enhetsinställningar."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Det går inte att ansluta till Facebook. Kontrollera nätverksanslutningen och försök igen."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Ditt Facebook-lösenord har ändrats. Bekräfta lösenordet genom att öppna Inställningar > Facebook och skriva in ditt namn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook-konto har inte konfigurerats på enheten."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Ditt konto har inte bekräftats. Logga in på www.facebook.com och följ instruktionerna."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Du kan inte logga in på appar för närvarande. Logga in på www.facebook.com och följ instruktionerna."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Du bestämmer – välj vilken info du vill dela med appar."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Logga in"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Skicka"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Dela"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Inte du?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Bekräfta inloggning"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Fortsätt som %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings deleted file mode 100644 index ec117a9a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ என்பதற்குச் சென்று மேலே தெரியும் குறியீட்டை உள்ளிடவும்."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "உங்கள் கணக்குடன் இணைக்க, உங்கள் மொபைல் சாதனத்தில் Facebook பயன்பாட்டைத் திறந்து அறிவிப்புகளைப் பார்க்கவும்."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- அல்லது -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "சரி"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ரத்துசெய்"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "உங்கள் Facebook கணக்கில் மீண்டும் இணைய, இந்தப் பயன்பாட்டில் மீண்டும் உள்நுழையவும்."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "சரி"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "சேவையகம் தற்காலிகமாக பிஸியாக உள்ளது, மீண்டும் முயற்சிக்கவும்."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ரத்துசெய்"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "வெளியேறு"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook மூலம் உள்நுழையப்பட்டுள்ளது"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ இல் உள்நுழைந்துள்ளீர்கள்"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "உள்நுழைவு"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook இல் தொடரவும்"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook மூலம் உள்நுழையவும்"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "வெளியேறு"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook கணக்கிற்கு அணுகல் வழங்கப்படவில்லை. சாதன அமைப்புகளைச் சரிபார்க்கவும்."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook இல் இணைய முடியவில்லை. இணைய இணைப்பைச் சரிபார்த்து, மீண்டும் முயற்சிக்கவும்."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook கடவுச்சொல் மாற்றப்பட்டது. கடவுச்சொல்லை உறுதிசெய்ய, அமைப்புகள் > Facebook க்கு சென்று உங்கள் பெயரைத் தட்டவும்."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "சாதனத்தில் Facebook கணக்கு உள்ளமைக்கப்படவில்லை."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "உங்கள் கணக்கு உறுதிசெய்யப்படவில்லை. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "இப்போது பயன்பாடுகளில் உள்நுழைய முடியாது. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "பயன்பாடுகளில் எந்தத் தகவலைப் பகிர விரும்புகிறீர்கள் என்பதை நீங்கள் கட்டுப்படுத்தலாம்."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "உள்நுழைவு"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "அனுப்பு"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "பகிர்"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "நீங்கள் இல்லையா?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "உள்நுழைவை உறுதிப்படுத்தவும்"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ ஆகத் தொடரவும்"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings deleted file mode 100644 index 0d0bbe0e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ లింక్‌ను సందర్శించి, ఎగువ చూపిన కోడ్‌ను నమోదు చేయండి."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "మీ ఖాతాను అనుసంధానించడానికి, మీ మొబైల్ పరికరంలో Facebook అనువర్తనాన్ని తెరిచి, నోటిఫికేషన్‌లను తనిఖీ చేయండి."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- లేదా -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ఒప్పుకుంటున్నాను"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "రద్దు చేయి"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "దయచేసి మీ Facebook ఖాతాను మళ్లీ కనెక్ట్ చేయడానికి ఈ అప్లికేషన్‌కు మళ్లీ లాగిన్ చేయండి."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ఒప్పుకుంటున్నాను"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "సర్వర్ తాత్కాలికంగా బిజీగా ఉంది, దయచేసి మళ్లీ ప్రయత్నించండి."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "రద్దు చేయి"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "లాగ్ అవుట్ చేయి"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ఉపయోగించి లాగిన్ చేసారు"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@గా లాగిన్ చేసారు"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "లాగిన్ చేయి"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebookతో కొనసాగించండి"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebookతో లాగిన్ చేయి"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "లాగ్ అవుట్ చేయి"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook ఖాతాకు ప్రాప్యత మంజూరు చేయలేదు. పరికర సెట్టింగ్‌లను సరిచూడండి."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebookకి కనెక్ట్ చేయడం సాధ్యపడలేదు. మీ నెట్‌వర్క్ కనెక్షన్‌ను తనిఖీ చేసి, మళ్లీ ప్రయత్నించండి."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "మీ Facebook పాస్‌వర్డ్ మారింది. మీ పాస్‌వర్డ్‌ను నిర్ధారించడానికి, సెట్టింగ్‌లు > Facebook తెరిచి, మీ పేరు నొక్కండి."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "పరికరంలో Facebook ఖాతా కాన్ఫిగర్ చేయబడలేదు."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "మీ ఖాతా నిర్ధారించబడలేదు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "ప్రస్తుతం మీరు అప్లికేషన్‌లకు లాగిన్ చేయలేరు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "మీకు నియంత్రణ ఉంది - మీరు అనువర్తనాలతో భాగస్వామ్యం చేయాలనుకునే సమాచారాన్ని ఎంచుకోండి."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "లాగిన్ చేయండి"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "పంపు"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "భాగస్వామ్యం చేయండి"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "మీరు కాదా?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "లాగిన్‌ను నిర్ధారించండి"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ వలె కొనసాగండి"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings deleted file mode 100644 index 3883ee8f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "ไปที่ %@ และใส่โค้ดที่แสดงด้านบน"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "หากต้องการเชื่อมต่อบัญชีผู้ใช้ของคุณ ให้เปิดแอพ Facebook บนอุปกรณ์มือถือของคุณและตรวจสอบการแจ้งเตือน"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- หรือ -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "ตกลง"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "ยกเลิก"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "โปรดลงชื่อเข้าใช้แอพนี้อีกครั้งเพื่อเชื่อมต่อบัญชีผู้ใช้ Facebook ของคุณใหม่"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "ตกลง"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "เซิร์ฟเวอร์ไม่พร้อมให้บริการชั่วคราว โปรดลองใหม่อีกครั้ง"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "ยกเลิก"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "ออกจากระบบ"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "เข้าสู่ระบบโดยใช้ Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "เข้าสู่ระบบในชื่อ %@"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "เข้าสู่ระบบ"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "ดำเนินการต่อด้วย Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "เข้าสู่ระบบด้วย Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "ออกจากระบบ"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "บัญชีผู้ใช้ Facebook ไม่ได้รับอนุญาตให้เข้าถึง ตรวจสอบการตั้งค่าของอุปกรณ์"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "ไม่สามารถเชื่อมต่อกับ Facebook ตรวจสอบการเชื่อมต่อเครือข่ายและลองอีกครั้ง"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "เปลี่ยนรหัสผ่าน Facebook ของคุณแล้ว เพื่อยืนยันรหัสผ่านของคุณ ให้เปิด การตั้งค่า > Facebook แล้วแตะชื่อของคุณ"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "บัญชีผู้ใช้ Facebook ไม่ได้รับการกำหนดค่าบนอุปกรณ์เครื่องนี้"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "บัญชีผู้ใช้ของคุณไม่ได้รับการยืนยัน โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "คุณไม่สามารถเข้าสู่ระบบของแอพได้ในตอนนี้ โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "คุณเป็นฝ่ายควบคุม โปรดเลือกข้อมูลที่คุณต้องการแชร์ด้วยแอพ"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "เข้าสู่ระบบ"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "ส่ง"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "แชร์"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "หากไม่ใช่คุณ"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "ยืนยันการเข้าสู่ระบบ"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "ดำเนินการต่อในชื่อ %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings deleted file mode 100644 index 51a5328d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "%@ adresini ziyaret edin ve yukarıda görülen kodu girin."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Hesabınızı bağlamak için, mobil cihazınızda Facebook uygulamasını açın ve bildirimlerinizi kontrol edin."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- YA DA -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "Tamam"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "İptal"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Facebook hesabına yeniden bağlanmak için lütfen bu uygulamaya tekrar giriş yap."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "Tamam"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Sunucu geçici olarak meşgul. Lütfen tekrar dene."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "İptal"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Çıkış Yap"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Facebook ile giriş yapıldı"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "%@ olarak giriş yapıldı"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Giriş yap"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Facebook ile Devam Et"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Facebook ile giriş yap"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Çıkış yap"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Facebook hesabına erişim izni verilmedi. Cihaz ayarlarını doğrula."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Facebook'a bağlanılamıyor. Ağ bağlantını kontrol edip tekrar dene."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Facebook şifren değiştirildi. Şifreni onaylamak için Ayarlar > Facebook'u aç ve adına dokunun."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook hesabı cihaz üzerinde yapılandırılmadı."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Hesabın onaylanmadı. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Şu an için uygulamalara giriş yapamazsın. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Kontrol sende. Uygulamalarla paylaşmak istediğin bilgileri seç."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Giriş Yap"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Gönder"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Paylaş"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Sen değil misin?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Girişi Onayla"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "%@ olarak devam et"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings deleted file mode 100644 index d0ddbc61..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "Truy cập %@ và nhập mã hiển thị ở trên."; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "Để kết nối tài khoản của bạn, hãy mở ứng dụng Facebook trên thiết bị di động và kiểm tra thông báo."; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- HOẶC -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "OK"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "Hủy"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "Vui lòng đăng nhập lại vào ứng dụng này để kết nối lại tài khoản Facebook của bạn."; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "OK"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "Máy chủ hiện đang bận, vui lòng thử lại sau."; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "Hủy"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "Đăng xuất"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "Đã đăng nhập bằng Facebook"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "Đã đăng nhập với tư cách là"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "Đăng nhập"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "Tiếp tục với Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "Đăng nhập bằng Facebook"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "Đăng xuất"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "Quyền truy cập chưa được cấp cho tài khoản Facebook. Xác minh thiết lập của thiết bị."; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "Không thể kết nối với Facebook. Vui lòng kiểm tra kết nối mạng của bạn và thử lại."; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "Mật khẩu Facebook của bạn đã thay đổi. Để xác nhận mật khẩu của bạn, hãy mở Thiết lập > Facebook và nhấn vào tên bạn."; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Tài khoản Facebook chưa được định cấu hình trên thiết bị."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "Tài khoản của bạn không được xác nhận. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "Bạn không thể đăng nhập vào các ứng dụng lúc này. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Bạn đang có quyền kiểm soát - hãy chọn thông tin bạn muốn chia sẻ với ứng dụng."; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "Đăng nhập"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "Gửi"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "Chia sẻ"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "Không phải bạn?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "Xác nhận đăng nhập"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "Tiếp tục với tư cách %@"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings deleted file mode 100644 index 4273dc25..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "请访问 %@ 并输入上方显示的验证码。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "要关联你的帐户,请在移动设备上打开 Facebook 应用,并查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或者 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "确定"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "请再次登录此应用,以便重新连接您的 Facebook 帐户。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "确定"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "服务器暂时繁忙,请重试。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "退出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "已使用 Facebook 登录"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "已以 %@ 身份登录"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登录"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "继续使用 Facebook 登录"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登录"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "退出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "未授予该 Facebook 帐户访问权限。验证设备设置。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "无法连接到 Facebook。检查网络连接并重试。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密码已更改。要确认密码,请打开设置 > Facebook,并轻触您的姓名。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "未在设备上配置 Facebook 帐户。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帐户未确认。请登录 www.facebook.com,并按照提供的说明操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您此时不能登录应用。请登录 www.facebook.com,并按照提供的说明操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "一切任您掌控 — 选择您想通过应用分享的信息。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登录"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "发送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "不是你?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "确认登录"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以%@的身份继续"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings deleted file mode 100644 index 44f853db..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "前往 %@ 並輸入上方的程式碼。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "若要連結您的帳戶,請在您的流動裝置上開啟 Facebook 應用程式並查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "確定"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "請再次登入此應用程式以重新連接您的 Facebook 帳戶。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "確定"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "登出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "使用 Facebook 登入"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "以 %@ 身分登入"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登入"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "繼續使用 Facebook"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登入"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "登出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "沒有獲得 Facebook 帳戶的存取授權。確認裝置設定。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "無法與 Facebook 連線。請檢查網絡連線,然後再試一次。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經變更。要確認密碼,請開啟設定 > Facebook,然後點按您的名稱。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "Facebook 帳戶尚未在此裝置上設定。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帳戶尚未確認。請登入 www.facebook.com 並依據指示操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您現時無法登入應用程式。請登入 www.facebook.com 並依據指示操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "控制權在您 - 選擇您要與應用程式分享的資訊。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登入"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "傳送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "這不是您?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "確認登入"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以%@的身分繼續"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings deleted file mode 100644 index b97bd4aa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings +++ /dev/null @@ -1,86 +0,0 @@ -/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ -"DeviceLogin.LogInPrompt" = "請前往 %@ 並輸入上方顯示的代碼。"; - -/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ -"DeviceLogin.SmartLogInPrompt" = "若要連結帳號,請從行動裝置開啟 Facebook 應用程式,並查看通知。"; - -/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ -"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; - -/* The title of the label to dismiss the alert when presenting user facing error messages */ -"ErrorRecovery.Alert.OK" = "是"; - -/* The title of the label to decline attempting error recovery */ -"ErrorRecovery.Cancel" = "取消"; - -/* The fallback message to display to recover invalidated tokens */ -"ErrorRecovery.Login.Suggestion" = "請重新登入此應用程式以重新連結您的 Facebook 帳號。"; - -/* The title of the label to start attempting error recovery */ -"ErrorRecovery.OK" = "是"; - -/* The fallback message to display to retry transient errors */ -"ErrorRecovery.Transient.Suggestion" = "伺服器暫時忙碌中,請再試一次。"; - -/* The label for the FBSDKLoginButton action sheet to cancel logging out */ -"LoginButton.CancelLogout" = "取消"; - -/* The label for the FBSDKLoginButton action sheet to confirm logging out */ -"LoginButton.ConfirmLogOut" = "登出"; - -/* The fallback string for the FBSDKLoginButton label when the user name is not available yet */ -"LoginButton.LoggedIn" = "已使用 Facebook 登入"; - -/* The format string for the FBSDKLoginButton label when the user is logged in */ -"LoginButton.LoggedInAs" = "以 %@ 身分登入"; - -/* The short label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogIn" = "登入"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInContinue" = "繼續使用 Facebook 帳號"; - -/* The long label for the FBSDKLoginButton when the user is currently logged out */ -"LoginButton.LogInLong" = "使用 Facebook 登入"; - -/* The label for the FBSDKLoginButton when the user is currently logged in */ -"LoginButton.LogOut" = "登出"; - -/* The user facing error message when the app slider has been disabled and login fails. */ -"LoginError.SystemAccount.Disabled" = "尚未取得授權,無法存取 Facebook 帳號。請確認裝置設定。"; - -/* The user facing error message when the Accounts framework encounters a network error. */ -"LoginError.SystemAccount.Network" = "無法連線到 Facebook。請檢查網路連線,然後再試一次。"; - -/* The user facing error message when the device Facebook account password is incorrect and login fails. */ -"LoginError.SystemAccount.PasswordChange" = "您的 Facebook 密碼已經更改。若要確認您的密碼,請開啟「設定」>「Facebook」,然後點按您的姓名。"; - -/* The user facing error message when the device Facebook account is unavailable and login fails. */ -"LoginError.SystemAccount.Unavailable" = "尚未透過裝置設定 Facebook 帳號。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework becomes unconfirmed. */ -"LoginError.SystemAccount.UnconfirmedUser" = "您的帳號尚未確認。請登入 www.facebook.com,然後按照指示操作。"; - -/* The user facing error message when the Facebook account signed in to the Accounts framework has been checkpointed. */ -"LoginError.SystemAccount.UserCheckpointed" = "您目前無法登入應用程式。請登入 www.facebook.com,然後按照指示操作。"; - -/* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "您可以全盤掌控!選擇您想和應用程式分享的資訊內容。"; - -/* Title of the web dialog that prompts the user to log in to Facebook. */ -"LoginWeb.LogInTitle" = "登入"; - -/* The label for FBSDKSendButton */ -"SendButton.Send" = "傳送"; - -/* The label for FBSDKShareButton */ -"ShareButton.Share" = "分享"; - -/* Prompts a person if this is their current account */ -"SmartLogin.NotYou" = "這不是您?"; - -/* Text on a button that a person presses to confirm that they are finished with the login experience */ -"SmartLogin.ConfirmationTitle" = "確認登入"; - -/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ -"SmartLogin.Continue" = "以 %@ 身分繼續"; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherCreating.h deleted file mode 100644 index 14ad02c1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherCreating.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKATEPublishing; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ATEPublisherCreating) -@protocol FBSDKATEPublisherCreating - -// UNCRUSTIFY_FORMAT_OFF -- (nullable id)createPublisherWithAppID:(NSString *)appID -NS_SWIFT_NAME(createPublisher(appID:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherFactory.h deleted file mode 100644 index 43cc8f17..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKATEPublisherFactory.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -@protocol FBSDKDataPersisting; -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKSettings; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ATEPublisherFactory) -@interface FBSDKATEPublisherFactory : NSObject - -@property (nonatomic) id dataStore; -@property (nonatomic) id graphRequestFactory; -@property (nonatomic) id settings; -@property (nonatomic) id deviceInformationProvider; - -+ (instancetype)new NS_UNAVAILABLE; -- (instancetype)init NS_UNAVAILABLE; - -- (instancetype)initWithDataStore:(id)dataStore - graphRequestFactory:(id)graphRequestFactory - settings:(id)settings - deviceInformationProvider:(id)deviceInformationProvider; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h deleted file mode 100644 index b6556e6c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAccessToken.h +++ /dev/null @@ -1,207 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import -#import -#import - -@protocol FBSDKGraphRequestConnectionFactory; -@protocol FBSDKGraphRequestPiggybackManaging; -@protocol FBSDKErrorCreating; - -NS_ASSUME_NONNULL_BEGIN - -/** - Notification indicating that the `currentAccessToken` has changed. - - the userInfo dictionary of the notification will contain keys - `FBSDKAccessTokenChangeOldKey` and - `FBSDKAccessTokenChangeNewKey`. - */ -FOUNDATION_EXPORT NSNotificationName const FBSDKAccessTokenDidChangeNotification -NS_SWIFT_NAME(AccessTokenDidChange); - -/** - A key in the notification's userInfo that will be set - if and only if the user ID changed between the old and new tokens. - - Token refreshes can occur automatically with the SDK - which do not change the user. If you're only interested in user - changes (such as logging out), you should check for the existence - of this key. The value is a NSNumber with a boolValue. - - On a fresh start of the app where the SDK reads in the cached value - of an access token, this key will also exist since the access token - is moving from a null state (no user) to a non-null state (user). - */ -FOUNDATION_EXPORT NSString *const FBSDKAccessTokenDidChangeUserIDKey -NS_SWIFT_NAME(AccessTokenDidChangeUserIDKey); - -/* - key in notification's userInfo object for getting the old token. - - If there was no old token, the key will not be present. - */ -FOUNDATION_EXPORT NSString *const FBSDKAccessTokenChangeOldKey -NS_SWIFT_NAME(AccessTokenChangeOldKey); - -/* - key in notification's userInfo object for getting the new token. - - If there is no new token, the key will not be present. - */ -FOUNDATION_EXPORT NSString *const FBSDKAccessTokenChangeNewKey -NS_SWIFT_NAME(AccessTokenChangeNewKey); - -/* - A key in the notification's userInfo that will be set - if and only if the token has expired. - */ -FOUNDATION_EXPORT NSString *const FBSDKAccessTokenDidExpireKey -NS_SWIFT_NAME(AccessTokenDidExpireKey); - -/// Represents an immutable access token for using Facebook services. -NS_SWIFT_NAME(AccessToken) -@interface FBSDKAccessToken : NSObject - -/** - The "global" access token that represents the currently logged in user. - - The `currentAccessToken` is a convenient representation of the token of the - current user and is used by other SDK components (like `FBSDKLoginManager`). - */ -@property (class, nullable, nonatomic, copy) FBSDKAccessToken *currentAccessToken NS_SWIFT_NAME(current); - -/// Returns YES if currentAccessToken is not nil AND currentAccessToken is not expired -@property (class, nonatomic, readonly, getter = isCurrentAccessTokenActive, assign) BOOL currentAccessTokenIsActive; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (class, nullable, nonatomic, copy) id tokenCache; - -/// Returns the app ID. -@property (nonatomic, readonly, copy) NSString *appID; - -/// Returns the expiration date for data access -@property (nonatomic, readonly, copy) NSDate *dataAccessExpirationDate; - -/// Returns the known declined permissions. -@property (nonatomic, readonly, copy) NSSet *declinedPermissions - NS_REFINED_FOR_SWIFT; - -/// Returns the known declined permissions. -@property (nonatomic, readonly, copy) NSSet *expiredPermissions - NS_REFINED_FOR_SWIFT; - -/// Returns the expiration date. -@property (nonatomic, readonly, copy) NSDate *expirationDate; - -/// Returns the known granted permissions. -@property (nonatomic, readonly, copy) NSSet *permissions - NS_REFINED_FOR_SWIFT; - -/// Returns the date the token was last refreshed. -@property (nonatomic, readonly, copy) NSDate *refreshDate; - -/// Returns the opaque token string. -@property (nonatomic, readonly, copy) NSString *tokenString; - -/// Returns the user ID. -@property (nonatomic, readonly, copy) NSString *userID; - -/// Returns whether the access token is expired by checking its expirationDate property -@property (nonatomic, readonly, getter = isExpired, assign) BOOL expired; - -/// Returns whether user data access is still active for the given access token -@property (nonatomic, readonly, getter = isDataAccessExpired, assign) BOOL dataAccessExpired; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Initializes a new instance. - @param tokenString the opaque token string. - @param permissions the granted permissions. Note this is converted to NSSet and is only - an NSArray for the convenience of literal syntax. - @param declinedPermissions the declined permissions. Note this is converted to NSSet and is only - an NSArray for the convenience of literal syntax. - @param expiredPermissions the expired permissions. Note this is converted to NSSet and is only - an NSArray for the convenience of literal syntax. - @param appID the app ID. - @param userID the user ID. - @param expirationDate the optional expiration date (defaults to distantFuture). - @param refreshDate the optional date the token was last refreshed (defaults to today). - @param dataAccessExpirationDate the date which data access will expire for the given user - (defaults to distantFuture). - - This initializer should only be used for advanced apps that - manage tokens explicitly. Typical login flows only need to use `FBSDKLoginManager` - along with `+currentAccessToken`. - */ -- (instancetype)initWithTokenString:(NSString *)tokenString - permissions:(NSArray *)permissions - declinedPermissions:(NSArray *)declinedPermissions - expiredPermissions:(NSArray *)expiredPermissions - appID:(NSString *)appID - userID:(NSString *)userID - expirationDate:(nullable NSDate *)expirationDate - refreshDate:(nullable NSDate *)refreshDate - dataAccessExpirationDate:(nullable NSDate *)dataAccessExpirationDate - NS_DESIGNATED_INITIALIZER; - -/** - Convenience getter to determine if a permission has been granted - @param permission The permission to check. - */ -// UNCRUSTIFY_FORMAT_OFF -- (BOOL)hasGranted:(NSString *)permission -NS_SWIFT_NAME(hasGranted(permission:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Compares the receiver to another FBSDKAccessToken - @param token The other token - @return YES if the receiver's values are equal to the other token's values; otherwise NO - */ -- (BOOL)isEqualToAccessToken:(FBSDKAccessToken *)token; - -/** - Refresh the current access token's permission state and extend the token's expiration date, - if possible. - @param completion an optional callback handler that can surface any errors related to permission refreshing. - - On a successful refresh, the currentAccessToken will be updated so you typically only need to - observe the `FBSDKAccessTokenDidChangeNotification` notification. - - If a token is already expired, it cannot be refreshed. - */ -+ (void)refreshCurrentAccessTokenWithCompletion:(nullable FBSDKGraphRequestCompletion)completion; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -+ (void)configureWithTokenCache:(id)tokenCache - graphRequestConnectionFactory:(id)graphRequestConnectionFactory - graphRequestPiggybackManager:(id)graphRequestPiggybackManager - errorFactory:(id)errorFactory -NS_SWIFT_NAME(configure(tokenCache:graphRequestConnectionFactory:graphRequestPiggybackManager:errorFactory:)); - - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAccessTokenProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAccessTokenProviding.h deleted file mode 100644 index d6dd7b92..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAccessTokenProviding.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKAccessToken; -@protocol FBSDKTokenCaching; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AccessTokenProviding) -@protocol FBSDKAccessTokenProviding - -@property (class, nullable, nonatomic, copy) FBSDKAccessToken *currentAccessToken NS_SWIFT_NAME(current); -@property (class, nullable, nonatomic, copy) id tokenCache; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAdvertiserIDProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAdvertiserIDProviding.h deleted file mode 100644 index 7eaa18b1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAdvertiserIDProviding.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AdvertiserIDProviding) -@protocol FBSDKAdvertiserIDProviding - -@property (nullable, nonatomic, readonly, copy) NSString *advertiserID; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAdvertisingTrackingStatus.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAdvertisingTrackingStatus.h deleted file mode 100644 index 730b90da..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAdvertisingTrackingStatus.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef NS_ENUM(NSUInteger, FBSDKAdvertisingTrackingStatus) { - FBSDKAdvertisingTrackingAllowed, - FBSDKAdvertisingTrackingDisallowed, - FBSDKAdvertisingTrackingUnspecified, -} NS_SWIFT_NAME(AdvertisingTrackingStatus); - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppAvailabilityChecker.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppAvailabilityChecker.h deleted file mode 100644 index 21a1f444..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppAvailabilityChecker.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(AppAvailabilityChecker) -@protocol FBSDKAppAvailabilityChecker - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (nonatomic, readonly, assign) BOOL isMessengerAppInstalled; -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (nonatomic, readonly, assign) BOOL isFacebookAppInstalled; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventDropDetermining.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventDropDetermining.h deleted file mode 100644 index 79da059a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventDropDetermining.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventDropDetermining) -@protocol FBSDKAppEventDropDetermining - -@property (nonatomic, readonly) BOOL shouldDropAppEvents; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventName.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventName.h deleted file mode 100644 index 987e6f79..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventName.h +++ /dev/null @@ -1,106 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - @methodgroup Predefined event names for logging events common to many apps. Logging occurs through the `logEvent` family of methods on `FBSDKAppEvents`. - Common event parameters are provided in the `FBSDKAppEventParameterName` constants. - */ - -/// typedef for FBSDKAppEventName -typedef NSString *FBSDKAppEventName NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.Name); - -// MARK: - General Purpose - -/// Log this event when the user clicks an ad. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameAdClick; - -/// Log this event when the user views an ad. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameAdImpression; - -/// Log this event when a user has completed registration with the app. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameCompletedRegistration; - -/// Log this event when the user has completed a tutorial in the app. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameCompletedTutorial; - -/// A telephone/SMS, email, chat or other type of contact between a customer and your business. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameContact; - -/// The customization of products through a configuration tool or other application your business owns. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameCustomizeProduct; - -/// The donation of funds to your organization or cause. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameDonate; - -/// When a person finds one of your locations via web or application, with an intention to visit (example: find product at a local store). -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameFindLocation; - -/// Log this event when the user has rated an item in the app. The valueToSum passed to logEvent should be the numeric rating. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameRated; - -/// The booking of an appointment to visit one of your locations. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameSchedule; - -/// Log this event when a user has performed a search within the app. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameSearched; - -/// The start of a free trial of a product or service you offer (example: trial subscription). -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameStartTrial; - -/// The submission of an application for a product, service or program you offer (example: credit card, educational program or job). -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameSubmitApplication; - -/// The start of a paid subscription for a product or service you offer. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameSubscribe; - -/// Log this event when a user has viewed a form of content in the app. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameViewedContent; - -// MARK: - E-Commerce - -/// Log this event when the user has entered their payment info. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameAddedPaymentInfo; - -/// Log this event when the user has added an item to their cart. The valueToSum passed to logEvent should be the item's price. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameAddedToCart; - -/// Log this event when the user has added an item to their wishlist. The valueToSum passed to logEvent should be the item's price. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameAddedToWishlist; - -/// Log this event when the user has entered the checkout process. The valueToSum passed to logEvent should be the total price in the cart. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameInitiatedCheckout; - -/// Log this event when the user has completed a transaction. The valueToSum passed to logEvent should be the total price of the transaction. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNamePurchased; - -// MARK: - Gaming - -/// Log this event when the user has achieved a level in the app. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameAchievedLevel; - -/// Log this event when the user has unlocked an achievement in the app. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameUnlockedAchievement; - -/// Log this event when the user has spent app credits. The valueToSum passed to logEvent should be the number of credits spent. -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameSpentCredits; - -// MARK: - Internal - -/** - Internal values exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameInitializeSDK; -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameBackgroundStatusAvailable; -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameBackgroundStatusDenied; -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameBackgroundStatusRestricted; -FOUNDATION_EXPORT FBSDKAppEventName const FBSDKAppEventNameSDKSettingsChanged; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterName.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterName.h deleted file mode 100644 index ceb5e2d3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterName.h +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - @methodgroup Predefined event name parameters for common additional information to accompany events logged through the `logEvent` family - of methods on `FBSDKAppEvents`. Common event names are provided in the `FBAppEventName*` constants. - */ - -/// typedef for FBSDKAppEventParameterName -typedef NSString *FBSDKAppEventParameterName NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.ParameterName); - -/** - * Parameter key used to specify data for the one or more pieces of content being logged about. - * Data should be a JSON encoded string. - * Example: - * "[{\"id\": \"1234\", \"quantity\": 2, \"item_price\": 5.99}, {\"id\": \"5678\", \"quantity\": 1, \"item_price\": 9.99}]" - */ -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameContent; - -/// Parameter key used to specify an ID for the specific piece of content being logged about. Could be an EAN, article identifier, etc., depending on the nature of the app. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameContentID; - -/// Parameter key used to specify a generic content type/family for the logged event, e.g. "music", "photo", "video". Options to use will vary based upon what the app is all about. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameContentType; - -/// Parameter key used to specify currency used with logged event. E.g. "USD", "EUR", "GBP". See ISO-4217 for specific values. One reference for these is . -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameCurrency; - -/// Parameter key used to specify a description appropriate to the event being logged. E.g., the name of the achievement unlocked in the `FBAppEventNameAchievementUnlocked` event. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameDescription; - -/// Parameter key used to specify the level achieved in a `FBAppEventNameAchieved` event. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameLevel; - -/// Parameter key used to specify the maximum rating available for the `FBAppEventNameRate` event. E.g., "5" or "10". -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameMaxRatingValue; - -/// Parameter key used to specify how many items are being processed for an `FBAppEventNameInitiatedCheckout` or `FBAppEventNamePurchased` event. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameNumItems; - -/// Parameter key used to specify whether payment info is available for the `FBAppEventNameInitiatedCheckout` event. `FBSDKAppEventParameterValueYes` and `FBSDKAppEventParameterValueNo` are good canonical values to use for this parameter. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNamePaymentInfoAvailable; - -/// Parameter key used to specify method user has used to register for the app, e.g., "Facebook", "email", "Twitter", etc -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameRegistrationMethod; - -/// Parameter key used to specify the string provided by the user for a search operation. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameSearchString; - -/// Parameter key used to specify whether the activity being logged about was successful or not. `FBSDKAppEventParameterValueYes` and `FBSDKAppEventParameterValueNo` are good canonical values to use for this parameter. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameSuccess; - -/** Parameter key used to specify the type of ad in an FBSDKAppEventNameAdImpression - * or FBSDKAppEventNameAdClick event. - * E.g. "banner", "interstitial", "rewarded_video", "native" */ -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameAdType; - -/** Parameter key used to specify the unique ID for all events within a subscription - * in an FBSDKAppEventNameSubscribe or FBSDKAppEventNameStartTrial event. */ -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameOrderID; - -/// Parameter key used to specify event name. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameEventName; - -/// Parameter key used to specify event log time. -FOUNDATION_EXPORT FBSDKAppEventParameterName const FBSDKAppEventParameterNameLogTime; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterProduct.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterProduct.h deleted file mode 100644 index ff0b036c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterProduct.h +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/// @methodgroup Predefined event name parameters for common additional information to accompany events logged through the `logProductItem` method on `FBSDKAppEvents`. - -/// typedef for FBSDKAppEventParameterProduct -typedef NSString *const FBSDKAppEventParameterProduct NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.ParameterProduct); - -/// Parameter key used to specify the product item's category. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCategory; - -/// Parameter key used to specify the product item's custom label 0. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel0; - -/// Parameter key used to specify the product item's custom label 1. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel1; - -/// Parameter key used to specify the product item's custom label 2. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel2; - -/// Parameter key used to specify the product item's custom label 3. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel3; - -/// Parameter key used to specify the product item's custom label 4. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductCustomLabel4; - -/// Parameter key used to specify the product item's AppLink app URL for iOS. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIOSUrl; - -/// Parameter key used to specify the product item's AppLink app ID for iOS App Store. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIOSAppStoreID; - -/// Parameter key used to specify the product item's AppLink app name for iOS. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIOSAppName; - -/// Parameter key used to specify the product item's AppLink app URL for iPhone. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPhoneUrl; - -/// Parameter key used to specify the product item's AppLink app ID for iPhone App Store. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPhoneAppStoreID; - -/// Parameter key used to specify the product item's AppLink app name for iPhone. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPhoneAppName; - -/// Parameter key used to specify the product item's AppLink app URL for iPad. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPadUrl; - -/// Parameter key used to specify the product item's AppLink app ID for iPad App Store. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPadAppStoreID; - -/// Parameter key used to specify the product item's AppLink app name for iPad. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkIPadAppName; - -/// Parameter key used to specify the product item's AppLink app URL for Android. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkAndroidUrl; - -/// Parameter key used to specify the product item's AppLink fully-qualified package name for intent generation. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkAndroidPackage; - -/// Parameter key used to specify the product item's AppLink app name for Android. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkAndroidAppName; - -/// Parameter key used to specify the product item's AppLink app URL for Windows Phone. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkWindowsPhoneUrl; - -/// Parameter key used to specify the product item's AppLink app ID, as a GUID, for App Store. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkWindowsPhoneAppID; - -/// Parameter key used to specify the product item's AppLink app name for Windows Phone. -FOUNDATION_EXPORT FBSDKAppEventParameterProduct FBSDKAppEventParameterProductAppLinkWindowsPhoneAppName; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterValue.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterValue.h deleted file mode 100644 index 796e2e10..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventParameterValue.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/* - @methodgroup Predefined values to assign to event parameters that accompany events logged through the `logEvent` family - of methods on `FBSDKAppEvents`. Common event parameters are provided in the `FBSDKAppEventParameterName*` constants. - */ - -/// typedef for FBSDKAppEventParameterValue -typedef NSString *const FBSDKAppEventParameterValue NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(AppEvents.ParameterValue); - -/// Yes-valued parameter value to be used with parameter keys that need a Yes/No value -FOUNDATION_EXPORT FBSDKAppEventParameterValue FBSDKAppEventParameterValueYes; - -/// No-valued parameter value to be used with parameter keys that need a Yes/No value -FOUNDATION_EXPORT FBSDKAppEventParameterValue FBSDKAppEventParameterValueNo; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventParametersExtracting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventParametersExtracting.h deleted file mode 100644 index 5c6f61d6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventParametersExtracting.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventParametersExtracting) -@protocol FBSDKAppEventParametersExtracting - -- (NSMutableDictionary *)activityParametersDictionaryForEvent:(NSString *)eventCategory - shouldAccessAdvertisingID:(BOOL)shouldAccessAdvertisingID - userID:(nullable NSString *)userID - userData:(nullable NSString *)userData; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventUserDataType.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventUserDataType.h deleted file mode 100644 index 194443d5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventUserDataType.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -typedef NSString *const FBSDKAppEventUserDataType NS_TYPED_EXTENSIBLE_ENUM; - -/// Parameter key used to specify user's email. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventEmail; - -/// Parameter key used to specify user's first name. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventFirstName; - -/// Parameter key used to specify user's last name. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventLastName; - -/// Parameter key used to specify user's phone. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventPhone; - -/// Parameter key used to specify user's date of birth. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventDateOfBirth; - -/// Parameter key used to specify user's gender. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventGender; - -/// Parameter key used to specify user's city. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventCity; - -/// Parameter key used to specify user's state. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventState; - -/// Parameter key used to specify user's zip. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventZip; - -/// Parameter key used to specify user's country. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventCountry; - -/// Parameter key used to specify user's external id. -FOUNDATION_EXPORT FBSDKAppEventUserDataType FBSDKAppEventExternalId; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h deleted file mode 100644 index 1a3372c2..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEvents.h +++ /dev/null @@ -1,538 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - #import -#endif - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKAccessToken; - -/// Optional plist key ("FacebookLoggingOverrideAppID") for setting `loggingOverrideAppID` -FOUNDATION_EXPORT NSString *const FBSDKAppEventsOverrideAppIDBundleKey -NS_SWIFT_NAME(AppEventsOverrideAppIDBundleKey); - -/** - Client-side event logging for specialized application analytics available through Facebook App Insights - and for use with Facebook Ads conversion tracking and optimization. - - The `FBSDKAppEvents` static class has a few related roles: - - + Logging predefined and application-defined events to Facebook App Insights with a - numeric value to sum across a large number of events, and an optional set of key/value - parameters that define "segments" for this event (e.g., 'purchaserStatus' : 'frequent', or - 'gamerLevel' : 'intermediate') - - + Logging events to later be used for ads optimization around lifetime value. - - + Methods that control the way in which events are flushed out to the Facebook servers. - - Here are some important characteristics of the logging mechanism provided by `FBSDKAppEvents`: - - + Events are not sent immediately when logged. They're cached and flushed out to the Facebook servers - in a number of situations: - - when an event count threshold is passed (currently 100 logged events). - - when a time threshold is passed (currently 15 seconds). - - when an app has gone to background and is then brought back to the foreground. - - + Events will be accumulated when the app is in a disconnected state, and sent when the connection is - restored and one of the above 'flush' conditions are met. - - + The `FBSDKAppEvents` class is thread-safe in that events may be logged from any of the app's threads. - - + The developer can set the `flushBehavior` on `FBSDKAppEvents` to force the flushing of events to only - occur on an explicit call to the `flush` method. - - + The developer can turn on console debug output for event logging and flushing to the server by using - the `FBSDKLoggingBehaviorAppEvents` value in `[FBSettings setLoggingBehavior:]`. - - Some things to note when logging events: - - + There is a limit on the number of unique event names an app can use, on the order of 1000. - + There is a limit to the number of unique parameter names in the provided parameters that can - be used per event, on the order of 25. This is not just for an individual call, but for all - invocations for that eventName. - + Event names and parameter names (the keys in the NSDictionary) must be between 2 and 40 characters, and - must consist of alphanumeric characters, _, -, or spaces. - + The length of each parameter value can be no more than on the order of 100 characters. - */ -NS_SWIFT_NAME(AppEvents) -@interface FBSDKAppEvents : NSObject < - FBSDKEventLogging, - FBSDKAppEventsConfiguring, - FBSDKApplicationActivating, - FBSDKApplicationLifecycleObserving, - FBSDKApplicationStateSetting, - FBSDKSourceApplicationTracking, - FBSDKUserIDProviding -> - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/// The shared instance of AppEvents. -@property (class, nonatomic, readonly, strong) FBSDKAppEvents *shared; - -/// Control over event batching/flushing - -/// The current event flushing behavior specifying when events are sent back to Facebook servers. -@property (nonatomic) FBSDKAppEventsFlushBehavior flushBehavior; - -/** - Set the 'override' App ID for App Event logging. - - In some cases, apps want to use one Facebook App ID for login and social presence and another - for App Event logging. (An example is if multiple apps from the same company share an app ID for login, but - want distinct logging.) By default, this value is `nil`, and defers to the `FBSDKAppEventsOverrideAppIDBundleKey` - plist value. If that's not set, it defaults to `Settings.shared.appID`. - - This should be set before any other calls are made to `AppEvents`. Thus, you should set it in your application - delegate's `application(_:didFinishLaunchingWithOptions:)` method. - */ -@property (nullable, nonatomic, copy) NSString *loggingOverrideAppID; - -/** - The custom user ID to associate with all app events. - - The userID is persisted until it is cleared by passing `nil`. - */ -@property (nullable, nonatomic, copy) NSString *userID; - -/// Returns generated anonymous id that persisted with current install of the app -@property (nonatomic, readonly) NSString *anonymousID; - -/* - * Basic event logging - */ - -/** - Log an event with just an event name. - - @param eventName The name of the event to record. Limitations on number of events and name length - are given in the `AppEvents` documentation. - */ -- (void)logEvent:(FBSDKAppEventName)eventName; - -/** - Log an event with an event name and a numeric value to be aggregated with other events of this name. - - @param eventName The name of the event to record. Limitations on number of events and name length - are given in the `AppEvents` documentation. Common event names are provided in `AppEvents.Name` constants. - - @param valueToSum Amount to be aggregated into all events of this event name, and App Insights will report - the cumulative and average value of this amount. - */ -- (void)logEvent:(FBSDKAppEventName)eventName - valueToSum:(double)valueToSum; - -/** - Log an event with an event name and a set of key/value pairs in the parameters dictionary. - Parameter limitations are described above. - - @param eventName The name of the event to record. Limitations on number of events and name construction - are given in the `AppEvents` documentation. Common event names are provided in `AppEvents.Name` constants. - - @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must - be `NSString`s, and the values are expected to be `NSString` or `NSNumber`. Limitations on the number of - parameters and name construction are given in the `AppEvents` documentation. Commonly used parameter names - are provided in `AppEvents.ParameterName` constants. - */ -- (void)logEvent:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters; - -/** - Log an event with an event name, a numeric value to be aggregated with other events of this name, - and a set of key/value pairs in the parameters dictionary. - - @param eventName The name of the event to record. Limitations on number of events and name construction - are given in the `AppEvents` documentation. Common event names are provided in `AppEvents.Name` constants. - - @param valueToSum Amount to be aggregated into all events of this event name, and App Insights will report - the cumulative and average value of this amount. - - @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must - be `NSString`s, and the values are expected to be `NSString` or `NSNumber`. Limitations on the number of - parameters and name construction are given in the `AppEvents` documentation. Commonly used parameter names - are provided in `AppEvents.ParameterName` constants. - */ -- (void)logEvent:(FBSDKAppEventName)eventName - valueToSum:(double)valueToSum - parameters:(nullable NSDictionary *)parameters; - -/** - Log an event with an event name, a numeric value to be aggregated with other events of this name, - and a set of key/value pairs in the parameters dictionary. - - @param eventName The name of the event to record. Limitations on number of events and name construction - are given in the `AppEvents` documentation. Common event names are provided in `AppEvents.Name` constants. - - @param valueToSum Amount to be aggregated into all events of this eventName, and App Insights will report - the cumulative and average value of this amount. Note that this is an `NSNumber`, and a value of `nil` denotes - that this event doesn't have a value associated with it for summation. - - @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must - be `NSString`s, and the values are expected to be `NSString` or `NSNumber`. Limitations on the number of - parameters and name construction are given in the `AppEvents` documentation. Commonly used parameter names - are provided in `AppEvents.ParameterName` constants. - - @param accessToken The optional access token to log the event as. - */ -- (void)logEvent:(FBSDKAppEventName)eventName - valueToSum:(nullable NSNumber *)valueToSum - parameters:(nullable NSDictionary *)parameters - accessToken:(nullable FBSDKAccessToken *)accessToken; - -/* - * Purchase logging - */ - -/** - Log a purchase of the specified amount, in the specified currency. - - @param purchaseAmount Purchase amount to be logged, as expressed in the specified currency. This value - will be rounded to the thousandths place (e.g., 12.34567 becomes 12.346). - - @param currency Currency string (e.g., "USD", "EUR", "GBP"); see ISO-4217 for - specific values. One reference for these is . - - This event immediately triggers a flush of the `AppEvents` event queue, unless the `flushBehavior` is set - to `FBSDKAppEventsFlushBehaviorExplicitOnly`. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)logPurchase:(double)purchaseAmount currency:(NSString *)currency - NS_SWIFT_NAME(logPurchase(amount:currency:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Log a purchase of the specified amount, in the specified currency, also providing a set of - additional characteristics describing the purchase. - - @param purchaseAmount Purchase amount to be logged, as expressed in the specified currency.This value - will be rounded to the thousandths place (e.g., 12.34567 becomes 12.346). - - @param currency Currency string (e.g., "USD", "EUR", "GBP"); see ISO-4217 for - specific values. One reference for these is . - - @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must - be `NSString`s, and the values are expected to be `NSString` or `NSNumber`. Limitations on the number of - parameters and name construction are given in the `AppEvents` documentation. Commonly used parameter names - are provided in `AppEvents.ParameterName` constants. - - This event immediately triggers a flush of the `AppEvents` event queue, unless the `flushBehavior` is set - to `FBSDKAppEventsFlushBehaviorExplicitOnly`. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)logPurchase:(double)purchaseAmount - currency:(NSString *)currency - parameters:(nullable NSDictionary *)parameters - NS_SWIFT_NAME(logPurchase(amount:currency:parameters:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Log a purchase of the specified amount, in the specified currency, also providing a set of - additional characteristics describing the purchase. - - @param purchaseAmount Purchase amount to be logged, as expressed in the specified currency.This value - will be rounded to the thousandths place (e.g., 12.34567 becomes 12.346). - - @param currency Currency string (e.g., "USD", "EUR", "GBP"); see ISO-4217 for - specific values. One reference for these is . - - @param parameters Arbitrary parameter dictionary of characteristics. The keys to this dictionary must - be `NSString`s, and the values are expected to be `NSString` or `NSNumber`. Limitations on the number of - parameters and name construction are given in the `AppEvents` documentation. Commonly used parameter names - are provided in `AppEvents.ParameterName` constants. - - @param accessToken The optional access token to log the event as. - - This event immediately triggers a flush of the `AppEvents` event queue, unless the `flushBehavior` is set - to `FBSDKAppEventsFlushBehaviorExplicitOnly`. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)logPurchase:(double)purchaseAmount - currency:(NSString *)currency - parameters:(nullable NSDictionary *)parameters - accessToken:(nullable FBSDKAccessToken *)accessToken - NS_SWIFT_NAME(logPurchase(amount:currency:parameters:accessToken:)); -// UNCRUSTIFY_FORMAT_ON - -/* - * Push Notifications Logging - */ - -/** - Log an app event that tracks that the application was open via Push Notification. - - @param payload Notification payload received via `UIApplicationDelegate`. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)logPushNotificationOpen:(NSDictionary *)payload - NS_SWIFT_NAME(logPushNotificationOpen(payload:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Log an app event that tracks that a custom action was taken from a push notification. - - @param payload Notification payload received via `UIApplicationDelegate`. - @param action Name of the action that was taken. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)logPushNotificationOpen:(NSDictionary *)payload action:(NSString *)action - NS_SWIFT_NAME(logPushNotificationOpen(payload:action:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Uploads product catalog product item as an app event - - @param itemID Unique ID for the item. Can be a variant for a product. - Max size is 100. - @param availability If item is in stock. Accepted values are: - in stock - Item ships immediately - out of stock - No plan to restock - preorder - Available in future - available for order - Ships in 1-2 weeks - discontinued - Discontinued - @param condition Product condition: new, refurbished or used. - @param description Short text describing product. Max size is 5000. - @param imageLink Link to item image used in ad. - @param link Link to merchant's site where someone can buy the item. - @param title Title of item. - @param priceAmount Amount of purchase, in the currency specified by the 'currency' - parameter. This value will be rounded to the thousandths place - (e.g., 12.34567 becomes 12.346). - @param currency Currency string (e.g., "USD", "EUR", "GBP"); see ISO-4217 for - specific values. One reference for these is . - @param gtin Global Trade Item Number including UPC, EAN, JAN and ISBN - @param mpn Unique manufacture ID for product - @param brand Name of the brand - Note: Either gtin, mpn or brand is required. - @param parameters Optional fields for deep link specification. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)logProductItem:(NSString *)itemID - availability:(FBSDKProductAvailability)availability - condition:(FBSDKProductCondition)condition - description:(NSString *)description - imageLink:(NSString *)imageLink - link:(NSString *)link - title:(NSString *)title - priceAmount:(double)priceAmount - currency:(NSString *)currency - gtin:(nullable NSString *)gtin - mpn:(nullable NSString *)mpn - brand:(nullable NSString *)brand - parameters:(nullable NSDictionary *)parameters - NS_SWIFT_NAME(logProductItem(id:availability:condition:description:imageLink:link:title:priceAmount:currency:gtin:mpn:brand:parameters:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Notifies the events system that the app has launched and, when appropriate, logs an "activated app" event. - This function is called automatically from FBSDKApplicationDelegate applicationDidBecomeActive, unless - one overrides 'FacebookAutoLogAppEventsEnabled' key to false in the project info plist file. - In case 'FacebookAutoLogAppEventsEnabled' is set to false, then it should typically be placed in the - app delegates' `applicationDidBecomeActive:` method. - - This method also takes care of logging the event indicating the first time this app has been launched, which, among other things, is used to - track user acquisition and app install ads conversions. - - `activateApp` will not log an event on every app launch, since launches happen every time the app is backgrounded and then foregrounded. - "activated app" events will be logged when the app has not been active for more than 60 seconds. This method also causes a "deactivated app" - event to be logged when sessions are "completed", and these events are logged with the session length, with an indication of how much - time has elapsed between sessions, and with the number of background/foreground interruptions that session had. This data - is all visible in your app's App Events Insights. - */ -- (void)activateApp; - -/* - * Push Notifications Registration and Uninstall Tracking - */ - -/** - Sets and sends device token to register the current application for push notifications. - - Sets and sends a device token from the `Data` representation that you get from - `UIApplicationDelegate.application(_:didRegisterForRemoteNotificationsWithDeviceToken:)`. - - @param deviceToken Device token data. - */ -- (void)setPushNotificationsDeviceToken:(nullable NSData *)deviceToken; - -/** - Sets and sends device token string to register the current application for push notifications. - - Sets and sends a device token string - - @param deviceTokenString Device token string. - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)setPushNotificationsDeviceTokenString:(nullable NSString *)deviceTokenString -NS_SWIFT_NAME(setPushNotificationsDeviceToken(_:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Explicitly kick off flushing of events to Facebook. This is an asynchronous method, but it does initiate an immediate - kick off. Server failures will be reported through the NotificationCenter with notification ID `FBSDKAppEventsLoggingResultNotification`. - */ -- (void)flush; - -/** - Creates a request representing the Graph API call to retrieve a Custom Audience "third party ID" for the app's Facebook user. - Callers will send this ID back to their own servers, collect up a set to create a Facebook Custom Audience with, - and then use the resultant Custom Audience to target ads. - - The JSON in the request's response will include a "custom_audience_third_party_id" key/value pair with the value being the ID retrieved. - This ID is an encrypted encoding of the Facebook user's ID and the invoking Facebook app ID. - Multiple calls with the same user will return different IDs, thus these IDs cannot be used to correlate behavior - across devices or applications, and are only meaningful when sent back to Facebook for creating Custom Audiences. - - The ID retrieved represents the Facebook user identified in the following way: if the specified access token is valid, - the ID will represent the user associated with that token; otherwise the ID will represent the user logged into the - native Facebook app on the device. If there is no native Facebook app, no one is logged into it, or the user has opted out - at the iOS level from ad tracking, then a `nil` ID will be returned. - - This method returns `nil` if either the user has opted-out (via iOS) from Ad Tracking, the app itself has limited event usage - via the `Settings.shared.isEventDataUsageLimited` flag, or a specific Facebook user cannot be identified. - - @param accessToken The access token to use to establish the user's identity for users logged into Facebook through this app. - If `nil`, then `AccessToken.current` is used. - */ -// UNCRUSTIFY_FORMAT_OFF -- (nullable FBSDKGraphRequest *)requestForCustomAudienceThirdPartyIDWithAccessToken:(nullable FBSDKAccessToken *)accessToken -NS_SWIFT_NAME(requestForCustomAudienceThirdPartyID(accessToken:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Sets custom user data to associate with all app events. All user data are hashed - and used to match Facebook user from this instance of an application. - - The user data will be persisted between application instances. - - @param email user's email - @param firstName user's first name - @param lastName user's last name - @param phone user's phone - @param dateOfBirth user's date of birth - @param gender user's gender - @param city user's city - @param state user's state - @param zip user's zip - @param country user's country - */ - -// UNCRUSTIFY_FORMAT_OFF -- (void)setUserEmail:(nullable NSString *)email - firstName:(nullable NSString *)firstName - lastName:(nullable NSString *)lastName - phone:(nullable NSString *)phone - dateOfBirth:(nullable NSString *)dateOfBirth - gender:(nullable NSString *)gender - city:(nullable NSString *)city - state:(nullable NSString *)state - zip:(nullable NSString *)zip - country:(nullable NSString *)country -NS_SWIFT_NAME(setUser(email:firstName:lastName:phone:dateOfBirth:gender:city:state:zip:country:)); -// UNCRUSTIFY_FORMAT_ON - -/// Returns the set user data else nil -- (nullable NSString *)getUserData; - -/// Clears the current user data -- (void)clearUserData; - -/** - Sets custom user data to associate with all app events. All user data are hashed - and used to match Facebook user from this instance of an application. - - The user data will be persisted between application instances. - - @param data data - @param type data type, e.g. FBSDKAppEventEmail, FBSDKAppEventPhone - */ -- (void)setUserData:(nullable NSString *)data - forType:(FBSDKAppEventUserDataType)type; - -/// Clears the current user data of certain type -- (void)clearUserDataForType:(FBSDKAppEventUserDataType)type; - -#if !TARGET_OS_TV -/** - Intended to be used as part of a hybrid webapp. - If you call this method, the FB SDK will inject a new JavaScript object into your webview. - If the FB Pixel is used within the webview, and references the app ID of this app, - then it will detect the presence of this injected JavaScript object - and pass Pixel events back to the FB SDK for logging using the AppEvents framework. - - @param webView The webview to augment with the additional JavaScript behavior - */ -- (void)augmentHybridWebView:(WKWebView *)webView; -#endif - -/* - * Unity helper functions - */ - -/** - Set whether Unity is already initialized. - - @param isUnityInitialized Whether Unity is initialized. - */ -- (void)setIsUnityInitialized:(BOOL)isUnityInitialized; - -/// Send event bindings to Unity -- (void)sendEventBindingsToUnity; - -/* - * SDK Specific Event Logging - * Do not call directly outside of the SDK itself. - */ - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)logInternalEvent:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters - isImplicitlyLogged:(BOOL)isImplicitlyLogged; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)logInternalEvent:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters - isImplicitlyLogged:(BOOL)isImplicitlyLogged - accessToken:(nullable FBSDKAccessToken *)accessToken; - -- (void)flushForReason:(FBSDKAppEventsFlushReason)flushReason; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguration.h deleted file mode 100644 index 0848a811..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguration.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsConfiguration) -@interface FBSDKAppEventsConfiguration : NSObject - -@property (nonatomic, readonly, assign) FBSDKAdvertisingTrackingStatus defaultATEStatus; -@property (nonatomic, readonly, assign) BOOL advertiserIDCollectionEnabled; -@property (nonatomic, readonly, assign) BOOL eventCollectionEnabled; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithJSON:(nullable NSDictionary *)dict; - -+ (instancetype)defaultConfiguration; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationManager.h deleted file mode 100644 index 7752943d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationManager.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -typedef void (^FBSDKAppEventsConfigurationManagerBlock)(void); -@protocol FBSDKDataPersisting; -@protocol FBSDKSettings; -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKGraphRequestConnectionFactory; -@protocol FBSDKAppEventsConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsConfigurationManager) -@interface FBSDKAppEventsConfigurationManager : NSObject - -@property (class, nonatomic, readonly) FBSDKAppEventsConfigurationManager *shared; - -@property (nonatomic, readonly) id cachedAppEventsConfiguration; - -#if !DEBUG -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; -#endif - -// UNCRUSTIFY_FORMAT_OFF -- (void) configureWithStore:(id)store - settings:(id)settings - graphRequestFactory:(id)graphRequestFactory - graphRequestConnectionFactory:(id)graphRequestConnectionFactory -NS_SWIFT_NAME(configure(store:settings:graphRequestFactory:graphRequestConnectionFactory:)); -// UNCRUSTIFY_FORMAT_ON - -- (void)loadAppEventsConfigurationWithBlock:(FBSDKAppEventsConfigurationManagerBlock)block; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProtocol.h deleted file mode 100644 index 95e5e0b8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProtocol.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsConfigurationProtocol) -@protocol FBSDKAppEventsConfiguration - -@property (nonatomic, readonly, assign) FBSDKAdvertisingTrackingStatus defaultATEStatus; -@property (nonatomic, readonly, assign) BOOL advertiserIDCollectionEnabled; -@property (nonatomic, readonly, assign) BOOL eventCollectionEnabled; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithJSON:(nullable NSDictionary *)dict; -+ (instancetype)defaultConfiguration; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProviding.h deleted file mode 100644 index 5ee4cfe8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfigurationProviding.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsConfigurationProvidingBlock) -typedef void (^FBSDKAppEventsConfigurationProvidingBlock)(void); - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKAppEventsConfiguration; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsConfigurationProviding) -@protocol FBSDKAppEventsConfigurationProviding - -@property (nonatomic, readonly) id cachedAppEventsConfiguration; - -- (void)loadAppEventsConfigurationWithBlock:(FBSDKAppEventsConfigurationProvidingBlock)block; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h deleted file mode 100644 index 7ecffa81..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsConfiguring.h +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKAEMReporter; -@protocol FBSDKGateKeeperManaging; -@protocol FBSDKAppEventsConfigurationProviding; -@protocol FBSDKSourceApplicationTracking; -@protocol FBSDKServerConfigurationProviding; -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKFeatureChecking; -@protocol FBSDKDataPersisting; -@protocol FBSDKInternalUtility; -@protocol FBSDKLogging; -@protocol FBSDKSettings; -@protocol FBSDKPaymentObserving; -@protocol FBSDKTimeSpentRecording; -@protocol FBSDKAppEventsStatePersisting; -@protocol FBSDKAppEventsParameterProcessing; -@protocol FBSDKAppEventsParameterProcessing; -@protocol FBSDKATEPublisherCreating; -@protocol FBSDKAppEventsStateProviding; -@protocol FBSDKAdvertiserIDProviding; -@protocol FBSDKUserDataPersisting; -@protocol FBSDKLoggingNotifying; -@protocol FBSDKAppEventsUtility; -@protocol FBSDKAppEventDropDetermining; -@protocol FBSDKCAPIReporter; -@protocol FBSDKAppEventParametersExtracting; - -#if !TARGET_OS_TV -@protocol FBSDKEventProcessing; -@protocol FBSDKMetadataIndexing; -@protocol FBSDKAppEventsReporter; -@protocol FBSDKCodelessIndexing; -@protocol FBSDKSwizzling; -#endif - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsConfiguring) -@protocol FBSDKAppEventsConfiguring - -- (void) configureWithGateKeeperManager:(Class)gateKeeperManager - appEventsConfigurationProvider:(id)appEventsConfigurationProvider - serverConfigurationProvider:(id)serverConfigurationProvider - graphRequestFactory:(id)graphRequestFactory - featureChecker:(id)featureChecker - primaryDataStore:(id)primaryDataStore - logger:(Class)logger - settings:(id)settings - paymentObserver:(id)paymentObserver - timeSpentRecorder:(id)timeSpentRecorder - appEventsStateStore:(id)appEventsStateStore - eventDeactivationParameterProcessor:(id)eventDeactivationParameterProcessor - restrictiveDataFilterParameterProcessor:(id)restrictiveDataFilterParameterProcessor - atePublisherFactory:(id)atePublisherFactory - appEventsStateProvider:(id)appEventsStateProvider - advertiserIDProvider:(id)advertiserIDProvider - userDataStore:(id)userDataStore - appEventsUtility:(id)appEventsUtility - internalUtility:(id)internalUtility - capiReporter:(id)capiReporter -NS_SWIFT_NAME(configure(gateKeeperManager:appEventsConfigurationProvider:serverConfigurationProvider:graphRequestFactory:featureChecker:primaryDataStore:logger:settings:paymentObserver:timeSpentRecorder:appEventsStateStore:eventDeactivationParameterProcessor:restrictiveDataFilterParameterProcessor:atePublisherFactory:appEventsStateProvider:advertiserIDProvider:userDataStore:appEventsUtility:internalUtility:capiReporter:)); - -#if !TARGET_OS_TV - -// UNCRUSTIFY_FORMAT_OFF -- (void)configureNonTVComponentsWithOnDeviceMLModelManager:(id)modelManager - metadataIndexer:(id)metadataIndexer - skAdNetworkReporter:(nullable id)skAdNetworkReporter - codelessIndexer:(Class)codelessIndexer - swizzler:(Class)swizzler - aemReporter:(Class)aemReporter -NS_SWIFT_NAME(configureNonTVComponents(onDeviceMLModelManager:metadataIndexer:skAdNetworkReporter:codelessIndexer:swizzler:aemReporter:)); -// UNCRUSTIFY_FORMAT_ON - -#endif - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushBehavior.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushBehavior.h deleted file mode 100644 index 872ef491..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushBehavior.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - NS_ENUM (NSUInteger, FBSDKAppEventsFlushBehavior) - - Specifies when `FBSDKAppEvents` sends log events to the server. - */ -typedef NS_ENUM(NSUInteger, FBSDKAppEventsFlushBehavior) { - /// Flush automatically: periodically (once a minute or every 100 logged events) and always at app reactivation. - FBSDKAppEventsFlushBehaviorAuto = 0, - - /** Only flush when the `flush` method is called. When an app is moved to background/terminated, the - events are persisted and re-established at activation, but they will only be written with an - explicit call to `flush`. */ - FBSDKAppEventsFlushBehaviorExplicitOnly, -} NS_SWIFT_NAME(AppEvents.FlushBehavior); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushReason.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushReason.h deleted file mode 100644 index b7677460..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsFlushReason.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -typedef NS_ENUM(NSUInteger, FBSDKAppEventsFlushReason) { - FBSDKAppEventsFlushReasonExplicit, - FBSDKAppEventsFlushReasonTimer, - FBSDKAppEventsFlushReasonSessionChange, - FBSDKAppEventsFlushReasonPersistedEvents, - FBSDKAppEventsFlushReasonEventThreshold, - FBSDKAppEventsFlushReasonEagerlyFlushingEvent, -} NS_SWIFT_NAME(AppEvents.FlushReason); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsNotificationName.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsNotificationName.h deleted file mode 100644 index 159e27d7..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsNotificationName.h +++ /dev/null @@ -1,13 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/// NSNotificationCenter name indicating a result of a failed log flush attempt. The posted object will be an NSError instance. -FOUNDATION_EXPORT NSNotificationName const FBSDKAppEventsLoggingResultNotification -NS_SWIFT_NAME(AppEventsLoggingResult); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsReporter.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsReporter.h deleted file mode 100644 index 720d8a68..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsReporter.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsReporter) -@protocol FBSDKAppEventsReporter - -- (void)enable; - -// UNCRUSTIFY_FORMAT_OFF -- (void)recordAndUpdateEvent:(NSString *)event - currency:(nullable NSString *)currency - value:(nullable NSNumber *)value - parameters:(nullable NSDictionary *)parameters -NS_SWIFT_NAME(recordAndUpdate(event:currency:value:parameters:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsState.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsState.h deleted file mode 100644 index 814ee30a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsState.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// this type is not thread safe. -NS_SWIFT_NAME(_AppEventsState) -@interface FBSDKAppEventsState : NSObject - -@property (class, nullable, nonatomic) NSArray> *eventProcessors; - -@property (nonatomic, readonly, copy) NSArray *> *events; -@property (nonatomic, readonly, assign) NSUInteger numSkipped; -@property (nonatomic, readonly, copy) NSString *tokenString; -@property (nonatomic, readonly, copy) NSString *appID; -@property (nonatomic, readonly, getter = areAllEventsImplicit) BOOL allEventsImplicit; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; -- (instancetype)initWithToken:(nullable NSString *)tokenString appID:(nullable NSString *)appID NS_DESIGNATED_INITIALIZER; - -- (void)addEvent:(NSDictionary *)eventDictionary isImplicit:(BOOL)isImplicit; -- (void)addEventsFromAppEventState:(FBSDKAppEventsState *)appEventsState; -- (BOOL)isCompatibleWithAppEventsState:(nullable FBSDKAppEventsState *)appEventsState; -- (BOOL)isCompatibleWithTokenString:(NSString *)tokenString appID:(NSString *)appID; -- (NSString *)JSONStringForEventsIncludingImplicitEvents:(BOOL)includeImplicitEvents; -- (NSString *)extractReceiptData; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateManager.h deleted file mode 100644 index 7df7c8f0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateManager.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -@class FBSDKAppEventsState; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsStateManager) -@interface FBSDKAppEventsStateManager : NSObject - -@property (class, nonatomic, readonly) FBSDKAppEventsStateManager *shared; - -- (void)clearPersistedAppEventsStates; - -// reads all saved event states, appends the param, and writes them all. -- (void)persistAppEventsData:(FBSDKAppEventsState *)appEventsState; - -// returns the array of saved app event states and deletes them. -- (NSArray *)retrievePersistedAppEventsStates; - -@end -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStatePersisting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStatePersisting.h deleted file mode 100644 index 0b398c0b..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStatePersisting.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@class FBSDKAppEventsState; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsStatePersisting) -@protocol FBSDKAppEventsStatePersisting - -- (void)clearPersistedAppEventsStates; -- (void)persistAppEventsData:(FBSDKAppEventsState *)appEventsState; -// patternlint-disable-next-line objc-headers-collection-generics -- (NSArray *)retrievePersistedAppEventsStates; // NSArray - -@end -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateProviding.h deleted file mode 100644 index 3a601647..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsStateProviding.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKAppEventsState; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsStateProviding) -@protocol FBSDKAppEventsStateProviding - -// UNCRUSTIFY_FORMAT_OFF -- (FBSDKAppEventsState *)createStateWithToken:(NSString *)tokenString appID:(NSString *)appID -NS_SWIFT_NAME(createState(tokenString:appID:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtility.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtility.h deleted file mode 100644 index cfb08c65..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtility.h +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsUtility) -@interface FBSDKAppEventsUtility : NSObject - -#if !DEBUG -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; -#endif - -@property (class, nonatomic) FBSDKAppEventsUtility *shared; -@property (nullable, nonatomic, readonly, copy) NSString *advertiserID; -@property (nonatomic, readonly) BOOL isDebugBuild; -@property (nonatomic, readonly) BOOL shouldDropAppEvents; -@property (nullable, nonatomic) id appEventsConfigurationProvider; -@property (nullable, nonatomic) id deviceInformationProvider; -@property (nullable, nonatomic) id settings; -@property (nullable, nonatomic) id internalUtility; -@property (nullable, nonatomic) id errorFactory; -@property (nullable, nonatomic) id dataStore; - -- (BOOL)isSensitiveUserData:(NSString *)text; -- (BOOL)isStandardEvent:(nullable NSString *)event; - -// UNCRUSTIFY_FORMAT_OFF -- (void)configureWithAppEventsConfigurationProvider:(id)appEventsConfigurationProvider - deviceInformationProvider:(id)deviceInformationProvider - settings:(id)settings - internalUtility:(id)internalUtility - errorFactory:(id)errorFactory - dataStore:(id)dataStore -NS_SWIFT_NAME(configure(appEventsConfigurationProvider:deviceInformationProvider:settings:internalUtility:errorFactory:dataStore:)); -// UNCRUSTIFY_FORMAT_ON - -#if DEBUG -- (void)reset; -#endif - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h deleted file mode 100644 index 7997c1d6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppEventsUtilityProtocol.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppEventsUtilityProtocol) -@protocol FBSDKAppEventsUtility - -@property (nonatomic, readonly) NSTimeInterval unixTimeNow; - -- (void)ensureOnMainThread:(NSString *)methodName className:(NSString *)className; -- (NSTimeInterval)convertToUnixTime:(nullable NSDate *)date; -- (BOOL)validateIdentifier:(nullable NSString *)identifier; -- (nullable NSString *)tokenStringToUseFor:(nullable FBSDKAccessToken *)token - loggingOverrideAppID:(nullable NSString *)loggingOverrideAppID; -- (NSString *)flushReasonToString:(FBSDKAppEventsFlushReason)flushReason; -- (void)saveCampaignIDs:(NSURL *)url; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkCreating.h deleted file mode 100644 index b18d5abe..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkCreating.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -@protocol FBSDKAppLink; -@protocol FBSDKAppLinkTarget; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkCreating) -@protocol FBSDKAppLinkCreating - -// UNCRUSTIFY_FORMAT_OFF -- (id)createAppLinkWithSourceURL:(nullable NSURL *)sourceURL - targets:(NSArray> *)targets - webURL:(nullable NSURL *)webURL - isBackToReferrer:(BOOL)isBackToReferrer -NS_SWIFT_NAME(createAppLink(sourceURL:targets:webURL:isBackToReferrer:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkEventPosting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkEventPosting.h deleted file mode 100644 index 838a4119..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkEventPosting.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkEventPosting) -@protocol FBSDKAppLinkEventPosting - -// UNCRUSTIFY_FORMAT_OFF -- (void)postNotificationForEventName:(NSString *)name - args:(NSDictionary *)args -NS_SWIFT_NAME(postNotification(eventName:arguments:)); - -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationBlock.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationBlock.h deleted file mode 100644 index e44d4317..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationBlock.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Describes the callback for appLinkFromURLInBackground. - @param navType the FBSDKAppLink representing the deferred App Link - @param error the error during the request, if any - */ -typedef void (^ FBSDKAppLinkNavigationBlock)(FBSDKAppLinkNavigationType navType, NSError *_Nullable error) -NS_SWIFT_NAME(AppLinkNavigationBlock); - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationType.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationType.h deleted file mode 100644 index f31d3def..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkNavigationType.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -/// The result of calling navigate on a FBSDKAppLinkNavigation -typedef NS_ENUM(NSInteger, FBSDKAppLinkNavigationType) { - /// Indicates that the navigation failed and no app was opened - FBSDKAppLinkNavigationTypeFailure, - /// Indicates that the navigation succeeded by opening the URL in the browser - FBSDKAppLinkNavigationTypeBrowser, - /// Indicates that the navigation succeeded by opening the URL in an app on the device - FBSDKAppLinkNavigationTypeApp, -} NS_SWIFT_NAME(AppLinkNavigationType); - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkProtocol.h deleted file mode 100644 index 0611332a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkProtocol.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@protocol FBSDKAppLinkTarget; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkProtocol) -@protocol FBSDKAppLink - -/// The URL from which this FBSDKAppLink was derived -@property (nullable, nonatomic, readonly, strong) NSURL *sourceURL; - -/** - The ordered list of targets applicable to this platform that will be used - for navigation. - */ -@property (nonatomic, readonly, copy) NSArray> *targets; - -/// The fallback web URL to use if no targets are installed on this device. -@property (nullable, nonatomic, readonly, strong) NSURL *webURL; - -/// return if this AppLink is to go back to referrer. -@property (nonatomic, readonly, getter = isBackToReferrer, assign) BOOL backToReferrer; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolverRequestBuilding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolverRequestBuilding.h deleted file mode 100644 index 5b5dad5f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolverRequestBuilding.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -#if !TARGET_OS_TV - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Protocol exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkResolverRequestBuilding) -@protocol FBSDKAppLinkResolverRequestBuilding - -- (id)requestForURLs:(NSArray *)urls; -- (nullable NSString *)getIdiomSpecificField; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolving.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolving.h deleted file mode 100644 index 41a9276d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolving.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKAppLink; - -/** - Describes the callback for appLinkFromURLInBackground. - @param appLink the FBSDKAppLink representing the deferred App Link - @param error the error during the request, if any - */ -typedef void (^ FBSDKAppLinkBlock)(FBSDKAppLink *_Nullable appLink, NSError *_Nullable error) -NS_SWIFT_NAME(AppLinkBlock); - -/** - Implement this protocol to provide an alternate strategy for resolving - App Links that may include pre-fetching, caching, or querying for App Link - data from an index provided by a service provider. - */ -NS_SWIFT_NAME(AppLinkResolving) -@protocol FBSDKAppLinkResolving - -/** - Asynchronously resolves App Link data for a given URL. - - @param url The URL to resolve into an App Link. - @param handler The completion block that will return an App Link for the given URL. - */ -- (void)appLinkFromURL:(NSURL *)url handler:(FBSDKAppLinkBlock)handler - NS_EXTENSION_UNAVAILABLE_IOS("Not available in app extension"); - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetCreating.h deleted file mode 100644 index 7f417174..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetCreating.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkTargetCreating) -@protocol FBSDKAppLinkTargetCreating - -// UNCRUSTIFY_FORMAT_OFF -- (id)createAppLinkTargetWithURL:(nullable NSURL *)url - appStoreId:(nullable NSString *)appStoreId - appName:(NSString *)appName -NS_SWIFT_NAME(createAppLinkTarget(url:appStoreId:appName:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetProtocol.h deleted file mode 100644 index 2bd5cd39..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTargetProtocol.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// A protocol to describe an AppLinkTarget -NS_SWIFT_NAME(AppLinkTargetProtocol) -@protocol FBSDKAppLinkTarget - -// UNCRUSTIFY_FORMAT_OFF -+ (instancetype)appLinkTargetWithURL:(nullable NSURL *)url - appStoreId:(nullable NSString *)appStoreId - appName:(NSString *)appName -NS_SWIFT_NAME(init(url:appStoreId:appName:)); -// UNCRUSTIFY_FORMAT_ON - -/// The URL prefix for this app link target -@property (nullable, nonatomic, readonly) NSURL *URL; - -/// The app ID for the app store -@property (nullable, nonatomic, readonly, copy) NSString *appStoreId; - -/// The name of the app -@property (nonatomic, readonly, copy) NSString *appName; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURL.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURL.h deleted file mode 100644 index 40763673..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURL.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkURLProtocol) -@protocol FBSDKAppLinkURL - -@property (nullable, nonatomic, readonly, strong) NSDictionary *appLinkExtras; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLCreating.h deleted file mode 100644 index ff993103..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLCreating.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@protocol FBSDKAppLinkURL; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppLinkURLCreating) -@protocol FBSDKAppLinkURLCreating - -- (id)createAppLinkURLWithURL:(NSURL *)url; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLKeys.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLKeys.h deleted file mode 100644 index 5250ac17..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkURLKeys.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -FOUNDATION_EXPORT NSString *const FBSDKAppLinkDataParameterName; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkTargetKeyName; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkUserAgentKeyName; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkExtrasKeyName; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkVersionKeyName; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkRefererAppLink; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkRefererAppName; -FOUNDATION_EXPORT NSString *const FBSDKAppLinkRefererUrl; - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h deleted file mode 100644 index 3f3c776d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkUtility.h +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@protocol FBSDKInfoDictionaryProviding; -@protocol FBSDKUserIDProviding; - -NS_ASSUME_NONNULL_BEGIN - -/** - Describes the callback for fetchDeferredAppLink. - @param url the url representing the deferred App Link - @param error the error during the request, if any - - The url may also have a fb_click_time_utc query parameter that - represents when the click occurred that caused the deferred App Link to be created. - */ -typedef void (^ FBSDKURLBlock)(NSURL *_Nullable url, NSError *_Nullable error) -NS_SWIFT_NAME(URLBlock); - -/// Class containing App Links related utility methods. -NS_SWIFT_NAME(AppLinkUtility) -@interface FBSDKAppLinkUtility : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Call this method from the main thread to fetch deferred applink data if you use Mobile App - Engagement Ads (https://developers.facebook.com/docs/ads-for-apps/mobile-app-ads-engagement). - This may require a network round trip. If successful, the handler is invoked with the link - data (this will only return a valid URL once, and future calls will result in a nil URL - value in the callback). - - @param handler the handler to be invoked if there is deferred App Link data - - The handler may contain an NSError instance to capture any errors. In the - common case where there simply was no app link data, the NSError instance will be nil. - - This method should only be called from a location that occurs after any launching URL has - been processed (e.g., you should call this method from your application delegate's - applicationDidBecomeActive:). - */ -+ (void)fetchDeferredAppLink:(nullable FBSDKURLBlock)handler; - -/** - Call this method to fetch promotion code from the url, if it's present. - - @param url App Link url that was passed to the app. - - @return Promotion code string. - - Call this method to fetch App Invite Promotion Code from applink if present. - This can be used to fetch the promotion code that was associated with the invite when it - was created. This method should be called with the url from the openURL method. - */ -+ (nullable NSString *)appInvitePromotionCodeFromURL:(NSURL *)url; - -/** - Check whether the scheme is defined in the app's URL schemes. - @param scheme the scheme of App Link URL - @return YES if the scheme is defined, otherwise NO. - */ -+ (BOOL)isMatchURLScheme:(NSString *)scheme; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// UNCRUSTIFY_FORMAT_OFF -+ (void)configureWithGraphRequestFactory:(id)graphRequestFactory - infoDictionaryProvider:(id)infoDictionaryProvider - settings:(id)settings - appEventsConfigurationProvider:(id)appEventsConfigurationProvider - advertiserIDProvider:(id)advertiserIDProvider - appEventsDropDeterminer:(id)appEventsDropDeterminer - appEventParametersExtractor:(id)appEventParametersExtractor - appLinkURLFactory:(id)appLinkURLFactory - userIDProvider:(id)userIDProvider - userDataStore:(id)userDataStore -NS_SWIFT_NAME(configure(graphRequestFactory:infoDictionaryProvider:settings:appEventsConfigurationProvider:advertiserIDProvider:appEventsDropDeterminer:appEventParametersExtractor:appLinkURLFactory:userIDProvider:userDataStore:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkVersion.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkVersion.h deleted file mode 100644 index 67f3cfe9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinkVersion.h +++ /dev/null @@ -1,18 +0,0 @@ - -/* -* Copyright (c) Meta Platforms, Inc. and affiliates. -* All rights reserved. -* -* This source code is licensed under the license found in the -* LICENSE file in the root directory of this source tree. -*/ - -#if !TARGET_OS_TV - -#import - -/// The version of the App Link protocol that this library supports -FOUNDATION_EXPORT NSString *const FBSDKAppLinkVersion -NS_SWIFT_NAME(AppLinkVersion); - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinksBlock.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinksBlock.h deleted file mode 100644 index 5e5686d8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppLinksBlock.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@class FBSDKAppLink; - -NS_ASSUME_NONNULL_BEGIN - -/** - Describes the callback for appLinkFromURLInBackground. - @param appLinks the FBSDKAppLinks representing the deferred App Links - @param error the error during the request, if any - */ -typedef void (^ FBSDKAppLinksBlock)(NSDictionary *appLinks, - NSError *_Nullable error) -NS_SWIFT_NAME(AppLinksBlock); - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppStoreReceiptProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppStoreReceiptProviding.h deleted file mode 100644 index 212988a6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppStoreReceiptProviding.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AppStoreReceiptProviding) -@protocol FBSDKAppStoreReceiptProviding - -@property (nullable, readonly, copy) NSURL *appStoreReceiptURL; - -@end - -/** - Internal type conformance to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@interface NSBundle () -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppURLSchemeProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppURLSchemeProviding.h deleted file mode 100644 index c8b39faa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAppURLSchemeProviding.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(AppURLSchemeProviding) -@protocol FBSDKAppURLSchemeProviding - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (nonatomic, readonly, copy) NSString *appURLScheme; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)validateURLSchemes; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationActivating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationActivating.h deleted file mode 100644 index 0f430dd8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationActivating.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ApplicationActivating) -@protocol FBSDKApplicationActivating - -- (void)activateApp; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleNotifications.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleNotifications.h deleted file mode 100644 index 1fa96a09..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleNotifications.h +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -extern NSNotificationName const FBSDKApplicationDidBecomeActiveNotification; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleObserving.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleObserving.h deleted file mode 100644 index e5818a96..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationLifecycleObserving.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ApplicationLifecycleObserving) -@protocol FBSDKApplicationLifecycleObserving - -- (void)startObservingApplicationLifecycleNotifications - NS_SWIFT_NAME(startObservingApplicationLifecycleNotifications()); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationObserving.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationObserving.h deleted file mode 100644 index 748e496a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationObserving.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/* - Describes any types that optionally responds to various lifecycle events - received by the system and propagated by `ApplicationDelegate`. - */ -@protocol FBSDKApplicationObserving - -@optional -- (void)applicationDidBecomeActive:(nullable UIApplication *)application; -- (void)applicationWillResignActive:(nullable UIApplication *)application; -- (void)applicationDidEnterBackground:(nullable UIApplication *)application; -- (BOOL) application:(UIApplication *)application - didFinishLaunchingWithOptions:(nullable NSDictionary *)launchOptions; - -- (BOOL)application:(UIApplication *)application - openURL:(NSURL *)url - sourceApplication:(nullable NSString *)sourceApplication - annotation:(nullable id)annotation; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationStateSetting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationStateSetting.h deleted file mode 100644 index 1646aef2..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKApplicationStateSetting.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ApplicationStateSetting) -@protocol FBSDKApplicationStateSetting - -- (void)setApplicationState:(UIApplicationState)state; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationStatusUtility.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationStatusUtility.h deleted file mode 100644 index 5ef5712d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationStatusUtility.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -/* FBSDKAuthenticationTokenStatusChecker_h */ - -#if !TARGET_OS_TV - -#import - -#import -#import -#import - -@protocol FBSDKProfileProviding; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AuthenticationStatusUtility) -@interface FBSDKAuthenticationStatusUtility : NSObject - -@property (class, nullable, nonatomic) Class profileSetter; -@property (class, nullable, nonatomic) id sessionDataTaskProvider; -@property (class, nullable, nonatomic) Class accessTokenWallet; -@property (class, nullable, nonatomic) Class authenticationTokenWallet; - -/// Sets dependencies. This must be called during SDK initialization. -+ (void)configureWithProfileSetter:(Class)profileSetter - sessionDataTaskProvider:(id)sessionDataTaskProvider - accessTokenWallet:(Class)accessTokenWallet - authenticationTokenWallet:(Class)authenticationWallet -NS_SWIFT_NAME(configure(profileSetter:sessionDataTaskProvider:accessTokenWallet:authenticationTokenWallet:)); - -/** - Fetches the latest authentication status from server. This will invalidate - the current user session if the returned status is not authorized. - */ -+ (void)checkAuthenticationStatus; - -#if DEBUG - -+ (void)resetClassDependencies; - -#endif - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationToken.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationToken.h deleted file mode 100644 index 344ebb5b..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationToken.h +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -@class FBSDKAuthenticationTokenClaims; -@protocol FBSDKTokenCaching; - -NS_ASSUME_NONNULL_BEGIN - -/// Represent an AuthenticationToken used for a login attempt -NS_SWIFT_NAME(AuthenticationToken) -@interface FBSDKAuthenticationToken : NSObject - -/** - Internal init method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (instancetype)initWithTokenString:(NSString *)tokenString - nonce:(NSString *)nonce - graphDomain:(NSString *)graphDomain; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - The "global" authentication token that represents the currently logged in user. - - The `currentAuthenticationToken` represents the authentication token of the - current user and can be used by a client to verify an authentication attempt. - */ -@property (class, nullable, nonatomic, copy) FBSDKAuthenticationToken *currentAuthenticationToken NS_SWIFT_NAME(current); - -/// The raw token string from the authentication response -@property (nonatomic, readonly, copy) NSString *tokenString; - -/// The nonce from the decoded authentication response -@property (nonatomic, readonly, copy) NSString *nonce; - -/// The graph domain where the user is authenticated. -@property (nonatomic, readonly, copy) NSString *graphDomain; - -/// Returns the claims encoded in the AuthenticationToken -- (nullable FBSDKAuthenticationTokenClaims *)claims; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (class, nullable, nonatomic, copy) id tokenCache; - -#pragma mark - Test methods - -#if DEBUG -- (instancetype)initWithTokenString:(NSString *)tokenString - nonce:(NSString *)nonce; -+ (void)resetCurrentAuthenticationTokenCache; -#endif - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationTokenProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationTokenProviding.h deleted file mode 100644 index c9a7fbef..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKAuthenticationTokenProviding.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -@class FBSDKAuthenticationToken; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_AuthenticationTokenProviding) -@protocol FBSDKAuthenticationTokenProviding - -@property (class, nullable, nonatomic, copy) FBSDKAuthenticationToken *currentAuthenticationToken NS_SWIFT_NAME(current); -@property (class, nullable, nonatomic, copy) id tokenCache; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocol.h deleted file mode 100644 index 8e51567a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocol.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -FOUNDATION_EXPORT NSString *const FBSDKBridgeAPIAppIDKey; -FOUNDATION_EXPORT NSString *const FBSDKBridgeAPISchemeSuffixKey; -FOUNDATION_EXPORT NSString *const FBSDKBridgeAPIVersionKey; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(BridgeAPIProtocol) -@protocol FBSDKBridgeAPIProtocol - -// UNCRUSTIFY_FORMAT_OFF -- (nullable NSURL *)requestURLWithActionID:(NSString *)actionID - scheme:(NSString *)scheme - methodName:(NSString *)methodName - parameters:(NSDictionary *)parameters - error:(NSError *_Nullable *)errorRef -NS_SWIFT_NAME(requestURL(actionID:scheme:methodName:parameters:)); -// UNCRUSTIFY_FORMAT_ON - -// UNCRUSTIFY_FORMAT_OFF -- (nullable NSDictionary *)responseParametersForActionID:(NSString *)actionID - queryParameters:(NSDictionary *)queryParameters - cancelled:(nullable BOOL *)cancelledRef - error:(NSError *_Nullable *)errorRef -NS_SWIFT_NAME(responseParameters(actionID:queryParameters:cancelled:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocolType.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocolType.h deleted file mode 100644 index 7f866232..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIProtocolType.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef NS_ENUM(NSUInteger, FBSDKBridgeAPIProtocolType) { - FBSDKBridgeAPIProtocolTypeNative, - FBSDKBridgeAPIProtocolTypeWeb, -}; - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h deleted file mode 100644 index 2c32e9c3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequest.h +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -#import -#import -#import -#import - -@protocol FBSDKInternalURLOpener; -@protocol FBSDKInternalUtility; -@protocol FBSDKSettings; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_BridgeAPIRequest) -@interface FBSDKBridgeAPIRequest : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; -+ (nullable instancetype)bridgeAPIRequestWithProtocolType:(FBSDKBridgeAPIProtocolType)protocolType - scheme:(FBSDKURLScheme)scheme - methodName:(nullable NSString *)methodName - parameters:(nullable NSDictionary *)parameters - userInfo:(nullable NSDictionary *)userInfo; - -@property (nonatomic, readonly, copy) NSString *actionID; -@property (nullable, nonatomic, readonly, copy) NSString *methodName; -@property (nullable, nonatomic, readonly, copy) NSDictionary *parameters; -@property (nonatomic, readonly, assign) FBSDKBridgeAPIProtocolType protocolType; -@property (nonatomic, readonly, copy) FBSDKURLScheme scheme; -@property (nullable, nonatomic, readonly, copy) NSDictionary *userInfo; - -- (nullable NSURL *)requestURL:(NSError *_Nullable *)errorRef; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -+ (void)configureWithInternalURLOpener:(id)internalURLOpener - internalUtility:(id)internalUtility - settings:(id)settings -NS_SWIFT_NAME(configure(internalURLOpener:internalUtility:settings:)); - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestCreating.h deleted file mode 100644 index 5c76020d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestCreating.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -#import - -@protocol FBSDKBridgeAPIRequest; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(BridgeAPIRequestCreating) -@protocol FBSDKBridgeAPIRequestCreating - -- (nullable id)bridgeAPIRequestWithProtocolType:(FBSDKBridgeAPIProtocolType)protocolType - scheme:(NSString *)scheme - methodName:(nullable NSString *)methodName - parameters:(nullable NSDictionary *)parameters - userInfo:(nullable NSDictionary *)userInfo; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestOpening.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestOpening.h deleted file mode 100644 index 14eda8e2..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestOpening.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -#import -#import - -@protocol FBSDKBridgeAPIRequest; -@protocol FBSDKURLOpening; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(BridgeAPIRequestOpening) -@protocol FBSDKBridgeAPIRequestOpening - -- (void)openBridgeAPIRequest:(NSObject *)request - useSafariViewController:(BOOL)useSafariViewController - fromViewController:(nullable UIViewController *)fromViewController - completionBlock:(FBSDKBridgeAPIResponseBlock)completionBlock; - -// UNCRUSTIFY_FORMAT_OFF -- (void)openURLWithSafariViewController:(NSURL *)url - sender:(nullable id)sender - fromViewController:(nullable UIViewController *)fromViewController - handler:(FBSDKSuccessBlock)handler -NS_SWIFT_NAME(openURLWithSafariViewController(url:sender:from:handler:)); -// UNCRUSTIFY_FORMAT_ON - -- (void)openURL:(NSURL *)url - sender:(nullable id)sender - handler:(FBSDKSuccessBlock)handler; -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestProtocol.h deleted file mode 100644 index 4cdbd851..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIRequestProtocol.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -#import - -@protocol FBSDKBridgeAPIProtocol; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(BridgeAPIRequestProtocol) -@protocol FBSDKBridgeAPIRequest - -@property (nonatomic, readonly, copy) NSString *scheme; -@property (nonatomic, readonly, copy) NSString *actionID; -@property (nullable, nonatomic, readonly, copy) NSString *methodName; -@property (nonatomic, readonly, assign) FBSDKBridgeAPIProtocolType protocolType; -@property (nullable, nonatomic, readonly, strong) id protocol; - -- (nullable NSURL *)requestURL:(NSError *_Nullable *)errorRef; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIResponse.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIResponse.h deleted file mode 100644 index 1ccb94b9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKBridgeAPIResponse.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@protocol FBSDKBridgeAPIRequest; -@class FBSDKBridgeAPIResponse; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef void (^ FBSDKBridgeAPIResponseBlock)(FBSDKBridgeAPIResponse *response) -NS_SWIFT_NAME(BridgeAPIResponseBlock); - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(BridgeAPIResponse) -@interface FBSDKBridgeAPIResponse : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -+ (instancetype)bridgeAPIResponseWithRequest:(NSObject *)request - error:(nullable NSError *)error; -+ (nullable instancetype)bridgeAPIResponseWithRequest:(NSObject *)request - responseURL:(NSURL *)responseURL - sourceApplication:(nullable NSString *)sourceApplication - error:(NSError *__autoreleasing *)errorRef; -+ (instancetype)bridgeAPIResponseCancelledWithRequest:(NSObject *)request; - -@property (nonatomic, readonly, getter = isCancelled, assign) BOOL cancelled; -@property (nullable, nonatomic, readonly, copy) NSError *error; -@property (nonatomic, readonly, copy) NSObject *request; -@property (nullable, nonatomic, readonly, copy) NSDictionary *responseParameters; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKButton.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKButton.h deleted file mode 100644 index 3ab3b226..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKButton.h +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import -#import - -@class FBSDKIcon; -@protocol FBSDKEventLogging; - -NS_ASSUME_NONNULL_BEGIN - -/// A base class for common SDK buttons. -NS_SWIFT_NAME(FBButton) -@interface FBSDKButton : FBSDKImpressionLoggingButton - -@property (nonatomic, readonly, getter = isImplicitlyDisabled) BOOL implicitlyDisabled; - -- (void)checkImplicitlyDisabled; -- (void)configureWithIcon:(nullable FBSDKIcon *)icon - title:(nullable NSString *)title - backgroundColor:(nullable UIColor *)backgroundColor - highlightedColor:(nullable UIColor *)highlightedColor; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void) configureWithIcon:(nullable FBSDKIcon *)icon - title:(nullable NSString *)title - backgroundColor:(nullable UIColor *)backgroundColor - highlightedColor:(nullable UIColor *)highlightedColor - selectedTitle:(nullable NSString *)selectedTitle - selectedIcon:(nullable FBSDKIcon *)selectedIcon - selectedColor:(nullable UIColor *)selectedColor - selectedHighlightedColor:(nullable UIColor *)selectedHighlightedColor; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (UIColor *)defaultBackgroundColor; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (CGSize)sizeThatFits:(CGSize)size title:(NSString *)title; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (CGSize)textSizeForText:(NSString *)text font:(UIFont *)font constrainedSize:(CGSize)constrainedSize lineBreakMode:(NSLineBreakMode)lineBreakMode; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)logTapEventWithEventName:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -+ (void)configureWithApplicationActivationNotifier:(id)applicationActivationNotifier - eventLogger:(id)eventLogger - accessTokenProvider:(Class)accessTokenProvider -NS_SWIFT_NAME(configure(applicationActivationNotifier:eventLogger:accessTokenProvider:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKButtonImpressionLogging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKButtonImpressionLogging.h deleted file mode 100644 index 806edb40..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKButtonImpressionLogging.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(FBButtonImpressionLogging) -@protocol FBSDKButtonImpressionLogging - -@property (nullable, nonatomic, readonly, copy) NSDictionary *analyticsParameters; -@property (nonatomic, readonly, copy) FBSDKAppEventName impressionTrackingEventName; -@property (nonatomic, readonly, copy) NSString *impressionTrackingIdentifier; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKClientTokenProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKClientTokenProviding.h deleted file mode 100644 index cfa27c89..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKClientTokenProviding.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Protocol exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ClientTokenProviding) -@protocol FBSDKClientTokenProviding - -@property (nullable, nonatomic, readonly, copy) NSString *clientToken; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexer.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexer.h deleted file mode 100644 index 6fd4af98..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexer.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef void (^FBSDKCodelessSettingLoadBlock)(BOOL isCodelessSetupEnabled, NSError *_Nullable error); - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_CodelessIndexer) -@interface FBSDKCodelessIndexer : NSObject - -@property (class, nonatomic, readonly, copy) NSString *extInfo; - -+ (void)enable; - -// UNCRUSTIFY_FORMAT_OFF -+ (void)configureWithGraphRequestFactory:(id)graphRequestFactory - serverConfigurationProvider:(id)serverConfigurationProvider - dataStore:(id)dataStore - graphRequestConnectionFactory:(id)graphRequestConnectionFactory - swizzler:(Class)swizzler - settings:(id)settings - advertiserIDProvider:(id)advertisingIDProvider -NS_SWIFT_NAME(configure(graphRequestFactory:serverConfigurationProvider:dataStore:graphRequestConnectionFactory:swizzler:settings:advertiserIDProvider:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexing.h deleted file mode 100644 index 9917a243..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCodelessIndexing.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_CodelessIndexing) -@protocol FBSDKCodelessIndexing - -+ (void)enable; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKConstants.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKConstants.h deleted file mode 100644 index a319329f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKConstants.h +++ /dev/null @@ -1,214 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - The error domain for all errors from FBSDKCoreKit. - - Error codes from the SDK in the range 0-99 are reserved for this domain. - */ -FOUNDATION_EXPORT NSErrorDomain const FBSDKErrorDomain -NS_SWIFT_NAME(ErrorDomain); - -/* - @methodgroup error userInfo keys - */ - -/** - The userInfo key for the invalid collection for errors with FBSDKErrorInvalidArgument. - - If the invalid argument is a collection, the collection can be found with this key and the individual - invalid item can be found with FBSDKErrorArgumentValueKey. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorArgumentCollectionKey -NS_SWIFT_NAME(ErrorArgumentCollectionKey); - -/// The userInfo key for the invalid argument name for errors with FBSDKErrorInvalidArgument. -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorArgumentNameKey -NS_SWIFT_NAME(ErrorArgumentNameKey); - -/// The userInfo key for the invalid argument value for errors with FBSDKErrorInvalidArgument. -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorArgumentValueKey -NS_SWIFT_NAME(ErrorArgumentValueKey); - -/** - The userInfo key for the message for developers in NSErrors that originate from the SDK. - - The developer message will not be localized and is not intended to be presented within the app. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorDeveloperMessageKey -NS_SWIFT_NAME(ErrorDeveloperMessageKey); - -/// The userInfo key describing a localized description that can be presented to the user. -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorLocalizedDescriptionKey -NS_SWIFT_NAME(ErrorLocalizedDescriptionKey); - -/// The userInfo key describing a localized title that can be presented to the user, used with `FBSDKLocalizedErrorDescriptionKey`. -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKErrorLocalizedTitleKey -NS_SWIFT_NAME(ErrorLocalizedTitleKey); - -/* - @methodgroup FBSDKGraphRequest error userInfo keys - */ - -/** - The userInfo key describing the error category, for error recovery purposes. - - See `FBSDKGraphErrorRecoveryProcessor` and `[FBSDKGraphRequest disableErrorRecovery]`. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorKey -NS_SWIFT_NAME(GraphRequestErrorKey); - -/* - The userInfo key for the Graph API error code. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorGraphErrorCodeKey -NS_SWIFT_NAME(GraphRequestErrorGraphErrorCodeKey); - -/* - The userInfo key for the Graph API error subcode. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorGraphErrorSubcodeKey -NS_SWIFT_NAME(GraphRequestErrorGraphErrorSubcodeKey); - -/* - The userInfo key for the HTTP status code. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorHTTPStatusCodeKey -NS_SWIFT_NAME(GraphRequestErrorHTTPStatusCodeKey); - -/* - The userInfo key for the raw JSON response. - */ -FOUNDATION_EXPORT NSErrorUserInfoKey const FBSDKGraphRequestErrorParsedJSONResponseKey -NS_SWIFT_NAME(GraphRequestErrorParsedJSONResponseKey); - -/* - @methodgroup Common Code Block typedefs - */ - -/// Success Block -typedef void (^ FBSDKCodeBlock)(void) -NS_SWIFT_NAME(CodeBlock); - -/// Error Block -typedef void (^ FBSDKErrorBlock)(NSError *_Nullable error) -NS_SWIFT_NAME(ErrorBlock); - -/// Success Block -typedef void (^ FBSDKSuccessBlock)(BOOL success, NSError *_Nullable error) -NS_SWIFT_NAME(SuccessBlock); - -/* - @methodgroup Enums - */ - -#ifndef NS_ERROR_ENUM - #define NS_ERROR_ENUM(_domain, _name) \ - enum _name : NSInteger _name; \ - enum __attribute__((ns_error_domain(_domain))) _name: NSInteger -#endif - -/** - FBSDKCoreError - Error codes for FBSDKErrorDomain. - */ -typedef NS_ERROR_ENUM (FBSDKErrorDomain, FBSDKCoreError) -{ - /// Reserved. - FBSDKErrorReserved = 0, - - /// The error code for errors from invalid encryption on incoming encryption URLs. - FBSDKErrorEncryption, - - /// The error code for errors from invalid arguments to SDK methods. - FBSDKErrorInvalidArgument, - - /// The error code for unknown errors. - FBSDKErrorUnknown, - - /** - A request failed due to a network error. Use NSUnderlyingErrorKey to retrieve - the error object from the NSURLSession for more information. - */ - FBSDKErrorNetwork, - - /// The error code for errors encountered during an App Events flush. - FBSDKErrorAppEventsFlush, - - /** - An endpoint that returns a binary response was used with FBSDKGraphRequestConnection. - - Endpoints that return image/jpg, etc. should be accessed using NSURLRequest - */ - FBSDKErrorGraphRequestNonTextMimeTypeReturned, - - /** - The operation failed because the server returned an unexpected response. - - You can get this error if you are not using the most recent SDK, or you are accessing a version of the - Graph API incompatible with the current SDK. - */ - FBSDKErrorGraphRequestProtocolMismatch, - - /** - The Graph API returned an error. - - See below for useful userInfo keys (beginning with FBSDKGraphRequestError*) - */ - FBSDKErrorGraphRequestGraphAPI, - - /** - The specified dialog configuration is not available. - - This error may signify that the configuration for the dialogs has not yet been downloaded from the server - or that the dialog is unavailable. Subsequent attempts to use the dialog may succeed as the configuration is loaded. - */ - FBSDKErrorDialogUnavailable, - - /// Indicates an operation failed because a required access token was not found. - FBSDKErrorAccessTokenRequired, - - /// Indicates an app switch (typically for a dialog) failed because the destination app is out of date. - FBSDKErrorAppVersionUnsupported, - - /// Indicates an app switch to the browser (typically for a dialog) failed. - FBSDKErrorBrowserUnavailable, - - /// Indicates that a bridge api interaction was interrupted. - FBSDKErrorBridgeAPIInterruption, - - /// Indicates that a bridge api response creation failed. - FBSDKErrorBridgeAPIResponse, -} NS_SWIFT_NAME(CoreError); - -/** - FBSDKGraphRequestError - Describes the category of Facebook error. See `FBSDKGraphRequestErrorKey`. - */ -typedef NS_ENUM(NSUInteger, FBSDKGraphRequestError) { - /// The default error category that is not known to be recoverable. Check `FBSDKLocalizedErrorDescriptionKey` for a user facing message. - FBSDKGraphRequestErrorOther = 0, - /// Indicates the error is temporary (such as server throttling). While a recoveryAttempter will be provided with the error instance, the attempt is guaranteed to succeed so you can simply retry the operation if you do not want to present an alert. - FBSDKGraphRequestErrorTransient = 1, - /// Indicates the error can be recovered (such as requiring a login). A recoveryAttempter will be provided with the error instance that can take UI action. - FBSDKGraphRequestErrorRecoverable = 2, -} NS_SWIFT_NAME(GraphRequestError); - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT NSString *const DefaultKeychainServicePrefix; - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKContainerViewController.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKContainerViewController.h deleted file mode 100644 index 6dcb6496..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKContainerViewController.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKContainerViewController; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ContainerViewControllerDelegate) -@protocol FBSDKContainerViewControllerDelegate - -- (void)viewControllerDidDisappear:(FBSDKContainerViewController *)viewController animated:(BOOL)animated; - -@end - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ContainerViewController) -@interface FBSDKContainerViewController : UIViewController - -@property (nullable, nonatomic, weak) id delegate; - -- (void)displayChildController:(UIViewController *)childController; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKConversionValueUpdating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKConversionValueUpdating.h deleted file mode 100644 index 4c3814d9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKConversionValueUpdating.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ConversionValueUpdating) -@protocol FBSDKConversionValueUpdating - -+ (void)updateConversionValue:(NSInteger)conversionValue; - -@end - -/** - Internal conformance exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@interface SKAdNetwork (ConversionValueUpdating) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h deleted file mode 100644 index 4aa319d9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKit-Swift.h +++ /dev/null @@ -1,1488 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef FBSDKCOREKIT_SWIFT_H -#define FBSDKCOREKIT_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import CoreGraphics; -@import Foundation; -@import ObjectiveC; -@import StoreKit; -@import UIKit; -#endif - -#import - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBSDKCoreKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - -@class UIApplication; -@class NSUserActivity; -@class NSURL; -@class NSString; -@protocol FBSDKApplicationObserving; - -/// An ApplicationDelegate is designed to post-process the results from Facebook Login -/// or Facebook Dialogs (or any action that requires switching over to the native Facebook -/// app or Safari). -/// The methods in this class are designed to mirror those in UIApplicationDelegate, and you -/// should call them in the respective methods in your application delegate implementation. -SWIFT_CLASS_NAMED("ApplicationDelegate") -@interface FBSDKApplicationDelegate : NSObject -/// Gets the singleton instance. -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKApplicationDelegate * _Nonnull sharedInstance;) -+ (FBSDKApplicationDelegate * _Nonnull)sharedInstance SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -/// Initializes the SDK. -/// If you are using the SDK within the context of the UIApplication lifecycle, do not use this method. -/// Instead use application(_:didFinishLaunchingWithOptions:). -/// As part of SDK initialization, basic auto logging of app events will occur, this can be -/// controlled via the ‘FacebookAutoLogAppEventsEnabled’ key in your project’s Info.plist file. -- (void)initializeSDK; -/// Call this method from the UIApplicationDelegate.application(_:continue:restorationHandler:) method -/// of your application delegate. It should be invoked in order to properly process the web URL (universal link) -/// once the end user is redirected to your app. -/// \param application The application as passed to `UIApplicationDelegate.application(_:continue:restorationHandler:). -/// -/// \param userActivity The user activity as passed to UIApplicationDelegate.application(_:continue:restorationHandler:). -/// -/// -/// returns: -/// true if the URL was intended for the Facebook SDK, false if not. -- (BOOL)application:(UIApplication * _Nonnull)application continueUserActivity:(NSUserActivity * _Nonnull)userActivity; -/// Call this method from the UIApplicationDelegate.application(_:open:options:) method -/// of your application delegate. It should be invoked for the proper processing of responses during interaction -/// with the native Facebook app or Safari as part of an SSO authorization flow or Facebook dialogs. -/// \param application The application as passed to UIApplicationDelegate.application(_:open:options:). -/// -/// \param url The URL as passed to UIApplicationDelegate.application(_:open:options:). -/// -/// \param options The options dictionary as passed to UIApplicationDelegate.application(_:open:options:). -/// -/// -/// returns: -/// true if the URL was intended for the Facebook SDK, false if not. -- (BOOL)application:(UIApplication * _Nonnull)application openURL:(NSURL * _Nonnull)url options:(NSDictionary * _Nonnull)options; -/// Call this method from the UIApplicationDelegate.application(_:openL:sourceApplication:annotation:) method -/// of your application delegate. It should be invoked for the proper processing of responses during interaction -/// with the native Facebook app or Safari as part of an SSO authorization flow or Facebook dialogs. -/// \param application The application as passed to UIApplicationDelegate.application(_:open:sourceApplication:annotation:). -/// -/// \param url The URL as passed to UIApplicationDelegate.application(_:open:sourceApplication:annotation:). -/// -/// \param sourceApplication The source application as passed to UIApplicationDelegate.application(_:open:sourceApplication:annotation:). -/// -/// \param annotation The annotation as passed to UIApplicationDelegate.application(_:open:sourceApplication:annotation:). -/// -/// -/// returns: -/// true if the URL was intended for the Facebook SDK, false if not. -- (BOOL)application:(UIApplication * _Nonnull)application openURL:(NSURL * _Nonnull)url sourceApplication:(NSString * _Nullable)sourceApplication annotation:(id _Nullable)annotation; -/// Call this method from the UIApplicationDelegate.application(_:didFinishLaunchingWithOptions:) method -/// of your application delegate. It should be invoked for the proper use of the Facebook SDK. -/// As part of SDK initialization, basic auto-logging of app events will occur; this can be -/// controlled via the FacebookAutoLogAppEventsEnabled key in the project’s Info.plist file. -/// note: -/// If this method is called after calling initializeSDK, then the return value will always be false. -/// \param application The application as passed to UIApplicationDelegate.application(_:didFinishLaunchingWithOptions:). -/// -/// \param launchOptions The launch options as passed to UIApplicationDelegate.application(_:didFinishLaunchingWithOptions:). -/// -/// -/// returns: -/// true if there are any added application observers that themselves return true from calling application(_:didFinishLaunchingWithOptions:). -/// Otherwise will return false. -- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions; -/// Adds an observer that will be informed about application lifecycle events. -/// note: -/// Observers are weakly held -- (void)addObserver:(id _Nonnull)observer; -/// Removes an observer so that it will no longer be informed about application lifecycle events. -- (void)removeObserver:(id _Nonnull)observer; -@end - - -SWIFT_CLASS_NAMED("AuthenticationTokenClaims") -@interface FBSDKAuthenticationTokenClaims : NSObject -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (nullable instancetype)initWithEncodedClaims:(NSString * _Nonnull)encodedClaims nonce:(NSString * _Nonnull)expectedNonce; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKSettings; - -SWIFT_PROTOCOL_NAMED("CAPIReporter") -@protocol FBSDKCAPIReporter -- (void)enable; -- (void)configureWithFactory:(id _Nonnull)factory settings:(id _Nonnull)settings; -- (void)recordEvent:(NSDictionary * _Nonnull)parameters; -@end - -@class UIImage; -@class UIColor; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("FBIcon") -@interface FBSDKIcon : NSObject -- (CGPathRef _Nullable)pathWith:(CGSize)size SWIFT_WARN_UNUSED_RESULT; -- (UIImage * _Nullable)imageWithSize:(CGSize)size SWIFT_WARN_UNUSED_RESULT; -- (UIImage * _Nullable)imageWithSize:(CGSize)size color:(UIColor * _Nonnull)color SWIFT_WARN_UNUSED_RESULT; -- (UIImage * _Nullable)imageWithSize:(CGSize)size scale:(CGFloat)scale color:(UIColor * _Nonnull)color SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS("_TtC12FBSDKCoreKit25FBSDKAppEventsCAPIManager") -@interface FBSDKAppEventsCAPIManager : NSObject -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKAppEventsCAPIManager * _Nonnull shared;) -+ (FBSDKAppEventsCAPIManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)configureWithFactory:(id _Nonnull)factory settings:(id _Nonnull)settings; -- (void)enable; -- (void)recordEvent:(NSDictionary * _Nonnull)parameters; -@end - - -SWIFT_CLASS("_TtC12FBSDKCoreKit35FBSDKTransformerGraphRequestFactory") -@interface FBSDKTransformerGraphRequestFactory : NSObject -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKTransformerGraphRequestFactory * _Nonnull shared;) -+ (FBSDKTransformerGraphRequestFactory * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)configureWithDatasetID:(NSString * _Nonnull)datasetID url:(NSString * _Nonnull)url accessKey:(NSString * _Nonnull)accessKey; -- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters; -@end - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS("_TtC12FBSDKCoreKit27ServerConfigurationProvider") -@interface ServerConfigurationProvider : NSObject -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class NSDate; - -/// Internal type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_PROTOCOL_NAMED("SettingsProtocol") -@protocol FBSDKSettings -@property (nonatomic, copy) NSString * _Nullable appID; -@property (nonatomic, copy) NSString * _Nullable clientToken; -@property (nonatomic, copy) NSString * _Nullable userAgentSuffix; -@property (nonatomic, readonly, copy) NSString * _Nonnull sdkVersion; -@property (nonatomic, copy) NSString * _Nullable displayName; -@property (nonatomic, copy) NSString * _Nullable facebookDomainPart; -@property (nonatomic, copy) NSSet * _Nonnull loggingBehaviors; -@property (nonatomic, copy) NSString * _Nullable appURLSchemeSuffix; -@property (nonatomic, readonly) BOOL isDataProcessingRestricted; -@property (nonatomic, readonly) BOOL isAutoLogAppEventsEnabled; -@property (nonatomic) BOOL codelessDebugLogEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.\n "); -@property (nonatomic) BOOL isCodelessDebugLogEnabled; -@property (nonatomic) BOOL advertiserIDCollectionEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.\n "); -@property (nonatomic) BOOL isAdvertiserIDCollectionEnabled; -@property (nonatomic, readonly) BOOL isSetATETimeExceedsInstallTime SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.\n "); -@property (nonatomic, readonly) BOOL isATETimeSufficientlyDelayed; -@property (nonatomic, readonly) BOOL isSKAdNetworkReportEnabled; -@property (nonatomic, readonly) FBSDKAdvertisingTrackingStatus advertisingTrackingStatus; -@property (nonatomic, readonly, copy) NSDate * _Nullable installTimestamp; -@property (nonatomic, readonly, copy) NSDate * _Nullable advertiserTrackingEnabledTimestamp; -@property (nonatomic) BOOL isEventDataUsageLimited; -@property (nonatomic) BOOL shouldUseTokenOptimizations; -@property (nonatomic, copy) NSString * _Nonnull graphAPIVersion; -@property (nonatomic) BOOL isGraphErrorRecoveryEnabled; -@property (nonatomic, readonly, copy) NSString * _Nullable graphAPIDebugParamValue SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.\n "); -@property (nonatomic, readonly, copy) NSString * _Nullable graphAPIDebugParameterValue; -@property (nonatomic) BOOL advertiserTrackingEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.\n "); -@property (nonatomic) BOOL isAdvertiserTrackingEnabled; -@property (nonatomic) BOOL shouldUseCachedValuesForExpensiveMetadata; -@property (nonatomic, readonly, copy) NSDictionary * _Nullable persistableDataProcessingOptions; -/// Sets the data processing options. -/// \param options The list of options. -/// -- (void)setDataProcessingOptions:(NSArray * _Nullable)options; -/// Sets the data processing options. -/// \param options The list of the options. -/// -/// \param country The code for the country. -/// -/// \param state The code for the state. -/// -- (void)setDataProcessingOptions:(NSArray * _Nullable)options country:(int32_t)country state:(int32_t)state; -@end - - -SWIFT_CLASS_NAMED("Settings") -@interface FBSDKSettings : NSObject -/// The shared settings instance. Prefer this and the exposed instance methods over the type properties and methods. -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKSettings * _Nonnull sharedSettings;) -+ (FBSDKSettings * _Nonnull)sharedSettings SWIFT_WARN_UNUSED_RESULT; -/// The Facebook SDK version in use. -@property (nonatomic, readonly, copy) NSString * _Nonnull sdkVersion; -/// The default Graph API version. -@property (nonatomic, readonly, copy) NSString * _Nonnull defaultGraphAPIVersion; -/// The quality of JPEG images sent to Facebook from the SDK expressed as a value from 0.0 to 1.0. -/// The default value is 0.9. -@property (nonatomic) CGFloat JPEGCompressionQuality; -/// Controls the automatic logging of basic app events such as activateApp and deactivateApp. -/// The default value is true. -@property (nonatomic) BOOL autoLogAppEventsEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAutoLogAppEventsEnabled` instead.\n "); -/// Controls the automatic logging of basic app events such as activateApp and deactivateApp. -/// The default value is true. -@property (nonatomic) BOOL isAutoLogAppEventsEnabled; -/// Controls the fb_codeless_debug logging event. -/// The default value is false. -@property (nonatomic) BOOL codelessDebugLogEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.\n "); -/// Controls the fb_codeless_debug logging event. -/// The default value is false. -@property (nonatomic) BOOL isCodelessDebugLogEnabled; -/// Controls the access to IDFA. -/// The default value is true. -@property (nonatomic) BOOL advertiserIDCollectionEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.\n "); -/// Controls the access to IDFA. -/// The default value is true. -@property (nonatomic) BOOL isAdvertiserIDCollectionEnabled; -/// Controls the SKAdNetwork report. -/// The default value is true. -@property (nonatomic) BOOL skAdNetworkReportEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isSKAdNetworkReportEnabled` instead.\n "); -/// Controls the SKAdNetwork report. -/// The default value is true. -@property (nonatomic) BOOL isSKAdNetworkReportEnabled; -/// Whether data such as that generated through AppEvents and sent to Facebook -/// should be restricted from being used for purposes other than analytics and conversions. -/// The default value is false. This value is stored on the device and persists across app launches. -@property (nonatomic) BOOL isEventDataUsageLimited; -/// Whether in-memory cached values should be used for expensive metadata fields, such as -/// carrier and advertiser ID, that are fetched on many applicationDidBecomeActive notifications. -/// The default value is false. This value is stored on the device and persists across app launches. -@property (nonatomic) BOOL shouldUseCachedValuesForExpensiveMetadata; -/// Controls error recovery for all GraphRequest instances created after the value is changed. -@property (nonatomic) BOOL isGraphErrorRecoveryEnabled; -/// The Facebook App ID used by the SDK. -/// The default value will be read from the application’s plist (FacebookAppID). -@property (nonatomic, copy) NSString * _Nullable appID; -/// The default URL scheme suffix used for sessions. -/// The default value will be read from the application’s plist (FacebookUrlSchemeSuffix). -@property (nonatomic, copy) NSString * _Nullable appURLSchemeSuffix; -/// The client token needed for certain anonymous API calls (i.e., those made without a user-based access token). -/// An app’s client token can be found by navigating to https://developers.facebook.com/apps/YOUR-APP-ID -/// (replacing “YOUR-APP-ID” with your actual app ID), choosing “Settings->Advanced” and scrolling to the “Security”. -/// The default value will be read from the application’s plist (FacebookClientToken). -@property (nonatomic, copy) NSString * _Nullable clientToken; -/// The Facebook Display Name used by the SDK. -/// This should match the Display Name that has been set for the app with the corresponding Facebook App ID -/// in the Facebook App Dashboard. -/// The default value will be read from the application’s plist (FacebookDisplayName). -@property (nonatomic, copy) NSString * _Nullable displayName; -/// The Facebook domain part. This can be used to change the Facebook domain -/// (e.g. “beta”) so that requests will be sent to graph.beta.facebook.com. -/// The default value will be read from the application’s plist (FacebookDomainPart). -@property (nonatomic, copy) NSString * _Nullable facebookDomainPart; -/// Overrides the default Graph API version to use with GraphRequest instances. -/// The string should be of the form "v2.7". -/// The default value is defaultGraphAPIVersion. -@property (nonatomic, copy) NSString * _Nonnull graphAPIVersion; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, copy) NSString * _Nullable userAgentSuffix; -/// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. -@property (nonatomic) BOOL advertiserTrackingEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.\n "); -/// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. -@property (nonatomic) BOOL isAdvertiserTrackingEnabled; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic) FBSDKAdvertisingTrackingStatus advertisingTrackingStatus; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly) BOOL isDataProcessingRestricted; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSDictionary * _Nullable persistableDataProcessingOptions; -/// Set the data processing options. -/// \param options The list of options. -/// -- (void)setDataProcessingOptions:(NSArray * _Nullable)options; -/// Sets the data processing options. -/// \param options The list of the options. -/// -/// \param country The code for the country. -/// -/// \param state The code for the state. -/// -- (void)setDataProcessingOptions:(NSArray * _Nullable)options country:(int32_t)country state:(int32_t)state; -/// The current Facebook SDK logging behavior. This should consist of strings -/// defined as constants with LoggingBehavior that indicate what information should be logged. -/// Set to an empty set in order to disable all logging. -/// You can also define this via an array in your app’s plist with the key “FacebookLoggingBehavior”; or add/remove -/// individual values via enableLoggingBehavior(_:) or disableLoggingBehavior(_:) -/// The default value is [.developerErrors]. -@property (nonatomic, copy) NSSet * _Nonnull loggingBehaviors; -/// Enable a particular Facebook SDK logging behavior. -/// \param loggingBehavior The logging behavior to enable. This should be a string constant defined -/// as a LoggingBehavior. -/// -- (void)enableLoggingBehavior:(FBSDKLoggingBehavior _Nonnull)loggingBehavior; -/// Disable a particular Facebook SDK logging behavior. -/// \param loggingBehavior The logging behavior to disable. This should be a string constant defined -/// as a LoggingBehavior. -/// -- (void)disableLoggingBehavior:(FBSDKLoggingBehavior _Nonnull)loggingBehavior; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic) BOOL shouldUseTokenOptimizations; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly) BOOL isSetATETimeExceedsInstallTime SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.\n "); -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly) BOOL isATETimeSufficientlyDelayed; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSDate * _Nullable installTimestamp; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSDate * _Nullable advertiserTrackingEnabledTimestamp; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSString * _Nullable graphAPIDebugParamValue SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.\n "); -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSString * _Nullable graphAPIDebugParameterValue; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - - - - - -@interface FBSDKSettings (SWIFT_EXTENSION(FBSDKCoreKit)) -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (void)recordInstall; -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (void)logWarnings; -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (void)logIfSDKSettingsChanged; -@end - - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_PROTOCOL_NAMED("_AccessTokenExpiring") -@protocol _FBSDKAccessTokenExpiring -@end - -@protocol _FBSDKNotificationPosting; -@protocol FBSDKNotificationDelivering; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_AccessTokenExpirer") -@interface _FBSDKAccessTokenExpirer : NSObject <_FBSDKAccessTokenExpiring> -- (nonnull instancetype)initWithNotificationCenter:(id <_FBSDKNotificationPosting, FBSDKNotificationDelivering> _Nonnull)notificationCenter OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -@class FBSDKDialogConfiguration; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_DialogConfigurationMapBuilder") -@interface FBSDKDialogConfigurationMapBuilder : NSObject -- (NSDictionary * _Nonnull)buildDialogConfigurationMapWithRawConfigurations:(NSArray *> * _Nonnull)rawConfigurations SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// Internal type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_ErrorFactory") -@interface FBSDKErrorFactory : NSObject -- (NSError * _Nonnull)errorWithCode:(NSInteger)code userInfo:(NSDictionary * _Nullable)userInfo message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)errorWithDomain:(NSString * _Nonnull)domain code:(NSInteger)code userInfo:(NSDictionary * _Nullable)userInfo message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)invalidArgumentErrorWithName:(NSString * _Nonnull)name value:(id _Nullable)value message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)invalidArgumentErrorWithDomain:(NSString * _Nonnull)domain name:(NSString * _Nonnull)name value:(id _Nullable)value message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)requiredArgumentErrorWithName:(NSString * _Nonnull)name message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)requiredArgumentErrorWithDomain:(NSString * _Nonnull)domain name:(NSString * _Nonnull)name message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)unknownErrorWithMessage:(NSString * _Nullable)message userInfo:(NSDictionary * _Nullable)userInfo SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_FBLogo") -@interface FBSDKLogo : FBSDKIcon -- (CGPathRef _Nullable)pathWith:(CGSize)size SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_FeatureManager") -@interface FBSDKFeatureManager : NSObject -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKFeatureManager * _Nonnull shared;) -+ (FBSDKFeatureManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; -- (BOOL)isEnabled:(FBSDKFeature)feature SWIFT_WARN_UNUSED_RESULT; -- (void)checkFeature:(FBSDKFeature)feature completionBlock:(FBSDKFeatureManagerBlock _Nonnull)completionBlock; -- (void)disableFeature:(FBSDKFeature)feature; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@class SKPaymentQueue; -@protocol FBSDKPaymentProductRequestorCreating; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -/// Class to encapsulate implicit logging of purchase events -SWIFT_CLASS_NAMED("_PaymentObserver") -@interface FBSDKPaymentObserver : NSObject -- (nonnull instancetype)initWithPaymentQueue:(SKPaymentQueue * _Nonnull)paymentQueue paymentProductRequestorFactory:(id _Nonnull)paymentProductRequestorFactory OBJC_DESIGNATED_INITIALIZER; -- (void)startObservingTransactions; -- (void)stopObservingTransactions; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class SKPaymentTransaction; - -@interface FBSDKPaymentObserver (SWIFT_EXTENSION(FBSDKCoreKit)) -- (void)paymentQueue:(SKPaymentQueue * _Nonnull)queue updatedTransactions:(NSArray * _Nonnull)transactions; -@end - -@class FBSDKPaymentProductRequestor; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_PaymentProductRequestorFactory") -@interface FBSDKPaymentProductRequestorFactory : NSObject -- (FBSDKPaymentProductRequestor * _Nonnull)createRequestorWithTransaction:(SKPaymentTransaction * _Nonnull)transaction SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_RestrictiveEventFilter") -@interface FBSDKRestrictiveEventFilter : NSObject -@property (nonatomic, readonly, copy) NSString * _Nonnull eventName; -@property (nonatomic, readonly, copy) NSDictionary * _Nonnull restrictiveParameters; -- (nonnull instancetype)initWithEventName:(NSString * _Nonnull)eventName restrictiveParameters:(NSDictionary * _Nonnull)restrictiveParameters OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_ViewImpressionLogger") -@interface FBSDKViewImpressionLogger : NSObject -- (nonnull instancetype)initWithEventName:(FBSDKAppEventName _Nonnull)eventName OBJC_DESIGNATED_INITIALIZER; -+ (FBSDKViewImpressionLogger * _Nonnull)retrieveLoggerWith:(FBSDKAppEventName _Nonnull)eventName SWIFT_WARN_UNUSED_RESULT; -- (void)logImpressionWithIdentifier:(NSString * _Nonnull)identifier parameters:(NSDictionary * _Nullable)parameters; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif - -#elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef FBSDKCOREKIT_SWIFT_H -#define FBSDKCOREKIT_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import CoreGraphics; -@import Foundation; -@import ObjectiveC; -@import StoreKit; -@import UIKit; -#endif - -#import - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBSDKCoreKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - -@class UIApplication; -@class NSUserActivity; -@class NSURL; -@class NSString; -@protocol FBSDKApplicationObserving; - -/// An ApplicationDelegate is designed to post-process the results from Facebook Login -/// or Facebook Dialogs (or any action that requires switching over to the native Facebook -/// app or Safari). -/// The methods in this class are designed to mirror those in UIApplicationDelegate, and you -/// should call them in the respective methods in your application delegate implementation. -SWIFT_CLASS_NAMED("ApplicationDelegate") -@interface FBSDKApplicationDelegate : NSObject -/// Gets the singleton instance. -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKApplicationDelegate * _Nonnull sharedInstance;) -+ (FBSDKApplicationDelegate * _Nonnull)sharedInstance SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -/// Initializes the SDK. -/// If you are using the SDK within the context of the UIApplication lifecycle, do not use this method. -/// Instead use application(_:didFinishLaunchingWithOptions:). -/// As part of SDK initialization, basic auto logging of app events will occur, this can be -/// controlled via the ‘FacebookAutoLogAppEventsEnabled’ key in your project’s Info.plist file. -- (void)initializeSDK; -/// Call this method from the UIApplicationDelegate.application(_:continue:restorationHandler:) method -/// of your application delegate. It should be invoked in order to properly process the web URL (universal link) -/// once the end user is redirected to your app. -/// \param application The application as passed to `UIApplicationDelegate.application(_:continue:restorationHandler:). -/// -/// \param userActivity The user activity as passed to UIApplicationDelegate.application(_:continue:restorationHandler:). -/// -/// -/// returns: -/// true if the URL was intended for the Facebook SDK, false if not. -- (BOOL)application:(UIApplication * _Nonnull)application continueUserActivity:(NSUserActivity * _Nonnull)userActivity; -/// Call this method from the UIApplicationDelegate.application(_:open:options:) method -/// of your application delegate. It should be invoked for the proper processing of responses during interaction -/// with the native Facebook app or Safari as part of an SSO authorization flow or Facebook dialogs. -/// \param application The application as passed to UIApplicationDelegate.application(_:open:options:). -/// -/// \param url The URL as passed to UIApplicationDelegate.application(_:open:options:). -/// -/// \param options The options dictionary as passed to UIApplicationDelegate.application(_:open:options:). -/// -/// -/// returns: -/// true if the URL was intended for the Facebook SDK, false if not. -- (BOOL)application:(UIApplication * _Nonnull)application openURL:(NSURL * _Nonnull)url options:(NSDictionary * _Nonnull)options; -/// Call this method from the UIApplicationDelegate.application(_:openL:sourceApplication:annotation:) method -/// of your application delegate. It should be invoked for the proper processing of responses during interaction -/// with the native Facebook app or Safari as part of an SSO authorization flow or Facebook dialogs. -/// \param application The application as passed to UIApplicationDelegate.application(_:open:sourceApplication:annotation:). -/// -/// \param url The URL as passed to UIApplicationDelegate.application(_:open:sourceApplication:annotation:). -/// -/// \param sourceApplication The source application as passed to UIApplicationDelegate.application(_:open:sourceApplication:annotation:). -/// -/// \param annotation The annotation as passed to UIApplicationDelegate.application(_:open:sourceApplication:annotation:). -/// -/// -/// returns: -/// true if the URL was intended for the Facebook SDK, false if not. -- (BOOL)application:(UIApplication * _Nonnull)application openURL:(NSURL * _Nonnull)url sourceApplication:(NSString * _Nullable)sourceApplication annotation:(id _Nullable)annotation; -/// Call this method from the UIApplicationDelegate.application(_:didFinishLaunchingWithOptions:) method -/// of your application delegate. It should be invoked for the proper use of the Facebook SDK. -/// As part of SDK initialization, basic auto-logging of app events will occur; this can be -/// controlled via the FacebookAutoLogAppEventsEnabled key in the project’s Info.plist file. -/// note: -/// If this method is called after calling initializeSDK, then the return value will always be false. -/// \param application The application as passed to UIApplicationDelegate.application(_:didFinishLaunchingWithOptions:). -/// -/// \param launchOptions The launch options as passed to UIApplicationDelegate.application(_:didFinishLaunchingWithOptions:). -/// -/// -/// returns: -/// true if there are any added application observers that themselves return true from calling application(_:didFinishLaunchingWithOptions:). -/// Otherwise will return false. -- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions; -/// Adds an observer that will be informed about application lifecycle events. -/// note: -/// Observers are weakly held -- (void)addObserver:(id _Nonnull)observer; -/// Removes an observer so that it will no longer be informed about application lifecycle events. -- (void)removeObserver:(id _Nonnull)observer; -@end - - -SWIFT_CLASS_NAMED("AuthenticationTokenClaims") -@interface FBSDKAuthenticationTokenClaims : NSObject -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (nullable instancetype)initWithEncodedClaims:(NSString * _Nonnull)encodedClaims nonce:(NSString * _Nonnull)expectedNonce; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKSettings; - -SWIFT_PROTOCOL_NAMED("CAPIReporter") -@protocol FBSDKCAPIReporter -- (void)enable; -- (void)configureWithFactory:(id _Nonnull)factory settings:(id _Nonnull)settings; -- (void)recordEvent:(NSDictionary * _Nonnull)parameters; -@end - -@class UIImage; -@class UIColor; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("FBIcon") -@interface FBSDKIcon : NSObject -- (CGPathRef _Nullable)pathWith:(CGSize)size SWIFT_WARN_UNUSED_RESULT; -- (UIImage * _Nullable)imageWithSize:(CGSize)size SWIFT_WARN_UNUSED_RESULT; -- (UIImage * _Nullable)imageWithSize:(CGSize)size color:(UIColor * _Nonnull)color SWIFT_WARN_UNUSED_RESULT; -- (UIImage * _Nullable)imageWithSize:(CGSize)size scale:(CGFloat)scale color:(UIColor * _Nonnull)color SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -SWIFT_CLASS("_TtC12FBSDKCoreKit25FBSDKAppEventsCAPIManager") -@interface FBSDKAppEventsCAPIManager : NSObject -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKAppEventsCAPIManager * _Nonnull shared;) -+ (FBSDKAppEventsCAPIManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)configureWithFactory:(id _Nonnull)factory settings:(id _Nonnull)settings; -- (void)enable; -- (void)recordEvent:(NSDictionary * _Nonnull)parameters; -@end - - -SWIFT_CLASS("_TtC12FBSDKCoreKit35FBSDKTransformerGraphRequestFactory") -@interface FBSDKTransformerGraphRequestFactory : NSObject -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKTransformerGraphRequestFactory * _Nonnull shared;) -+ (FBSDKTransformerGraphRequestFactory * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -- (void)configureWithDatasetID:(NSString * _Nonnull)datasetID url:(NSString * _Nonnull)url accessKey:(NSString * _Nonnull)accessKey; -- (void)callCapiGatewayAPIWith:(NSDictionary * _Nonnull)parameters; -@end - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS("_TtC12FBSDKCoreKit27ServerConfigurationProvider") -@interface ServerConfigurationProvider : NSObject -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - -@class NSDate; - -/// Internal type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_PROTOCOL_NAMED("SettingsProtocol") -@protocol FBSDKSettings -@property (nonatomic, copy) NSString * _Nullable appID; -@property (nonatomic, copy) NSString * _Nullable clientToken; -@property (nonatomic, copy) NSString * _Nullable userAgentSuffix; -@property (nonatomic, readonly, copy) NSString * _Nonnull sdkVersion; -@property (nonatomic, copy) NSString * _Nullable displayName; -@property (nonatomic, copy) NSString * _Nullable facebookDomainPart; -@property (nonatomic, copy) NSSet * _Nonnull loggingBehaviors; -@property (nonatomic, copy) NSString * _Nullable appURLSchemeSuffix; -@property (nonatomic, readonly) BOOL isDataProcessingRestricted; -@property (nonatomic, readonly) BOOL isAutoLogAppEventsEnabled; -@property (nonatomic) BOOL codelessDebugLogEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.\n "); -@property (nonatomic) BOOL isCodelessDebugLogEnabled; -@property (nonatomic) BOOL advertiserIDCollectionEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.\n "); -@property (nonatomic) BOOL isAdvertiserIDCollectionEnabled; -@property (nonatomic, readonly) BOOL isSetATETimeExceedsInstallTime SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.\n "); -@property (nonatomic, readonly) BOOL isATETimeSufficientlyDelayed; -@property (nonatomic, readonly) BOOL isSKAdNetworkReportEnabled; -@property (nonatomic, readonly) FBSDKAdvertisingTrackingStatus advertisingTrackingStatus; -@property (nonatomic, readonly, copy) NSDate * _Nullable installTimestamp; -@property (nonatomic, readonly, copy) NSDate * _Nullable advertiserTrackingEnabledTimestamp; -@property (nonatomic) BOOL isEventDataUsageLimited; -@property (nonatomic) BOOL shouldUseTokenOptimizations; -@property (nonatomic, copy) NSString * _Nonnull graphAPIVersion; -@property (nonatomic) BOOL isGraphErrorRecoveryEnabled; -@property (nonatomic, readonly, copy) NSString * _Nullable graphAPIDebugParamValue SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.\n "); -@property (nonatomic, readonly, copy) NSString * _Nullable graphAPIDebugParameterValue; -@property (nonatomic) BOOL advertiserTrackingEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.\n "); -@property (nonatomic) BOOL isAdvertiserTrackingEnabled; -@property (nonatomic) BOOL shouldUseCachedValuesForExpensiveMetadata; -@property (nonatomic, readonly, copy) NSDictionary * _Nullable persistableDataProcessingOptions; -/// Sets the data processing options. -/// \param options The list of options. -/// -- (void)setDataProcessingOptions:(NSArray * _Nullable)options; -/// Sets the data processing options. -/// \param options The list of the options. -/// -/// \param country The code for the country. -/// -/// \param state The code for the state. -/// -- (void)setDataProcessingOptions:(NSArray * _Nullable)options country:(int32_t)country state:(int32_t)state; -@end - - -SWIFT_CLASS_NAMED("Settings") -@interface FBSDKSettings : NSObject -/// The shared settings instance. Prefer this and the exposed instance methods over the type properties and methods. -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKSettings * _Nonnull sharedSettings;) -+ (FBSDKSettings * _Nonnull)sharedSettings SWIFT_WARN_UNUSED_RESULT; -/// The Facebook SDK version in use. -@property (nonatomic, readonly, copy) NSString * _Nonnull sdkVersion; -/// The default Graph API version. -@property (nonatomic, readonly, copy) NSString * _Nonnull defaultGraphAPIVersion; -/// The quality of JPEG images sent to Facebook from the SDK expressed as a value from 0.0 to 1.0. -/// The default value is 0.9. -@property (nonatomic) CGFloat JPEGCompressionQuality; -/// Controls the automatic logging of basic app events such as activateApp and deactivateApp. -/// The default value is true. -@property (nonatomic) BOOL autoLogAppEventsEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAutoLogAppEventsEnabled` instead.\n "); -/// Controls the automatic logging of basic app events such as activateApp and deactivateApp. -/// The default value is true. -@property (nonatomic) BOOL isAutoLogAppEventsEnabled; -/// Controls the fb_codeless_debug logging event. -/// The default value is false. -@property (nonatomic) BOOL codelessDebugLogEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.\n "); -/// Controls the fb_codeless_debug logging event. -/// The default value is false. -@property (nonatomic) BOOL isCodelessDebugLogEnabled; -/// Controls the access to IDFA. -/// The default value is true. -@property (nonatomic) BOOL advertiserIDCollectionEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.\n "); -/// Controls the access to IDFA. -/// The default value is true. -@property (nonatomic) BOOL isAdvertiserIDCollectionEnabled; -/// Controls the SKAdNetwork report. -/// The default value is true. -@property (nonatomic) BOOL skAdNetworkReportEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isSKAdNetworkReportEnabled` instead.\n "); -/// Controls the SKAdNetwork report. -/// The default value is true. -@property (nonatomic) BOOL isSKAdNetworkReportEnabled; -/// Whether data such as that generated through AppEvents and sent to Facebook -/// should be restricted from being used for purposes other than analytics and conversions. -/// The default value is false. This value is stored on the device and persists across app launches. -@property (nonatomic) BOOL isEventDataUsageLimited; -/// Whether in-memory cached values should be used for expensive metadata fields, such as -/// carrier and advertiser ID, that are fetched on many applicationDidBecomeActive notifications. -/// The default value is false. This value is stored on the device and persists across app launches. -@property (nonatomic) BOOL shouldUseCachedValuesForExpensiveMetadata; -/// Controls error recovery for all GraphRequest instances created after the value is changed. -@property (nonatomic) BOOL isGraphErrorRecoveryEnabled; -/// The Facebook App ID used by the SDK. -/// The default value will be read from the application’s plist (FacebookAppID). -@property (nonatomic, copy) NSString * _Nullable appID; -/// The default URL scheme suffix used for sessions. -/// The default value will be read from the application’s plist (FacebookUrlSchemeSuffix). -@property (nonatomic, copy) NSString * _Nullable appURLSchemeSuffix; -/// The client token needed for certain anonymous API calls (i.e., those made without a user-based access token). -/// An app’s client token can be found by navigating to https://developers.facebook.com/apps/YOUR-APP-ID -/// (replacing “YOUR-APP-ID” with your actual app ID), choosing “Settings->Advanced” and scrolling to the “Security”. -/// The default value will be read from the application’s plist (FacebookClientToken). -@property (nonatomic, copy) NSString * _Nullable clientToken; -/// The Facebook Display Name used by the SDK. -/// This should match the Display Name that has been set for the app with the corresponding Facebook App ID -/// in the Facebook App Dashboard. -/// The default value will be read from the application’s plist (FacebookDisplayName). -@property (nonatomic, copy) NSString * _Nullable displayName; -/// The Facebook domain part. This can be used to change the Facebook domain -/// (e.g. “beta”) so that requests will be sent to graph.beta.facebook.com. -/// The default value will be read from the application’s plist (FacebookDomainPart). -@property (nonatomic, copy) NSString * _Nullable facebookDomainPart; -/// Overrides the default Graph API version to use with GraphRequest instances. -/// The string should be of the form "v2.7". -/// The default value is defaultGraphAPIVersion. -@property (nonatomic, copy) NSString * _Nonnull graphAPIVersion; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, copy) NSString * _Nullable userAgentSuffix; -/// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. -@property (nonatomic) BOOL advertiserTrackingEnabled SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.\n "); -/// Controls the advertiser tracking status of the data sent to Facebook. -/// The default value is false. -@property (nonatomic) BOOL isAdvertiserTrackingEnabled; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic) FBSDKAdvertisingTrackingStatus advertisingTrackingStatus; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly) BOOL isDataProcessingRestricted; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSDictionary * _Nullable persistableDataProcessingOptions; -/// Set the data processing options. -/// \param options The list of options. -/// -- (void)setDataProcessingOptions:(NSArray * _Nullable)options; -/// Sets the data processing options. -/// \param options The list of the options. -/// -/// \param country The code for the country. -/// -/// \param state The code for the state. -/// -- (void)setDataProcessingOptions:(NSArray * _Nullable)options country:(int32_t)country state:(int32_t)state; -/// The current Facebook SDK logging behavior. This should consist of strings -/// defined as constants with LoggingBehavior that indicate what information should be logged. -/// Set to an empty set in order to disable all logging. -/// You can also define this via an array in your app’s plist with the key “FacebookLoggingBehavior”; or add/remove -/// individual values via enableLoggingBehavior(_:) or disableLoggingBehavior(_:) -/// The default value is [.developerErrors]. -@property (nonatomic, copy) NSSet * _Nonnull loggingBehaviors; -/// Enable a particular Facebook SDK logging behavior. -/// \param loggingBehavior The logging behavior to enable. This should be a string constant defined -/// as a LoggingBehavior. -/// -- (void)enableLoggingBehavior:(FBSDKLoggingBehavior _Nonnull)loggingBehavior; -/// Disable a particular Facebook SDK logging behavior. -/// \param loggingBehavior The logging behavior to disable. This should be a string constant defined -/// as a LoggingBehavior. -/// -- (void)disableLoggingBehavior:(FBSDKLoggingBehavior _Nonnull)loggingBehavior; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic) BOOL shouldUseTokenOptimizations; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly) BOOL isSetATETimeExceedsInstallTime SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.\n "); -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly) BOOL isATETimeSufficientlyDelayed; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSDate * _Nullable installTimestamp; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSDate * _Nullable advertiserTrackingEnabledTimestamp; -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSString * _Nullable graphAPIDebugParamValue SWIFT_DEPRECATED_MSG("\n This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.\n "); -/// Internal property exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -@property (nonatomic, readonly, copy) NSString * _Nullable graphAPIDebugParameterValue; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - - - - - -@interface FBSDKSettings (SWIFT_EXTENSION(FBSDKCoreKit)) -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (void)recordInstall; -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (void)logWarnings; -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (void)logIfSDKSettingsChanged; -@end - - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_PROTOCOL_NAMED("_AccessTokenExpiring") -@protocol _FBSDKAccessTokenExpiring -@end - -@protocol _FBSDKNotificationPosting; -@protocol FBSDKNotificationDelivering; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_AccessTokenExpirer") -@interface _FBSDKAccessTokenExpirer : NSObject <_FBSDKAccessTokenExpiring> -- (nonnull instancetype)initWithNotificationCenter:(id <_FBSDKNotificationPosting, FBSDKNotificationDelivering> _Nonnull)notificationCenter OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -@class FBSDKDialogConfiguration; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_DialogConfigurationMapBuilder") -@interface FBSDKDialogConfigurationMapBuilder : NSObject -- (NSDictionary * _Nonnull)buildDialogConfigurationMapWithRawConfigurations:(NSArray *> * _Nonnull)rawConfigurations SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// Internal type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_ErrorFactory") -@interface FBSDKErrorFactory : NSObject -- (NSError * _Nonnull)errorWithCode:(NSInteger)code userInfo:(NSDictionary * _Nullable)userInfo message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)errorWithDomain:(NSString * _Nonnull)domain code:(NSInteger)code userInfo:(NSDictionary * _Nullable)userInfo message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)invalidArgumentErrorWithName:(NSString * _Nonnull)name value:(id _Nullable)value message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)invalidArgumentErrorWithDomain:(NSString * _Nonnull)domain name:(NSString * _Nonnull)name value:(id _Nullable)value message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)requiredArgumentErrorWithName:(NSString * _Nonnull)name message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)requiredArgumentErrorWithDomain:(NSString * _Nonnull)domain name:(NSString * _Nonnull)name message:(NSString * _Nullable)message underlyingError:(NSError * _Nullable)underlyingError SWIFT_WARN_UNUSED_RESULT; -- (NSError * _Nonnull)unknownErrorWithMessage:(NSString * _Nullable)message userInfo:(NSDictionary * _Nullable)userInfo SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_FBLogo") -@interface FBSDKLogo : FBSDKIcon -- (CGPathRef _Nullable)pathWith:(CGSize)size SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_FeatureManager") -@interface FBSDKFeatureManager : NSObject -SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) FBSDKFeatureManager * _Nonnull shared;) -+ (FBSDKFeatureManager * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT; -- (BOOL)isEnabled:(FBSDKFeature)feature SWIFT_WARN_UNUSED_RESULT; -- (void)checkFeature:(FBSDKFeature)feature completionBlock:(FBSDKFeatureManagerBlock _Nonnull)completionBlock; -- (void)disableFeature:(FBSDKFeature)feature; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@class SKPaymentQueue; -@protocol FBSDKPaymentProductRequestorCreating; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -/// Class to encapsulate implicit logging of purchase events -SWIFT_CLASS_NAMED("_PaymentObserver") -@interface FBSDKPaymentObserver : NSObject -- (nonnull instancetype)initWithPaymentQueue:(SKPaymentQueue * _Nonnull)paymentQueue paymentProductRequestorFactory:(id _Nonnull)paymentProductRequestorFactory OBJC_DESIGNATED_INITIALIZER; -- (void)startObservingTransactions; -- (void)stopObservingTransactions; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class SKPaymentTransaction; - -@interface FBSDKPaymentObserver (SWIFT_EXTENSION(FBSDKCoreKit)) -- (void)paymentQueue:(SKPaymentQueue * _Nonnull)queue updatedTransactions:(NSArray * _Nonnull)transactions; -@end - -@class FBSDKPaymentProductRequestor; - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_PaymentProductRequestorFactory") -@interface FBSDKPaymentProductRequestorFactory : NSObject -- (FBSDKPaymentProductRequestor * _Nonnull)createRequestorWithTransaction:(SKPaymentTransaction * _Nonnull)transaction SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_RestrictiveEventFilter") -@interface FBSDKRestrictiveEventFilter : NSObject -@property (nonatomic, readonly, copy) NSString * _Nonnull eventName; -@property (nonatomic, readonly, copy) NSDictionary * _Nonnull restrictiveParameters; -- (nonnull instancetype)initWithEventName:(NSString * _Nonnull)eventName restrictiveParameters:(NSDictionary * _Nonnull)restrictiveParameters OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -/// Internal Type exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -SWIFT_CLASS_NAMED("_ViewImpressionLogger") -@interface FBSDKViewImpressionLogger : NSObject -- (nonnull instancetype)initWithEventName:(FBSDKAppEventName _Nonnull)eventName OBJC_DESIGNATED_INITIALIZER; -+ (FBSDKViewImpressionLogger * _Nonnull)retrieveLoggerWith:(FBSDKAppEventName _Nonnull)eventName SWIFT_WARN_UNUSED_RESULT; -- (void)logImpressionWithIdentifier:(NSString * _Nonnull)identifier parameters:(NSDictionary * _Nullable)parameters; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h deleted file mode 100644 index 56befda2..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCoreKitVersions.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#define FBSDK_VERSION_STRING @"15.1.0" -#define FBSDK_DEFAULT_GRAPH_API_VERSION @"v15.0" diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCrashObserver.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCrashObserver.h deleted file mode 100644 index df232f9e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCrashObserver.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKFeatureChecking; -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKSettings; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_CrashObserver) -@interface FBSDKCrashObserver : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -// UNCRUSTIFY_FORMAT_OFF -- (instancetype)initWithFeatureChecker:(id)featureChecker - graphRequestFactory:(id)graphRequestFactory - settings:(id)settings - crashHandler:(id)crashHandler -NS_SWIFT_NAME(init(featureChecker:graphRequestFactory:settings:crashHandler:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCrashShield.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCrashShield.h deleted file mode 100644 index 597d58e2..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKCrashShield.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKFeatureDisabling; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_CrashShield) -@interface FBSDKCrashShield : NSObject - -+ (void)analyze:(NSArray *> *)crashLogs; - -+ (void)configureWithSettings:(id)settings - graphRequestFactory:(id)graphRequestFactory - featureChecking:(id)featureChecking -NS_SWIFT_NAME(configure(settings:graphRequestFactory:featureChecking:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDataProcessingOptionKey.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDataProcessingOptionKey.h deleted file mode 100644 index e747e21a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDataProcessingOptionKey.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef NSString *FBSDKDataProcessingOptionKey NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(DataProcessingOptionKey); - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT FBSDKDataProcessingOptionKey const FBSDKDataProcessingOptionKeyOptions; - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT FBSDKDataProcessingOptionKey const FBSDKDataProcessingOptionKeyCountry; - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT FBSDKDataProcessingOptionKey const FBSDKDataProcessingOptionKeyState; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceDialogView.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceDialogView.h deleted file mode 100644 index e290e584..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceDialogView.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(DeviceDialogViewDelegate) -@protocol FBSDKDeviceDialogViewDelegate; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -NS_SWIFT_NAME(FBDeviceDialogView) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@interface FBSDKDeviceDialogView : UIView - -@property (nonatomic, weak) id delegate; -@property (nonatomic, copy) NSString *confirmationCode; - -// override point for subclasses. -- (void)buildView; - -@end - -NS_SWIFT_NAME(DeviceDialogViewDelegate) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@protocol FBSDKDeviceDialogViewDelegate - -- (void)deviceDialogViewDidCancel:(FBSDKDeviceDialogView *)deviceDialogView; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h deleted file mode 100644 index ec650cfa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceInformationProviding.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_DeviceInformationProviding) -@protocol FBSDKDeviceInformationProviding - -@property (nonatomic, readonly) NSString *storageKey; -@property (nullable, nonatomic, readonly) NSString *encodedDeviceInfo; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceViewControllerBase.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceViewControllerBase.h deleted file mode 100644 index 9a08f5af..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDeviceViewControllerBase.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if TARGET_OS_TV - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/* - An internal base class for device related flows. - - This is an internal API that should not be used directly and is subject to change. - */ -NS_SWIFT_NAME(FBDeviceViewControllerBase) -DEPRECATED_MSG_ATTRIBUTE("Support for tvOS is deprecated and will be removed in the next major release.") -@interface FBSDKDeviceViewControllerBase : UIViewController -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDialogConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDialogConfiguration.h deleted file mode 100644 index bc8e29b3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDialogConfiguration.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_DialogConfiguration) -@interface FBSDKDialogConfiguration : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithName:(NSString *)name - URL:(NSURL *)URL - appVersions:(NSArray *)appVersions - NS_DESIGNATED_INITIALIZER; - -@property (nonatomic, readonly, copy) NSArray *appVersions; // NSString, possibly NSNumber -@property (nonatomic, readonly, copy) NSString *name; -@property (nonatomic, readonly, copy) NSURL *URL; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDialogConfigurationMapBuilding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDialogConfigurationMapBuilding.h deleted file mode 100644 index 7f5e4839..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDialogConfigurationMapBuilding.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@class FBSDKDialogConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_DialogConfigurationMapBuilding) -@protocol FBSDKDialogConfigurationMapBuilding - -// UNCRUSTIFY_FORMAT_OFF -- (NSDictionary *)buildDialogConfigurationMapWithRawConfigurations:(NSArray *> *)rawConfigurations -NS_SWIFT_NAME(buildDialogConfigurationMap(from:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDynamicFrameworkLoaderProxy.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDynamicFrameworkLoaderProxy.h deleted file mode 100644 index a46a303e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKDynamicFrameworkLoaderProxy.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(DynamicFrameworkLoaderProxy) -@interface FBSDKDynamicFrameworkLoaderProxy : NSObject -/** - Load the kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value from the Security Framework - - @return The kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly value or nil. - */ -+ (CFTypeRef)loadkSecAttrAccessibleAfterFirstUnlockThisDeviceOnly; -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorConfiguration.h deleted file mode 100644 index 661ae8cf..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorConfiguration.h +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -@protocol FBSDKGraphRequest; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_DecodableErrorConfiguration) -@protocol FBSDKDecodableErrorConfiguration - -- (instancetype)initWithDictionary:(NSDictionary *)dictionary; -- (void)updateWithArray:(NSArray *> *)array; - -@end - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ErrorConfiguration) -@interface FBSDKErrorConfiguration : NSObject < - NSSecureCoding, - NSCopying, - FBSDKErrorConfiguration, - FBSDKDecodableErrorConfiguration -> - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -// initialize from optional dictionary of existing configurations. If not supplied a fallback will be created. -- (instancetype)initWithDictionary:(nullable NSDictionary *)dictionary NS_DESIGNATED_INITIALIZER; - -// parses the array (supplied from app settings endpoint) -- (void)updateWithArray:(NSArray *> *)array; - -// NSString "code" instances support "*" wildcard semantics (nil is treated as "*" also) -// 'request' is optional, typically for identifying special graph request semantics (e.g., no recovery for client token) -- (nullable FBSDKErrorRecoveryConfiguration *)recoveryConfigurationForCode:(nullable NSString *)code subcode:(nullable NSString *)subcode request:(id)request; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProtocol.h deleted file mode 100644 index 247151b6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProtocol.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@class FBSDKErrorRecoveryConfiguration; -@protocol FBSDKGraphRequest; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ErrorConfigurationProtocol) -@protocol FBSDKErrorConfiguration - -- (nullable FBSDKErrorRecoveryConfiguration *)recoveryConfigurationForCode:(nullable NSString *)code - subcode:(nullable NSString *)subcode - request:(id)request; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProvider.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProvider.h deleted file mode 100644 index 3e32904e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProvider.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ErrorConfigurationProvider) -@interface FBSDKErrorConfigurationProvider : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProviding.h deleted file mode 100644 index 21be0a06..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorConfigurationProviding.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKErrorConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ErrorConfigurationProviding) -@protocol FBSDKErrorConfigurationProviding - -- (nullable id)errorConfiguration; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorCreating.h deleted file mode 100644 index 85c9e191..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorCreating.h +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(ErrorCreating) -@protocol FBSDKErrorCreating - -// MARK: - General Errors - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)errorWithCode:(NSInteger)code - userInfo:(nullable NSDictionary *)userInfo - message:(nullable NSString *)message - underlyingError:(nullable NSError *)underlyingError -NS_SWIFT_NAME(error(code:userInfo:message:underlyingError:)); -// UNCRUSTIFY_FORMAT_ON - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)errorWithDomain:(NSErrorDomain)domain - code:(NSInteger)code - userInfo:(nullable NSDictionary *)userInfo - message:(nullable NSString *)message - underlyingError:(nullable NSError *)underlyingError -NS_SWIFT_NAME(error(domain:code:userInfo:message:underlyingError:)); -// UNCRUSTIFY_FORMAT_ON - -// MARK: - Invalid Argument Errors - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)invalidArgumentErrorWithName:(NSString *)name - value:(nullable id)value - message:(nullable NSString *)message - underlyingError:(nullable NSError *)underlyingError -NS_SWIFT_NAME(invalidArgumentError(name:value:message:underlyingError:)); -// UNCRUSTIFY_FORMAT_ON - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)invalidArgumentErrorWithDomain:(NSErrorDomain)domain - name:(NSString *)name - value:(nullable id)value - message:(nullable NSString *)message - underlyingError:(nullable NSError *)underlyingError -NS_SWIFT_NAME(invalidArgumentError(domain:name:value:message:underlyingError:)); -// UNCRUSTIFY_FORMAT_ON - -// MARK: - Required Argument Errors - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)requiredArgumentErrorWithName:(NSString *)name - message:(nullable NSString *)message - underlyingError:(nullable NSError *)underlyingError -NS_SWIFT_NAME(requiredArgumentError(name:message:underlyingError:)); -// UNCRUSTIFY_FORMAT_ON - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)requiredArgumentErrorWithDomain:(NSErrorDomain)domain - name:(NSString *)name - message:(nullable NSString *)message - underlyingError:(nullable NSError *)underlyingError - NS_SWIFT_NAME(requiredArgumentError(domain:name:message:underlyingError:)); -// UNCRUSTIFY_FORMAT_ON - -// MARK: - Unknown Errors - -// UNCRUSTIFY_FORMAT_OFF -- (NSError *)unknownErrorWithMessage:(nullable NSString *)message - userInfo:(nullable NSDictionary *)userInfo -NS_SWIFT_NAME(unknownError(message:userInfo:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryAttempting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryAttempting.h deleted file mode 100644 index a7e03eed..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryAttempting.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - A formal protocol very similar to the informal protocol NSErrorRecoveryAttempting - Internal use only - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(ErrorRecoveryAttempting) -@protocol FBSDKErrorRecoveryAttempting - -/** - Attempt the recovery - @param error the error - @param completionHandler the handler called upon completion of error recovery - - Attempt recovery from the error, and call the completion handler. The value passed for didRecover must be YES if error recovery was completely successful, NO otherwise. - */ -- (void)attemptRecoveryFromError:(NSError *)error - completionHandler:(void (^)(BOOL didRecover))completionHandler -NS_SWIFT_NAME(attemptRecovery(from:completion:)); -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryConfiguration.h deleted file mode 100644 index 059b0a6f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorRecoveryConfiguration.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ErrorRecoveryConfiguration) -@interface FBSDKErrorRecoveryConfiguration : NSObject - -@property (nonatomic, readonly) NSString *localizedRecoveryDescription; -@property (nonatomic, readonly) NSArray *localizedRecoveryOptionDescriptions; -@property (nonatomic, readonly) FBSDKGraphRequestError errorCategory; -@property (nonatomic, readonly) NSString *recoveryActionName; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithRecoveryDescription:(NSString *)description - optionDescriptions:(NSArray *)optionDescriptions - category:(FBSDKGraphRequestError)category - recoveryActionName:(NSString *)recoveryActionName NS_DESIGNATED_INITIALIZER; -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorReporter.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorReporter.h deleted file mode 100644 index e70741c3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorReporter.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKFileManaging; -@protocol FBSDKSettings; -@protocol FBSDKFileDataExtracting; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(ErrorReporter) -@interface FBSDKErrorReporter : NSObject - -@property (class, nonatomic, readonly) FBSDKErrorReporter *shared; - -@property (nonatomic, strong) id graphRequestFactory; -@property (nonatomic, strong) id fileManager; -@property (nonatomic, strong) id settings; -@property (nonatomic, strong) Class dataExtractor; -@property (nonatomic, readonly, strong) NSString *directoryPath; -@property (nonatomic) BOOL isEnabled; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (void)saveError:(NSInteger)errorCode - errorDomain:(NSErrorDomain)errorDomain - message:(nullable NSString *)message; - -- (instancetype)initWithGraphRequestFactory:(id)graphRequestFactory - fileManager:(id)fileManager - settings:(id)settings - fileDataExtractor:(Class)dataExtractor; -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorReporting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorReporting.h deleted file mode 100644 index 5800dcd1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKErrorReporting.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(ErrorReporting) -@protocol FBSDKErrorReporting - -- (void)enable; -- (void)saveError:(NSInteger)errorCode - errorDomain:(NSErrorDomain)errorDomain - message:(nullable NSString *)message; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKEventLogging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKEventLogging.h deleted file mode 100644 index 830c0adf..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKEventLogging.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import -#import -#import - -@class FBSDKAccessToken; - - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(EventLogging) -@protocol FBSDKEventLogging - -@property (nonatomic, readonly) FBSDKAppEventsFlushBehavior flushBehavior; - -- (void)flushForReason:(FBSDKAppEventsFlushReason)flushReason; - -- (void)logEvent:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters; - -- (void)logEvent:(FBSDKAppEventName)eventName - valueToSum:(double)valueToSum - parameters:(nullable NSDictionary *)parameters; - -- (void)logInternalEvent:(FBSDKAppEventName)eventName - isImplicitlyLogged:(BOOL)isImplicitlyLogged; - -- (void)logInternalEvent:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters - isImplicitlyLogged:(BOOL)isImplicitlyLogged; - -- (void)logInternalEvent:(FBSDKAppEventName)eventName - parameters:(nullable NSDictionary *)parameters - isImplicitlyLogged:(BOOL)isImplicitlyLogged - accessToken:(nullable FBSDKAccessToken *)accessToken; - -- (void)logInternalEvent:(FBSDKAppEventName)eventName - valueToSum:(double)valueToSum - isImplicitlyLogged:(BOOL)isImplicitlyLogged; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKEventProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKEventProcessing.h deleted file mode 100644 index 77ea4a01..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKEventProcessing.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_EventProcessing) -@protocol FBSDKEventProcessing - -- (NSString *)processSuggestedEvents:(NSString *)textFeature - denseData:(nullable float *)denseData; - -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKEventsProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKEventsProcessing.h deleted file mode 100644 index 0ee10aec..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKEventsProcessing.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_EventsProcessing) -@protocol FBSDKEventsProcessing - -- (void)processEvents:(NSMutableArray *> *)events; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeature.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeature.h deleted file mode 100644 index 3eabc556..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeature.h +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - FBSDKFeature enum - Defines features in SDK - - Sample: - FBSDKFeatureAppEvents = 0x00010000, - ^ ^ ^ ^ - | | | | - kit | | | - feature | | - sub-feature | - sub-sub-feature - 1st byte: kit - 2nd byte: feature - 3rd byte: sub-feature - 4th byte: sub-sub-feature - - @warning INTERNAL - DO NOT USE - */ -typedef NS_ENUM(NSUInteger, FBSDKFeature) { - FBSDKFeatureNone = 0x00000000, - // Features in CoreKit - /// Essential of CoreKit - FBSDKFeatureCore = 0x01000000, - /// App Events - FBSDKFeatureAppEvents = 0x01010000, - FBSDKFeatureCodelessEvents = 0x01010100, - FBSDKFeatureRestrictiveDataFiltering = 0x01010200, - FBSDKFeatureAAM = 0x01010300, - FBSDKFeaturePrivacyProtection = 0x01010400, - FBSDKFeatureSuggestedEvents = 0x01010401, - FBSDKFeatureIntelligentIntegrity = 0x01010402, - FBSDKFeatureModelRequest = 0x01010403, - FBSDKFeatureEventDeactivation = 0x01010500, - FBSDKFeatureSKAdNetwork = 0x01010600, - FBSDKFeatureSKAdNetworkConversionValue = 0x01010601, - FBSDKFeatureATELogging = 0x01010700, - FBSDKFeatureAEM = 0x01010800, - FBSDKFeatureAEMConversionFiltering = 0x01010801, - FBSDKFeatureAEMCatalogMatching = 0x01010802, - FBSDKFeatureAEMAdvertiserRuleMatchInServer = 0x01010803, - FBSDKFeatureAppEventsCloudbridge = 0x01010900, - /// Instrument - FBSDKFeatureInstrument = 0x01020000, - FBSDKFeatureCrashReport = 0x01020100, - FBSDKFeatureCrashShield = 0x01020101, - FBSDKFeatureErrorReport = 0x01020200, - - // Features in LoginKit - /// Essential of LoginKit - FBSDKFeatureLogin = 0x02000000, - - // Features in ShareKit - /// Essential of ShareKit - FBSDKFeatureShare = 0x03000000, - - // Features in GamingServicesKit - /// Essential of GamingServicesKit - FBSDKFeatureGamingServices = 0x04000000, -} NS_SWIFT_NAME(SDKFeature); - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef void (^FBSDKFeatureManagerBlock)(BOOL enabled); - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeatureChecking.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeatureChecking.h deleted file mode 100644 index bdb5d532..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeatureChecking.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(FeatureChecking) -@protocol FBSDKFeatureChecking - -- (BOOL)isEnabled:(FBSDKFeature)feature; - -- (void)checkFeature:(FBSDKFeature)feature - completionBlock:(FBSDKFeatureManagerBlock)completionBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeatureDisabling.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeatureDisabling.h deleted file mode 100644 index 26696faa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeatureDisabling.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Protocol exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_FeatureDisabling) -@protocol FBSDKFeatureDisabling - -- (void)disableFeature:(FBSDKFeature)feature; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtracting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtracting.h deleted file mode 100644 index 99c6bd64..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtracting.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_FeatureExtracting) -@protocol FBSDKFeatureExtracting - -+ (nullable float *)getDenseFeatures:(NSDictionary *)viewHierarchy; -+ (NSString *)getTextFeature:(NSString *)text - withScreenName:(NSString *)screenName; -+ (void)loadRulesForKey:(NSString *)useCaseKey; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtractor.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtractor.h deleted file mode 100644 index 22ace15c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKFeatureExtractor.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_FeatureExtractor) -@interface FBSDKFeatureExtractor : NSObject - -@property (class, nullable, nonatomic) id rulesFromKeyProvider; - -+ (void)configureWithRulesFromKeyProvider:(id)rulesFromKeyProvider -NS_SWIFT_NAME(configure(rulesFromKeyProvider:)); - -+ (void)loadRulesForKey:(NSString *)useCaseKey; - -+ (NSString *)getTextFeature:(NSString *)text - withScreenName:(NSString *)screenName; - -+ (nullable float *)getDenseFeatures:(NSDictionary *)viewHierarchy; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManager.h deleted file mode 100644 index d0374d72..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManager.h +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -#define FBSDK_GATEKEEPER_MANAGER_CACHE_TIMEOUT (60 * 60) - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKSettings; -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKGraphRequestConnectionFactory; -@protocol FBSDKDataPersisting; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef NSString *const FBSDKGateKeeperKey NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(_GateKeeperManager.GateKeeperKey); -typedef void (^ FBSDKGKManagerBlock)(NSError *_Nullable error) -NS_SWIFT_NAME(_GKManagerBlock); - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_GateKeeperManager) -@interface FBSDKGateKeeperManager : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -+ (void) configureWithSettings:(id)settings - graphRequestFactory:(id)graphRequestFactory - graphRequestConnectionFactory:(id)graphRequestConnectionFactory - store:(id)store -NS_SWIFT_NAME(configure(settings:graphRequestFactory:graphRequestConnectionFactory:store:)); - -/// Returns the locally cached configuration. -+ (BOOL)boolForKey:(NSString *)key defaultValue:(BOOL)defaultValue; - -/** - Load the gate keeper configurations from server - - WARNING: Must call `configure` before loading gate keepers. - */ -+ (void)loadGateKeepers:(nullable FBSDKGKManagerBlock)completionBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManaging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManaging.h deleted file mode 100644 index 386908a5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGateKeeperManaging.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -typedef void (^FBSDKGKManagerBlock)(NSError *_Nullable error); - -NS_SWIFT_NAME(_GateKeeperManaging) -@protocol FBSDKGateKeeperManaging - -/// Returns the bool value of a GateKeeper. -+ (BOOL)boolForKey:(nonnull NSString *)key defaultValue:(BOOL)defaultValue; - -+ (void)loadGateKeepers:(nonnull FBSDKGKManagerBlock)completionBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphErrorRecoveryProcessor.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphErrorRecoveryProcessor.h deleted file mode 100644 index 62f9f04f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphErrorRecoveryProcessor.h +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKGraphErrorRecoveryProcessor; -@protocol FBSDKGraphRequest; - -/// Defines a delegate for `FBSDKGraphErrorRecoveryProcessor`. -NS_SWIFT_NAME(GraphErrorRecoveryProcessorDelegate) -@protocol FBSDKGraphErrorRecoveryProcessorDelegate - -/** - Indicates the error recovery has been attempted. - @param processor the processor instance. - @param didRecover YES if the recovery was successful. - @param error the error that that was attempted to be recovered from. - */ -- (void)processorDidAttemptRecovery:(FBSDKGraphErrorRecoveryProcessor *)processor - didRecover:(BOOL)didRecover - error:(nullable NSError *)error; - -@optional -/** - Indicates the processor is about to process the error. - @param processor the processor instance. - @param error the error is about to be processed. - - return NO if the processor should not process the error. For example, - if you want to prevent alerts of localized messages but otherwise perform retries and recoveries, - you could return NO for errors where userInfo[FBSDKGraphRequestErrorKey] equal to FBSDKGraphRequestErrorOther - */ -- (BOOL)processorWillProcessError:(FBSDKGraphErrorRecoveryProcessor *)processor - error:(nullable NSError *)error; - -@end - -/** - Defines a type that can process Facebook NSErrors with best practices. - - Facebook NSErrors can contain FBSDKErrorRecoveryAttempting instances to recover from errors, or - localized messages to present to the user. This class will process the instances as follows: - - 1. If the error is temporary as indicated by FBSDKGraphRequestErrorKey, assume the recovery succeeded and - notify the delegate. - 2. If a FBSDKErrorRecoveryAttempting instance is available, display an alert (dispatched to main thread) - with the recovery options and call the instance's attemptRecoveryFromError method. - 3. If a FBSDKErrorRecoveryAttempting is not available, check the userInfo for FBSDKLocalizedErrorDescriptionKey - and present that in an alert (dispatched to main thread). - - By default, FBSDKGraphRequests use this type to process errors and retry the request upon a successful - recovery. - - Note that Facebook recovery attempters can present UI or even cause app switches (such as to login). Any such - work is dispatched to the main thread (therefore your request handlers may then run on the main thread). - - Login recovery requires FBSDKLoginKit. Login will prompt the user - for all permissions last granted. If any are declined on the new request, the recovery is not successful but - the `[FBSDKAccessToken currentAccessToken]` might still have been updated. - . - */ -NS_SWIFT_NAME(GraphErrorRecoveryProcessor) -@interface FBSDKGraphErrorRecoveryProcessor : NSObject - -/// Initializes a GraphErrorRecoveryProcessor with an access token string. -- (instancetype)initWithAccessTokenString:(NSString *)accessTokenString; - -/** - Attempts to process the error, return YES if the error can be processed. - @param error the error to process. - @param request the related request that may be reissued. - @param delegate the delegate that will be retained until recovery is complete. - */ -- (BOOL)processError:(NSError *)error - request:(id)request - delegate:(nullable id)delegate; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequest.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequest.h deleted file mode 100644 index 156f5ddb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequest.h +++ /dev/null @@ -1,168 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import -#import -#import -#import - -@protocol FBSDKSettings; - -NS_ASSUME_NONNULL_BEGIN -/** - Represents a request to the Facebook Graph API. - - `FBSDKGraphRequest` encapsulates the components of a request (the - Graph API path, the parameters, error recovery behavior) and should be - used in conjunction with `FBSDKGraphRequestConnection` to issue the request. - - Nearly all Graph APIs require an access token. Unless specified, the - `[FBSDKAccessToken currentAccessToken]` is used. Therefore, most requests - will require login first (see `FBSDKLoginManager` in FBSDKLoginKit.framework). - - A `- start` method is provided for convenience for single requests. - - By default, FBSDKGraphRequest will attempt to recover any errors returned from - Facebook. You can disable this via `disableErrorRecovery:`. - - See FBSDKGraphErrorRecoveryProcessor - */ -NS_SWIFT_NAME(GraphRequest) -@interface FBSDKGraphRequest : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// UNCRUSTIFY_FORMAT_OFF -+ (void) configureWithSettings:(id)settings - currentAccessTokenStringProvider:(Class)accessTokenProvider - graphRequestConnectionFactory:(id)_graphRequestConnectionFactory -NS_SWIFT_NAME(configure(settings:currentAccessTokenStringProvider:graphRequestConnectionFactory:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Initializes a new instance that use use `[FBSDKAccessToken currentAccessToken]`. - @param graphPath the graph path (e.g., @"me"). - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath; - -/** - Initializes a new instance that use use `[FBSDKAccessToken currentAccessToken]`. - @param graphPath the graph path (e.g., @"me"). - @param method the HTTP method. Empty String defaults to @"GET". - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath - HTTPMethod:(FBSDKHTTPMethod)method; - -/** - Initializes a new instance that use use `[FBSDKAccessToken currentAccessToken]`. - @param graphPath the graph path (e.g., @"me"). - @param parameters the optional parameters dictionary. - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters; - -/** - Initializes a new instance that use use `[FBSDKAccessToken currentAccessToken]`. - @param graphPath the graph path (e.g., @"me"). - @param parameters the optional parameters dictionary. - @param method the HTTP method. Empty String defaults to @"GET". - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters - HTTPMethod:(FBSDKHTTPMethod)method; - -/** - Initializes a new instance. - @param graphPath the graph path (e.g., @"me"). - @param parameters the optional parameters dictionary. - @param tokenString the token string to use. Specifying nil will cause no token to be used. - @param version the optional Graph API version (e.g., @"v2.0"). nil defaults to `[FBSDKSettings graphAPIVersion]`. - @param method the HTTP method. Empty String defaults to @"GET". - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters - tokenString:(nullable NSString *)tokenString - version:(nullable NSString *)version - HTTPMethod:(FBSDKHTTPMethod)method - NS_DESIGNATED_INITIALIZER; - -/** - Initializes a new instance. - @param graphPath the graph path (e.g., @"me"). - @param parameters the optional parameters dictionary. - @param requestFlags flags that indicate how a graph request should be treated in various scenarios - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath - parameters:(nullable NSDictionary *)parameters - flags:(FBSDKGraphRequestFlags)requestFlags; - -/** - Initializes a new instance. - @param graphPath the graph path (e.g., @"me"). - @param parameters the optional parameters dictionary. - @param tokenString the token string to use. Specifying nil will cause no token to be used. - @param HTTPMethod the HTTP method. Empty String defaults to @"GET". - @param flags flags that indicate how a graph request should be treated in various scenarios - */ -- (instancetype)initWithGraphPath:(NSString *)graphPath - parameters:(nullable NSDictionary *)parameters - tokenString:(nullable NSString *)tokenString - HTTPMethod:(nullable NSString *)HTTPMethod - flags:(FBSDKGraphRequestFlags)flags; - -/// The request parameters. -@property (nonatomic, copy) NSDictionary *parameters; - -/// The access token string used by the request. -@property (nullable, nonatomic, readonly, copy) NSString *tokenString; - -/// The Graph API endpoint to use for the request, for example "me". -@property (nonatomic, readonly, copy) NSString *graphPath; - -/// The HTTPMethod to use for the request, for example "GET" or "POST". -@property (nonatomic, readonly, copy) FBSDKHTTPMethod HTTPMethod; - -/// The Graph API version to use (e.g., "v2.0") -@property (nonatomic, readonly, copy) NSString *version; - -/** - If set, disables the automatic error recovery mechanism. - @param disable whether to disable the automatic error recovery mechanism - - By default, non-batched FBSDKGraphRequest instances will automatically try to recover - from errors by constructing a `FBSDKGraphErrorRecoveryProcessor` instance that - re-issues the request on successful recoveries. The re-issued request will call the same - handler as the receiver but may occur with a different `FBSDKGraphRequestConnection` instance. - - This will override [FBSDKSettings setGraphErrorRecoveryDisabled:]. - */ - -// UNCRUSTIFY_FORMAT_OFF -- (void)setGraphErrorRecoveryDisabled:(BOOL)disable -NS_SWIFT_NAME(setGraphErrorRecovery(disabled:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Starts a connection to the Graph API. - @param completion The handler block to call when the request completes. - */ -- (id)startWithCompletion:(nullable FBSDKGraphRequestCompletion)completion; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnecting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnecting.h deleted file mode 100644 index 36ce296e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnecting.h +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKGraphRequest; -@protocol FBSDKGraphRequestConnecting; -@protocol FBSDKGraphRequestConnectionDelegate; -@class FBSDKGraphRequestMetadata; - -/** - FBSDKGraphRequestCompletion - - A block that is passed to addRequest to register for a callback with the results of that - request once the connection completes. - - Pass a block of this type when calling addRequest. This will be called once - the request completes. The call occurs on the UI thread. - - @param connection The connection that sent the request. - - @param result The result of the request. This is a translation of - JSON data to `NSDictionary` and `NSArray` objects. This - is nil if there was an error. - - @param error The `NSError` representing any error that occurred. - */ -NS_SWIFT_NAME(GraphRequestCompletion) -typedef void (^FBSDKGraphRequestCompletion)(id _Nullable connection, - id _Nullable result, - NSError *_Nullable error); - -/// A protocol to describe an object that can manage graph requests -NS_SWIFT_NAME(GraphRequestConnecting) -@protocol FBSDKGraphRequestConnecting - -@property (nonatomic, assign) NSTimeInterval timeout; -@property (nullable, nonatomic, weak) id delegate; - -- (void)addRequest:(id)request - completion:(FBSDKGraphRequestCompletion)handler; - -- (void)start; -- (void)cancel; - - -/** - Internal property exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (nonatomic, readonly) NSMutableArray *requests; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h deleted file mode 100644 index 4882c97f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnection.h +++ /dev/null @@ -1,212 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -@protocol FBSDKURLSessionProxyProviding; -@protocol FBSDKErrorConfigurationProviding; -@protocol FBSDKGraphRequestPiggybackManaging; -@protocol FBSDKSettings; -@protocol FBSDKGraphRequestConnectionFactory; -@protocol FBSDKEventLogging; -@protocol FBSDKOperatingSystemVersionComparing; -@protocol FBSDKMacCatalystDetermining; -@protocol FBSDKAccessTokenProviding; -@protocol FBSDKErrorCreating; -@protocol FBSDKAuthenticationTokenProviding; - -NS_ASSUME_NONNULL_BEGIN - -/** - The key in the result dictionary for requests to old versions of the Graph API - whose response is not a JSON object. - - When a request returns a non-JSON response (such as a "true" literal), that response - will be wrapped into a dictionary using this const as the key. This only applies for very few Graph API - prior to v2.1. - */ -FOUNDATION_EXPORT NSString *const FBSDKNonJSONResponseProperty -NS_SWIFT_NAME(NonJSONResponseProperty); - -@protocol FBSDKGraphRequest; - -/** - The `FBSDKGraphRequestConnection` represents a single connection to Facebook to service a request. - - The request settings are encapsulated in a reusable object. The - `FBSDKGraphRequestConnection` object encapsulates the concerns of a single communication - e.g. starting a connection, canceling a connection, or batching requests. - */ -NS_SWIFT_NAME(GraphRequestConnection) -@interface FBSDKGraphRequestConnection : NSObject - -/// The default timeout on all FBSDKGraphRequestConnection instances. Defaults to 60 seconds. -@property (class, nonatomic, assign) NSTimeInterval defaultConnectionTimeout; - -/// The delegate object that receives updates. -@property (nullable, nonatomic, weak) id delegate; - -/// Gets or sets the timeout interval to wait for a response before giving up. -@property (nonatomic, assign) NSTimeInterval timeout; - -/** - The raw response that was returned from the server. (readonly) - - This property can be used to inspect HTTP headers that were returned from - the server. - - The property is nil until the request completes. If there was a response - then this property will be non-nil during the FBSDKGraphRequestBlock callback. - */ -@property (nullable, nonatomic, readonly, retain) NSHTTPURLResponse *urlResponse; - -/** - Determines the operation queue that is used to call methods on the connection's delegate. - - By default, a connection is scheduled on the current thread in the default mode when it is created. - You cannot reschedule a connection after it has started. - */ -@property (nullable, nonatomic) NSOperationQueue *delegateQueue; - -/// @methodgroup Class methods - -/// @methodgroup Adding requests - -/** - @method - - This method adds an object to this connection. - - @param request A request to be included in the round-trip when start is called. - @param completion A handler to call back when the round-trip completes or times out. - - The completion handler is retained until the block is called upon the - completion or cancellation of the connection. - */ -- (void)addRequest:(id)request - completion:(FBSDKGraphRequestCompletion)completion; - -/** - @method - - This method adds an object to this connection. - - @param request A request to be included in the round-trip when start is called. - - @param completion A handler to call back when the round-trip completes or times out. - The handler will be invoked on the main thread. - - @param name A name for this request. This can be used to feed - the results of one request to the input of another in the same - `FBSDKGraphRequestConnection` as described in - [Graph API Batch Requests]( https://developers.facebook.com/docs/reference/api/batch/ ). - - The completion handler is retained until the block is called upon the - completion or cancellation of the connection. This request can be named - to allow for using the request's response in a subsequent request. - */ -- (void)addRequest:(id)request - name:(NSString *)name - completion:(FBSDKGraphRequestCompletion)completion; - -/** - @method - - This method adds an object to this connection. - - @param request A request to be included in the round-trip when start is called. - - @param completion A handler to call back when the round-trip completes or times out. - - @param parameters The dictionary of parameters to include for this request - as described in [Graph API Batch Requests]( https://developers.facebook.com/docs/reference/api/batch/ ). - Examples include "depends_on", "name", or "omit_response_on_success". - - The completion handler is retained until the block is called upon the - completion or cancellation of the connection. This request can be named - to allow for using the request's response in a subsequent request. - */ -- (void)addRequest:(id)request - parameters:(nullable NSDictionary *)parameters - completion:(FBSDKGraphRequestCompletion)completion; - -/// @methodgroup Instance methods - -/** - @method - - Signals that a connection should be logically terminated as the - application is no longer interested in a response. - - Synchronously calls any handlers indicating the request was cancelled. Cancel - does not guarantee that the request-related processing will cease. It - does promise that all handlers will complete before the cancel returns. A call to - cancel prior to a start implies a cancellation of all requests associated - with the connection. - */ -- (void)cancel; - -/** - @method - - This method starts a connection with the server and is capable of handling all of the - requests that were added to the connection. - - By default, a connection is scheduled on the current thread in the default mode when it is created. - See `setDelegateQueue:` for other options. - - This method cannot be called twice for an `FBSDKGraphRequestConnection` instance. - */ -- (void)start; - -/** - @method - - Overrides the default version for a batch request - - The SDK automatically prepends a version part, such as "v2.0" to API paths in order to simplify API versioning - for applications. If you want to override the version part while using batch requests on the connection, call - this method to set the version for the batch request. - - @param version This is a string in the form @"v2.0" which will be used for the version part of an API path - */ -- (void)overrideGraphAPIVersion:(NSString *)version; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -+ (void)setCanMakeRequests; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -+ (void)configureWithURLSessionProxyFactory:(nonnull id)proxyFactory - errorConfigurationProvider:(nonnull id)errorConfigurationProvider - piggybackManager:(nonnull id)piggybackManager - settings:(nonnull id)settings - graphRequestConnectionFactory:(nonnull id)factory - eventLogger:(nonnull id)eventLogger - operatingSystemVersionComparer:(nonnull id)operatingSystemVersionComparer - macCatalystDeterminator:(nonnull id)macCatalystDeterminator - accessTokenProvider:(nonnull Class)accessTokenProvider - errorFactory:(nonnull id)errorFactory - authenticationTokenProvider:(nonnull Class)authenticationTokenProvider -NS_SWIFT_NAME(configure(urlSessionProxyFactory:errorConfigurationProvider:piggybackManager:settings:graphRequestConnectionFactory:eventLogger:operatingSystemVersionComparer:macCatalystDeterminator:accessTokenProvider:errorFactory:authenticationTokenProvider:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionDelegate.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionDelegate.h deleted file mode 100644 index 738ad47d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionDelegate.h +++ /dev/null @@ -1,93 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - @protocol - - The `FBSDKGraphRequestConnectionDelegate` protocol defines the methods used to receive network - activity progress information from a . - */ -NS_SWIFT_NAME(GraphRequestConnectionDelegate) -@protocol FBSDKGraphRequestConnectionDelegate - -@optional - -/** - @method - - Tells the delegate the request connection will begin loading - - If the is created using one of the convenience factory methods prefixed with - start, the object returned from the convenience method has already begun loading and this method - will not be called when the delegate is set. - - @param connection The request connection that is starting a network request - */ -- (void)requestConnectionWillBeginLoading:(id)connection; - -/** - @method - - Tells the delegate the request connection finished loading - - If the request connection completes without a network error occurring then this method is called. - Invocation of this method does not indicate success of every made, only that the - request connection has no further activity. Use the error argument passed to the FBSDKGraphRequestBlock - block to determine success or failure of each . - - This method is invoked after the completion handler for each . - - @param connection The request connection that successfully completed a network request - */ -- (void)requestConnectionDidFinishLoading:(id)connection; - -/** - @method - - Tells the delegate the request connection failed with an error - - If the request connection fails with a network error then this method is called. The `error` - argument specifies why the network connection failed. The `NSError` object passed to the - FBSDKGraphRequestBlock block may contain additional information. - - @param connection The request connection that successfully completed a network request - @param error The `NSError` representing the network error that occurred, if any. May be nil - in some circumstances. Consult the `NSError` for the for reliable - failure information. - */ -- (void)requestConnection:(id)connection - didFailWithError:(NSError *)error; - -/** - @method - - Tells the delegate how much data has been sent and is planned to send to the remote host - - The byte count arguments refer to the aggregated objects, not a particular . - - Like `NSURLSession`, the values may change in unexpected ways if data needs to be resent. - - @param connection The request connection transmitting data to a remote host - @param bytesWritten The number of bytes sent in the last transmission - @param totalBytesWritten The total number of bytes sent to the remote host - @param totalBytesExpectedToWrite The total number of bytes expected to send to the remote host - */ -- (void) requestConnection:(id)connection - didSendBodyData:(NSInteger)bytesWritten - totalBytesWritten:(NSInteger)totalBytesWritten - totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactory.h deleted file mode 100644 index 19e62d20..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactory.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type not intended for use outside of the SDKs. - - A factory for providing objects that conform to `GraphRequestConnecting`. - */ -NS_SWIFT_NAME(GraphRequestConnectionFactory) -@interface FBSDKGraphRequestConnectionFactory : NSObject -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactoryProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactoryProtocol.h deleted file mode 100644 index 96b43dfa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestConnectionFactoryProtocol.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKGraphRequestConnecting; - -/// Describes anything that can provide instances of `FBSDKGraphRequestConnecting` -NS_SWIFT_NAME(GraphRequestConnectionFactoryProtocol) -@protocol FBSDKGraphRequestConnectionFactory - -- (id)createGraphRequestConnection; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h deleted file mode 100644 index 3775cb4f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// A container class for data attachments so that additional metadata can be provided about the attachment. -NS_SWIFT_NAME(GraphRequestDataAttachment) -@interface FBSDKGraphRequestDataAttachment : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Initializes the receiver with the attachment data and metadata. - @param data The attachment data (retained, not copied) - @param filename The filename for the attachment - @param contentType The content type for the attachment - */ -- (instancetype)initWithData:(NSData *)data - filename:(NSString *)filename - contentType:(NSString *)contentType - NS_DESIGNATED_INITIALIZER; - -/// The content type for the attachment. -@property (nonatomic, readonly, copy) NSString *contentType; - -/// The attachment data. -@property (nonatomic, readonly, strong) NSData *data; - -/// The filename for the attachment. -@property (nonatomic, readonly, copy) NSString *filename; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactory.h deleted file mode 100644 index 6661ac1c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactory.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKGraphRequestFactory; - -/** - Internal type not intended for use outside of the SDKs. - - A factory for providing objects that conform to `GraphRequest` - */ -NS_SWIFT_NAME(GraphRequestFactory) -@interface FBSDKGraphRequestFactory : NSObject -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactoryProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactoryProtocol.h deleted file mode 100644 index eb85a3ba..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFactoryProtocol.h +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -@protocol FBSDKGraphRequest; - -typedef NSString *const FBSDKHTTPMethod NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(HTTPMethod); - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type not intended for use outside of the SDKs. - -Describes anything that can provide instances of `GraphRequestProtocol` - */ -NS_SWIFT_NAME(GraphRequestFactoryProtocol) -@protocol FBSDKGraphRequestFactory - -- (id)createGraphRequestWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters - tokenString:(nullable NSString *)tokenString - HTTPMethod:(nullable FBSDKHTTPMethod)method - flags:(FBSDKGraphRequestFlags)flags; - -- (id)createGraphRequestWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters; - -- (id)createGraphRequestWithGraphPath:(NSString *)graphPath; - -- (id)createGraphRequestWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters - HTTPMethod:(FBSDKHTTPMethod)method; - -- (id)createGraphRequestWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters - tokenString:(nullable NSString *)tokenString - version:(nullable NSString *)version - HTTPMethod:(FBSDKHTTPMethod)method; - -- (id)createGraphRequestWithGraphPath:(NSString *)graphPath - parameters:(NSDictionary *)parameters - flags:(FBSDKGraphRequestFlags)flags; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFlags.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFlags.h deleted file mode 100644 index 68e7c8da..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestFlags.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// Flags that indicate how a graph request should be treated in various scenarios -typedef NS_OPTIONS(NSUInteger, FBSDKGraphRequestFlags) { - FBSDKGraphRequestFlagNone = 0, - /// indicates this request should not use a client token as its token parameter - FBSDKGraphRequestFlagSkipClientToken = 1 << 1, - /// indicates this request should not close the session if its response is an oauth error - FBSDKGraphRequestFlagDoNotInvalidateTokenOnError = 1 << 2, - /// indicates this request should not perform error recovery - FBSDKGraphRequestFlagDisableErrorRecovery = 1 << 3, -} NS_SWIFT_NAME(GraphRequestFlags); - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestHTTPMethod.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestHTTPMethod.h deleted file mode 100644 index e79728d9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestHTTPMethod.h +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/// typedef for FBSDKHTTPMethod -typedef NSString *const FBSDKHTTPMethod NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(HTTPMethod); - -/// GET Request -FOUNDATION_EXPORT FBSDKHTTPMethod FBSDKHTTPMethodGET NS_SWIFT_NAME(get); - -/// POST Request -FOUNDATION_EXPORT FBSDKHTTPMethod FBSDKHTTPMethodPOST NS_SWIFT_NAME(post); - -/// DELETE Request -FOUNDATION_EXPORT FBSDKHTTPMethod FBSDKHTTPMethodDELETE NS_SWIFT_NAME(delete); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestMetadata.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestMetadata.h deleted file mode 100644 index 8792b8a0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestMetadata.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKGraphRequest; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - Used to facilitate FBSDKGraphRequest processing, specifically - associating FBSDKGraphRequest and FBSDKGraphRequestBlock instances and necessary - data for retry processing. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(GraphRequestMetadata) -@interface FBSDKGraphRequestMetadata : NSObject - -@property (nonatomic, retain) id request; -@property (nonatomic, copy) FBSDKGraphRequestCompletion completionHandler; -@property (nonatomic, copy) NSDictionary *batchParameters; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithRequest:(id)request - completionHandler:(nullable FBSDKGraphRequestCompletion)handler - batchParameters:(nullable NSDictionary *)batchParameters - NS_DESIGNATED_INITIALIZER; - -- (void)invokeCompletionHandlerForConnection:(id)connection - withResults:(id)results - error:(nullable NSError *)error; -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestPiggybackManaging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestPiggybackManaging.h deleted file mode 100644 index 0e1f76b9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestPiggybackManaging.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_GraphRequestPiggybackManaging) -@protocol FBSDKGraphRequestPiggybackManaging - -- (void)addPiggybackRequests:(id)connection; -- (void)addRefreshPiggyback:(id)connection - permissionHandler:(nullable FBSDKGraphRequestCompletion)permissionHandler; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h deleted file mode 100644 index 6cc4da38..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestProtocol.h +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKGraphRequestConnection; -@protocol FBSDKGraphRequestConnecting; - -typedef void (^FBSDKGraphRequestCompletion)(id _Nullable connection, - id _Nullable result, - NSError *_Nullable error); - -typedef void (^FBSDKGraphRequestBlock)(FBSDKGraphRequestConnection *_Nullable connection, - id _Nullable result, - NSError *_Nullable error); - -/// A protocol to describe anything that represents a graph request -NS_SWIFT_NAME(GraphRequestProtocol) -@protocol FBSDKGraphRequest - -/// The request parameters. -@property (nonatomic, copy) NSDictionary *parameters; - -/// The access token string used by the request. -@property (nullable, nonatomic, readonly, copy) NSString *tokenString; - -/// The Graph API endpoint to use for the request, for example "me". -@property (nonatomic, readonly, copy) NSString *graphPath; - -/// The HTTPMethod to use for the request, for example "GET" or "POST". -@property (nonatomic, readonly, copy) FBSDKHTTPMethod HTTPMethod; - -/// The Graph API version to use (e.g., "v2.0") -@property (nonatomic, readonly, copy) NSString *version; - -/// The graph request flags to use -@property (nonatomic, readonly, assign) FBSDKGraphRequestFlags flags; - -/// Convenience property to determine if graph error recover is disabled -@property (nonatomic, getter = isGraphErrorRecoveryDisabled) BOOL graphErrorRecoveryDisabled; - -/// Convenience property to determine if the request has attachments -@property (nonatomic, readonly) BOOL hasAttachments; - -/** - Starts a connection to the Graph API. - @param completion The handler block to call when the request completes. - */ -- (id)startWithCompletion:(nullable FBSDKGraphRequestCompletion)completion; - -/// A formatted description of the graph request -- (NSString *)formattedDescription; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactory.h deleted file mode 100644 index c976ecb7..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactory.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKEventLogging; -@protocol FBSDKNotificationDelivering; -@protocol FBSDKAccessTokenProviding; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ImpressionLoggerFactory) -@interface FBSDKImpressionLoggerFactory : NSObject - -@property (nonatomic, readonly) id graphRequestFactory; -@property (nonatomic, readonly) id eventLogger; -@property (nonatomic, readonly) id notificationCenter; -@property (nonatomic, readonly) Class accessTokenWallet; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -// UNCRUSTIFY_FORMAT_OFF -- (instancetype)initWithGraphRequestFactory:(nonnull id)graphRequestFactory - eventLogger:(nonnull id)eventLogger - notificationCenter:(nonnull id)notificationCenter - accessTokenWallet:(nonnull Class)accessTokenWallet - NS_DESIGNATED_INITIALIZER - NS_SWIFT_NAME(init(graphRequestFactory:eventLogger:notificationCenter:accessTokenWallet:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactoryProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactoryProtocol.h deleted file mode 100644 index 5ef206c7..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggerFactoryProtocol.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ImpressionLoggerFactoryProtocol) -@protocol FBSDKImpressionLoggerFactory - -- (id)makeImpressionLoggerWithEventName:(FBSDKAppEventName)eventName; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKImpressionLogging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKImpressionLogging.h deleted file mode 100644 index 0cb0f2cb..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKImpressionLogging.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(ImpressionLogging) -@protocol FBSDKImpressionLogging - -- (void)logImpressionWithIdentifier:(NSString *)identifier - parameters:(nullable NSDictionary *)parameters; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggingButton.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggingButton.h deleted file mode 100644 index 3c4b8b2f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKImpressionLoggingButton.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKImpressionLoggerFactory; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(ImpressionLoggingButton) -@interface FBSDKImpressionLoggingButton : UIButton - -+ (void)configureWithImpressionLoggerFactory:(id)impressionLoggerFactory -NS_SWIFT_NAME(configure(impressionLoggerFactory:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKInstrumentManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKInstrumentManager.h deleted file mode 100644 index b9ed31dc..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKInstrumentManager.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKFeatureChecking; -@protocol FBSDKSettings; -@protocol FBSDKCrashObserving; -@protocol FBSDKErrorReporting; -@protocol FBSDKCrashHandler; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_InstrumentManager) -@interface FBSDKInstrumentManager : NSObject - -@property (class, nonatomic, readonly) FBSDKInstrumentManager *shared; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -// UNCRUSTIFY_FORMAT_OFF -- (void)configureWithFeatureChecker:(id)featureChecker - settings:(id)settings - crashObserver:(id)crashObserver - errorReporter:(id)errorReporter - crashHandler:(id)crashHandler -NS_SWIFT_NAME(configure(featureChecker:settings:crashObserver:errorReporter:crashHandler:)); -// UNCRUSTIFY_FORMAT_ON - -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKIntegrityParametersProcessorProvider.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKIntegrityParametersProcessorProvider.h deleted file mode 100644 index ee680932..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKIntegrityParametersProcessorProvider.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKAppEventsParameterProcessing; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_IntegrityParametersProcessorProvider) -@protocol FBSDKIntegrityParametersProcessorProvider - -@property (nullable, nonatomic) id integrityParametersProcessor; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKIntegrityProcessing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKIntegrityProcessing.h deleted file mode 100644 index dcd5535f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKIntegrityProcessing.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(IntegrityProcessing) -@protocol FBSDKIntegrityProcessing - -- (BOOL)processIntegrity:(nullable NSString *)parameter; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKInternalURLOpener.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKInternalURLOpener.h deleted file mode 100644 index fbd2988d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKInternalURLOpener.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_InternalURLOpener) -@protocol FBSDKInternalURLOpener - -- (BOOL)canOpenURL:(NSURL *)url; -- (BOOL)openURL:(NSURL *)url; -- (void) openURL:(NSURL *)url - options:(NSDictionary *)options - completionHandler:(nullable void (^)(BOOL success))completion; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKInternalUtility.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKInternalUtility.h deleted file mode 100644 index 9c1f25e6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKInternalUtility.h +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -#import -#import -#import -#import - -#if !TARGET_OS_TV - #import -#endif - -@protocol FBSDKErrorCreating; -@protocol FBSDKInfoDictionaryProviding; -@protocol FBSDKSettings; -@protocol __FBSDKLoggerCreating; - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(InternalUtility) -@interface FBSDKInternalUtility : NSObject -#if !TARGET_OS_TV - -#else - -#endif - -#if !DEBUG -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; -#endif - -@property (class, nonnull, readonly) FBSDKInternalUtility *sharedUtility; - -/** - Returns bundle for returning localized strings - - We assume a convention of a bundle named FBSDKStrings.bundle, otherwise we - return the main bundle. - */ -@property (nonatomic, readonly, strong) NSBundle *bundleForStrings; - -/** - Tests whether the supplied URL is a valid URL for opening in the browser. - @param URL The URL to test. - @return YES if the URL refers to an http or https resource, otherwise NO. - */ -- (BOOL)isBrowserURL:(NSURL *)URL; - -/** - Checks equality between 2 objects. - - Checks for pointer equality, nils, isEqual:. - @param object The first object to compare. - @param other The second object to compare. - @return YES if the objects are equal, otherwise NO. - */ -- (BOOL)object:(id)object isEqualToObject:(id)other; - -/// Attempts to find the first UIViewController in the view's responder chain. Returns nil if not found. -- (nullable UIViewController *)viewControllerForView:(UIView *)view; - -/// returns true if the url scheme is registered in the CFBundleURLTypes -- (BOOL)isRegisteredURLScheme:(NSString *)urlScheme; - -/// returns currently displayed top view controller. -- (nullable UIViewController *)topMostViewController; - -/// returns the current key window -- (nullable UIWindow *)findWindow; - -#pragma mark - FB Apps Installed - -@property (nonatomic, readonly, assign) BOOL isMessengerAppInstalled; - -- (BOOL)isRegisteredCanOpenURLScheme:(NSString *)urlScheme; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)configureWithInfoDictionaryProvider:(id)infoDictionaryProvider - loggerFactory:(id<__FBSDKLoggerCreating>)loggerFactory - settings:(id)settings - errorFactory:(id)errorFactory -NS_SWIFT_NAME(configure(infoDictionaryProvider:loggerFactory:settings:errorFactory:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKInternalUtilityProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKInternalUtilityProtocol.h deleted file mode 100644 index 32a2e858..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKInternalUtilityProtocol.h +++ /dev/null @@ -1,139 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(InternalUtilityProtocol) -@protocol FBSDKInternalUtility - -#pragma mark - FB Apps Installed - -@property (nonatomic, readonly) BOOL isFacebookAppInstalled; - -/* - Checks if the app is Unity. - */ -@property (nonatomic, readonly) BOOL isUnity; - -/** - Constructs an NSURL. - @param scheme The scheme for the URL. - @param host The host for the URL. - @param path The path for the URL. - @param queryParameters The query parameters for the URL. This will be converted into a query string. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return The URL. - */ -- (nullable NSURL *)URLWithScheme:(NSString *)scheme - host:(NSString *)host - path:(NSString *)path - queryParameters:(NSDictionary *)queryParameters - error:(NSError *__autoreleasing *)errorRef; - -/** - Constructs an URL for the current app. - @param host The host for the URL. - @param path The path for the URL. - @param queryParameters The query parameters for the URL. This will be converted into a query string. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return The app URL. - */ -- (nullable NSURL *)appURLWithHost:(NSString *)host - path:(NSString *)path - queryParameters:(NSDictionary *)queryParameters - error:(NSError *__autoreleasing *)errorRef; - -/** - Constructs a Facebook URL. - @param hostPrefix The prefix for the host, such as 'm', 'graph', etc. - @param path The path for the URL. This may or may not include a version. - @param queryParameters The query parameters for the URL. This will be converted into a query string. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return The Facebook URL. - */ -- (nullable NSURL *)facebookURLWithHostPrefix:(NSString *)hostPrefix - path:(NSString *)path - queryParameters:(NSDictionary *)queryParameters - error:(NSError *__autoreleasing *)errorRef -NS_SWIFT_NAME(facebookURL(hostPrefix:path:queryParameters:)); - -/** - Registers a transient object so that it will not be deallocated until unregistered - @param object The transient object - */ -- (void)registerTransientObject:(id)object; - -/** - Unregisters a transient object that was previously registered with registerTransientObject: - @param object The transient object - */ -- (void)unregisterTransientObject:(__weak id)object; - -- (void)checkRegisteredCanOpenURLScheme:(NSString *)urlScheme; - -/// Validates that the right URL schemes are registered, throws an NSException if not. -- (void)validateURLSchemes; - -/// add data processing options to the dictionary. -- (void)extendDictionaryWithDataProcessingOptions:(NSMutableDictionary *)parameters; - -/// Converts NSData to a hexadecimal UTF8 String. -- (nullable NSString *)hexadecimalStringFromData:(NSData *)data; - -/// validates that the app ID is non-nil, throws an NSException if nil. -- (void)validateAppID; - -/** - Validates that the client access token is non-nil, otherwise - throws an NSException otherwise. - Returns the composed client access token. - */ -- (NSString *)validateRequiredClientAccessToken; - -/** - Extracts permissions from a response fetched from me/permissions - @param responseObject the response - @param grantedPermissions the set to add granted permissions to - @param declinedPermissions the set to add declined permissions to. - */ -- (void)extractPermissionsFromResponse:(NSDictionary *)responseObject - grantedPermissions:(NSMutableSet *)grantedPermissions - declinedPermissions:(NSMutableSet *)declinedPermissions - expiredPermissions:(NSMutableSet *)expiredPermissions; - -/// validates that Facebook reserved URL schemes are not registered, throws an NSException if they are. -- (void)validateFacebookReservedURLSchemes; - -/** - Parses an FB url's query params (and potentially fragment) into a dictionary. - @param url The FB url. - @return A dictionary with the key/value pairs. - */ -- (NSDictionary *)parametersFromFBURL:(NSURL *)url; - -/** - Returns bundle for returning localized strings - - We assume a convention of a bundle named FBSDKStrings.bundle, otherwise we - return the main bundle. - */ -@property (nonatomic, readonly, strong) NSBundle *bundleForStrings; - -/// Returns currently displayed top view controller. -- (nullable UIViewController *)topMostViewController; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKKeychainStore.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKKeychainStore.h deleted file mode 100644 index a4292d54..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKKeychainStore.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(KeychainStore) -@interface FBSDKKeychainStore : NSObject - -@property (nonatomic, readonly, copy) NSString *service; -@property (nullable, nonatomic, readonly, copy) NSString *accessGroup; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithService:(NSString *)service accessGroup:(nullable NSString *)accessGroup NS_DESIGNATED_INITIALIZER; - -- (BOOL)setData:(nullable NSData *)value forKey:(NSString *)key accessibility:(CFTypeRef)accessibility; -- (nullable NSData *)dataForKey:(NSString *)key; - -// hook for subclasses to override keychain query construction. -- (NSMutableDictionary *)queryForKey:(NSString *)key; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProtocol.h deleted file mode 100644 index 4f8636a8..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProtocol.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(KeychainStoreProtocol) -@protocol FBSDKKeychainStore - -- (nullable NSString *)stringForKey:(NSString *)key; -- (nullable NSDictionary *)dictionaryForKey:(NSString *)key; - -- (BOOL)setString:(nullable NSString *)value forKey:(NSString *)key accessibility:(nullable CFTypeRef)accessibility; -- (BOOL)setDictionary:(nullable NSDictionary *)value forKey:(NSString *)key accessibility:(nullable CFTypeRef)accessibility; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProviding.h deleted file mode 100644 index fcf65190..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKKeychainStoreProviding.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(KeychainStoreProviding) -@protocol FBSDKKeychainStoreProviding - -- (nonnull id)createKeychainStoreWithService:(NSString *)service - accessGroup:(nullable NSString *)accessGroup -NS_SWIFT_NAME(createKeychainStore(service:accessGroup:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLocation.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLocation.h deleted file mode 100644 index e9fd1304..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLocation.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(Location) -@interface FBSDKLocation : NSObject - -/// Location id -@property (nonatomic, readonly, strong) NSString *id; -/// Location name -@property (nonatomic, readonly, strong) NSString *name; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Returns a Location object from a dinctionary containing valid location information. - @param dictionary The dictionary containing raw location - - Valid location will consist of "id" and "name" strings. - */ -+ (nullable instancetype)locationFromDictionary:(NSDictionary *)dictionary; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLogger.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLogger.h deleted file mode 100644 index bfeeec47..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLogger.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Simple logging utility for conditionally logging strings and then emitting them - via NSLog(). - - @unsorted - - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_Logger) -@interface FBSDKLogger : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -// Simple helper to write a single log entry, based upon whether the behavior matches a specified on. -+ (void)singleShotLogEntry:(FBSDKLoggingBehavior)loggingBehavior - logEntry:(NSString *)logEntry; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLoggerFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLoggerFactory.h deleted file mode 100644 index c6ad1f03..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLoggerFactory.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_LoggerFactory) -@interface FBSDKLoggerFactory : NSObject <__FBSDKLoggerCreating> -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLogging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLogging.h deleted file mode 100644 index dbef5411..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLogging.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(Logging) -@protocol FBSDKLogging - -@property (nonatomic, readonly, copy) NSString *contents; -@property (nonatomic, readonly, copy) FBSDKLoggingBehavior loggingBehavior; - -- (instancetype)initWithLoggingBehavior:(FBSDKLoggingBehavior)loggingBehavior; - -+ (void)singleShotLogEntry:(FBSDKLoggingBehavior)loggingBehavior - logEntry:(NSString *)logEntry; - -- (void)logEntry:(NSString *)logEntry; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLoggingBehavior.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLoggingBehavior.h deleted file mode 100644 index 776e274e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLoggingBehavior.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/* - * Constants defining logging behavior. Use with <[FBSDKSettings setLoggingBehavior]>. - */ - -typedef NSString *FBSDKLoggingBehavior NS_TYPED_ENUM NS_SWIFT_NAME(LoggingBehavior); - -/// Include access token in logging. -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorAccessTokens; - -/// Log performance characteristics -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorPerformanceCharacteristics; - -/// Log FBSDKAppEvents interactions -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorAppEvents; - -/// Log Informational occurrences -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorInformational; - -/// Log cache errors. -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorCacheErrors; - -/// Log errors from SDK UI controls -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorUIControlErrors; - -/// Log debug warnings from API response, i.e. when friends fields requested, but user_friends permission isn't granted. -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorGraphAPIDebugWarning; - -/** Log warnings from API response, i.e. when requested feature will be deprecated in next version of API. - Info is the lowest level of severity, using it will result in logging all previously mentioned levels. - */ -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorGraphAPIDebugInfo; - -/// Log errors from SDK network requests -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorNetworkRequests; - -/// Log errors likely to be preventable by the developer. This is in the default set of enabled logging behaviors. -FOUNDATION_EXPORT FBSDKLoggingBehavior const FBSDKLoggingBehaviorDeveloperErrors; - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLoggingNotifying.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLoggingNotifying.h deleted file mode 100644 index 0230cbc4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLoggingNotifying.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_LoggingNotifying) -@protocol FBSDKLoggingNotifying - -- (void)logAndNotify:(NSString *)message; -- (void)logAndNotify:(NSString *)message allowLogAsDeveloperError:(BOOL)allowLogAsDeveloperError; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLoginTooltip.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLoginTooltip.h deleted file mode 100644 index a6637497..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKLoginTooltip.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** -Internal Type exposed to facilitate transition to Swift. -API Subject to change or removal without warning. Do not use. - -@warning INTERNAL - DO NOT USE - */ -@interface FBSDKLoginTooltip : NSObject -@property (nonatomic, readonly, getter = isEnabled, assign) BOOL enabled; -@property (nonatomic, readonly, copy) NSString *text; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithText:(NSString *)text - enabled:(BOOL)enabled - NS_DESIGNATED_INITIALIZER; -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMacCatalystDetermining.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMacCatalystDetermining.h deleted file mode 100644 index 226ea6f4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMacCatalystDetermining.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_MacCatalystDetermining) -@protocol FBSDKMacCatalystDetermining - -@property (readonly) BOOL fb_isMacCatalystApp; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMath.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMath.h deleted file mode 100644 index 613cc12e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMath.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface FBSDKMath : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -+ (CGSize)ceilForSize:(CGSize)value; -+ (CGSize)floorForSize:(CGSize)value; -+ (NSUInteger)hashWithInteger:(NSUInteger)value; -+ (NSUInteger)hashWithIntegerArray:(NSUInteger *)values count:(NSUInteger)count; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventListener.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventListener.h deleted file mode 100644 index 5bc17830..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventListener.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_MeasurementEventListener) -@interface FBSDKMeasurementEventListener : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithEventLogger:(id)eventLogger - sourceApplicationTracker:(id)sourceApplicationTracker; - -- (void)registerForAppLinkMeasurementEvents; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventNames.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventNames.h deleted file mode 100644 index bb6ebe71..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMeasurementEventNames.h +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** -Internal value exposed to facilitate transition to Swift. -API Subject to change or removal without warning. Do not use. - -@warning INTERNAL - DO NOT USE - -The name of the notification posted by FBSDKMeasurementEvent -*/ -FOUNDATION_EXPORT NSNotificationName const FBSDKMeasurementEventNotification -NS_SWIFT_NAME(MeasurementEvent); - -/** -Internal value exposed to facilitate transition to Swift. -API Subject to change or removal without warning. Do not use. - -@warning INTERNAL - DO NOT USE - -Events raised by FBSDKMeasurementEvent for Applink -The name of the event posted when [FBSDKURL URLWithURL:] is called successfully. This represents the successful parsing of an app link URL. -*/ -FOUNDATION_EXPORT NSString *const FBSDKAppLinkParseEventName -NS_SWIFT_NAME(AppLinkParseEventName); - -/** -Internal value exposed to facilitate transition to Swift. -API Subject to change or removal without warning. Do not use. - -@warning INTERNAL - DO NOT USE - -The name of the event posted when [FBSDKURL URLWithInboundURL:] is called successfully. -This represents parsing an inbound app link URL from a different application -*/ -FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateInEventName -NS_SWIFT_NAME(AppLinkNavigateInEventName); - -/** -Internal value exposed to facilitate transition to Swift. -API Subject to change or removal without warning. Do not use. - -@warning INTERNAL - DO NOT USE - -The event raised when the user navigates from your app to other apps -*/ -FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateOutEventName -NS_SWIFT_NAME(AppLinkNavigateOutEventName); - -/** -Internal value exposed to facilitate transition to Swift. -API Subject to change or removal without warning. Do not use. - -@warning INTERNAL - DO NOT USE - -The event raised when the user navigates out from your app and back to the referrer app. -e.g when the user leaves your app after tapping the back-to-referrer navigation bar -*/ -FOUNDATION_EXPORT NSString *const FBSDKAppLinkNavigateBackToReferrerEventName -NS_SWIFT_NAME(AppLinkNavigateBackToReferrerEventName); - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexer.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexer.h deleted file mode 100644 index 869ecf53..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexer.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -@protocol FBSDKUserDataPersisting; -@protocol FBSDKSwizzling; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_MetadataIndexer) -@interface FBSDKMetadataIndexer : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithUserDataStore:(id)userDataStore - swizzler:(Class)swizzler - NS_DESIGNATED_INITIALIZER; - -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexing.h deleted file mode 100644 index efcc149f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMetadataIndexing.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_MetadataIndexing) -@protocol FBSDKMetadataIndexing - -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKModelManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKModelManager.h deleted file mode 100644 index ee88a709..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKModelManager.h +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import -#import -#import -#import -#import - -@protocol FBSDKFeatureChecking; -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKFileManaging; -@protocol FBSDKDataPersisting; -@protocol FBSDKSettings; -@protocol FBSDKFileDataExtracting; -@protocol FBSDKGateKeeperManaging; -@protocol FBSDKSuggestedEventsIndexer; -@protocol FBSDKFeatureExtracting; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ModelManager) -@interface FBSDKModelManager : NSObject - -@property (class, nonnull, readonly) FBSDKModelManager *shared; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (void)enable; -- (nullable NSData *)getWeightsForKey:(NSString *)useCase; -- (nullable NSArray *)getThresholdsForKey:(NSString *)useCase; -- (BOOL)processIntegrity:(nullable NSString *)param; -- (NSString *)processSuggestedEvents:(NSString *)textFeature denseData:(nullable float *)denseData; - -- (void)configureWithFeatureChecker:(id)featureChecker - graphRequestFactory:(id)graphRequestFactory - fileManager:(id)fileManager - store:(id)store - getAppID:(NSString * (^)(void))getAppID - dataExtractor:(Class)dataExtractor - gateKeeperManager:(Class)gateKeeperManager - suggestedEventsIndexer:(id)suggestedEventsIndexer - featureExtractor:(Class)featureExtractor -NS_SWIFT_NAME(configure(featureChecker:graphRequestFactory:fileManager:store:getAppID:dataExtractor:gateKeeperManager:suggestedEventsIndexer:featureExtractor:)); - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h deleted file mode 100644 index 219d3fef..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKMutableCopying.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Extension protocol for NSMutableCopying that adds the mutableCopy method, which is implemented on NSObject. - - NSObject implicitly conforms to this protocol. - */ -NS_SWIFT_NAME(MutableCopying) -@protocol FBSDKMutableCopying - -/** - Implemented by NSObject as a convenience to mutableCopyWithZone:. - @return A mutable copy of the receiver. - */ -- (id)mutableCopy; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecker.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecker.h deleted file mode 100644 index 5b157c20..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecker.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Concrete type providing functionality that checks whether an error represents a - network error. - */ -NS_SWIFT_NAME(NetworkErrorChecker) -@interface FBSDKNetworkErrorChecker : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecking.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecking.h deleted file mode 100644 index 2868737f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKNetworkErrorChecking.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_SWIFT_NAME(NetworkErrorChecking) -@protocol FBSDKNetworkErrorChecking - -/** - Checks whether an error is a network error. - - @param error An error that may or may not represent a network error. - - @return `YES` if the error represents a network error, otherwise `NO`. - */ -- (BOOL)isNetworkError:(NSError *)error; - -@end diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKObjectDecoding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKObjectDecoding.h deleted file mode 100644 index a27700f2..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKObjectDecoding.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@protocol FBSDKObjectDecoding - -- (nullable id)decodeObjectOfClass:(Class)aClass - forKey:(NSString *)key; -- (nullable id)decodeObjectOfClasses:(NSSet *)classes - forKey:(NSString *)key; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKOperatingSystemVersionComparing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKOperatingSystemVersionComparing.h deleted file mode 100644 index 29dcb507..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKOperatingSystemVersionComparing.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// An interface for indicating whether the version of the operating system on which the process is executing -// is the same or later than a given version. -NS_SWIFT_NAME(_OperatingSystemVersionComparing) -@protocol FBSDKOperatingSystemVersionComparing - -// UNCRUSTIFY_FORMAT_OFF -- (BOOL)fb_isOperatingSystemAtLeastVersion:(NSOperatingSystemVersion)version -NS_SWIFT_NAME(fb_isOperatingSystemAtLeast(_:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKPasteboard.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKPasteboard.h deleted file mode 100644 index fd7faf11..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKPasteboard.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal protocol exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_Pasteboard) -@protocol FBSDKPasteboard - -@property (nonatomic, readonly) NSString *name; - -@property (nonatomic, readonly) BOOL _isGeneralPasteboard; - -- (nullable NSData *)dataForPasteboardType:(NSString *)pasteboardType; -- (void)setData:(NSData *)data forPasteboardType:(NSString *)pasteboardType; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKPaymentObserving.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKPaymentObserving.h deleted file mode 100644 index 6e717028..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKPaymentObserving.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// Protocol of the class to encapsulate implicit logging of purchase events -NS_SWIFT_NAME(_PaymentObserving) -@protocol FBSDKPaymentObserving - -// These methods need Swift name overrides since they otherwise get changed to -// `startTransactions` and `stopTransactions` otherwise. -- (void)startObservingTransactions NS_SWIFT_NAME(startObservingTransactions()); -- (void)stopObservingTransactions NS_SWIFT_NAME(stopObservingTransactions()); - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestor.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestor.h deleted file mode 100644 index 8cd5aa58..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestor.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@protocol FBSDKSettings; -@protocol FBSDKEventLogging; -@protocol FBSDKGateKeeperManaging; -@protocol FBSDKDataPersisting; -@protocol __FBSDKLoggerCreating; -@protocol FBSDKProductsRequestCreating; -@protocol FBSDKAppStoreReceiptProviding; - -NS_ASSUME_NONNULL_BEGIN - -/** - Used for requesting information about purchase events from StoreKit to use when - logging AppEvents - */ -NS_SWIFT_NAME(PaymentProductRequestor) -@interface FBSDKPaymentProductRequestor : NSObject - -+ (instancetype)new NS_UNAVAILABLE; -- (instancetype)init NS_UNAVAILABLE; - -- (instancetype)initWithTransaction:(SKPaymentTransaction *)transaction - settings:(id)settings - eventLogger:(id)eventLogger - gateKeeperManager:(Class)gateKeeperManager - store:(id)store - loggerFactory:(id<__FBSDKLoggerCreating>)loggerFactory - productsRequestFactory:(id)productRequestFactory - appStoreReceiptProvider:(id)receiptProvider; - -- (void)resolveProducts; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestorCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestorCreating.h deleted file mode 100644 index bcf69856..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKPaymentProductRequestorCreating.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -@class FBSDKPaymentProductRequestor; -@class SKPaymentTransaction; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Protocol exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_PaymentProductRequestorCreating) -@protocol FBSDKPaymentProductRequestorCreating - -// UNCRUSTIFY_FORMAT_OFF -- (nonnull FBSDKPaymentProductRequestor *)createRequestorWithTransaction:(SKPaymentTransaction *)transaction -NS_SWIFT_NAME(createRequestor(transaction:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProductAvailability.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProductAvailability.h deleted file mode 100644 index fa8f4cde..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProductAvailability.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -/** - NS_ENUM(NSUInteger, FBSDKProductAvailability) - Specifies product availability for Product Catalog product item update - */ -typedef NS_ENUM(NSUInteger, FBSDKProductAvailability) { - /// Item ships immediately - FBSDKProductAvailabilityInStock = 0, - /// No plan to restock - FBSDKProductAvailabilityOutOfStock, - /// Available in future - FBSDKProductAvailabilityPreOrder, - /// Ships in 1-2 weeks - FBSDKProductAvailabilityAvailableForOrder, - /// Discontinued - FBSDKProductAvailabilityDiscontinued, -} NS_SWIFT_NAME(AppEvents.ProductAvailability); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProductCondition.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProductCondition.h deleted file mode 100644 index 41e23b1e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProductCondition.h +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -/** - NS_ENUM(NSUInteger, FBSDKProductCondition) - Specifies product condition for Product Catalog product item update - */ -typedef NS_ENUM(NSUInteger, FBSDKProductCondition) { - FBSDKProductConditionNew = 0, - FBSDKProductConditionRefurbished, - FBSDKProductConditionUsed, -} NS_SWIFT_NAME(AppEvents.ProductCondition); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProductRequestFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProductRequestFactory.h deleted file mode 100644 index b5154e72..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProductRequestFactory.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ProductRequestFactory) -@interface FBSDKProductRequestFactory : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProductsRequestProtocols.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProductsRequestProtocols.h deleted file mode 100644 index 514087c0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProductsRequestProtocols.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -@protocol SKProductsRequestDelegate; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - - An abstraction for an `SKProductsRequest` instance - */ -NS_SWIFT_NAME(_ProductsRequest) -@protocol FBSDKProductsRequest - -@property (nullable, nonatomic, weak) id delegate; - -- (void)cancel; -- (void)start; - -@end - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - - An abstraction for any object that can create a `ProductsRequest` - */ -NS_SWIFT_NAME(_ProductsRequestCreating) -@protocol FBSDKProductsRequestCreating - -- (id)createWithProductIdentifiers:(NSSet *)identifiers; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProfileBlock.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProfileBlock.h deleted file mode 100644 index bb74fab0..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProfileBlock.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -@class FBSDKProfile; - -NS_ASSUME_NONNULL_BEGIN - -/** - The callback closure type for loading the current profile. - - @param profile The Profile that was loaded, if any. - @param error The error that occurred during the request, if any. - */ -typedef void (^ FBSDKProfileBlock)(FBSDKProfile *_Nullable profile, NSError *_Nullable error) -NS_SWIFT_NAME(ProfileBlock); - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProfileNotifications.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProfileNotifications.h deleted file mode 100644 index 6fa7925d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKProfileNotifications.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -NS_ASSUME_NONNULL_BEGIN - -/** - Notification name indicating that the current profile has changed. - - The user info dictionary of the notification may contain values for the keys - `ProfileChangeOldKey` and `ProfileChangeNewKey`. - */ -FOUNDATION_EXPORT NSNotificationName const FBSDKProfileDidChangeNotification -NS_SWIFT_NAME(ProfileDidChange); - -/** - Key in notification's user info object for storing the old profile. - - If there was no old profile, the key will not be present. - */ -FOUNDATION_EXPORT NSString *const FBSDKProfileChangeOldKey -NS_SWIFT_NAME(ProfileChangeOldKey); - -/** - Key in notification's user info object for storing the new profile. - - If there is no new profile, the key will not be present. - */ -FOUNDATION_EXPORT NSString *const FBSDKProfileChangeNewKey -NS_SWIFT_NAME(ProfileChangeNewKey); - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRandom.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRandom.h deleted file mode 100644 index 9efef73c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRandom.h +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -/** - Provides a random string - @param numberOfBytes the number of bytes to use - */ -extern NSString *_Nullable fb_randomString(NSUInteger numberOfBytes); diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h deleted file mode 100644 index e352b82e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRestrictiveDataFilterManager.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKServerConfigurationProviding; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_RestrictiveDataFilterManager) -@interface FBSDKRestrictiveDataFilterManager : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithServerConfigurationProvider:(id)serverConfigurationProvider NS_DESIGNATED_INITIALIZER; - -- (void)enable; -- (void)processEvents:(NSArray *> *)events; -- (nullable NSDictionary *)processParameters:(nullable NSDictionary *)parameters - eventName:(FBSDKAppEventName)eventName; -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRulesFromKeyProvider.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRulesFromKeyProvider.h deleted file mode 100644 index a57e67d1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKRulesFromKeyProvider.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_RulesFromKeyProvider) -@protocol FBSDKRulesFromKeyProvider - -- (nullable NSDictionary *)getRulesForKey:(NSString *)useCase; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSKAdNetworkReporter.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSKAdNetworkReporter.h deleted file mode 100644 index c6f11640..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSKAdNetworkReporter.h +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_SKAdNetworkReporter) -@interface FBSDKSKAdNetworkReporter : NSObject - -@property (nonatomic) id graphRequestFactory; -@property (nonatomic) id dataStore; -@property (nonatomic) Class conversionValueUpdater; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -// UNCRUSTIFY_FORMAT_OFF -- (instancetype)initWithGraphRequestFactory:(id)graphRequestFactory - dataStore:(id)dataStore - conversionValueUpdater:(Class)conversionValueUpdater -NS_SWIFT_NAME(init(graphRequestFactory:dataStore:conversionValueUpdater:)); -// UNCRUSTIFY_FORMAT_ON - -- (void)enable; - -- (void)recordAndUpdateEvent:(NSString *)event - currency:(nullable NSString *)currency - value:(nullable NSNumber *)value; - -- (BOOL)shouldCutoff; - -- (BOOL)isReportingEvent:(NSString *)event; - -- (void)checkAndRevokeTimer; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h deleted file mode 100644 index 41d52df5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfiguration.h +++ /dev/null @@ -1,143 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -// MARK: LoginKit - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameLogin; - -// MARK: ShareKit - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameAppInvite; - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameGameRequest; - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT NSString *const FBSDKDialogConfigurationNameGroup; - -// MARK: - - -/** - Internal value exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FOUNDATION_EXPORT const NSInteger FBSDKServerConfigurationVersion; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef NS_OPTIONS(NSUInteger, FBSDKServerConfigurationSmartLoginOptions) { - FBSDKServerConfigurationSmartLoginOptionsUnknown = 0, - FBSDKServerConfigurationSmartLoginOptionsEnabled = 1 << 0, - FBSDKServerConfigurationSmartLoginOptionsRequireConfirmation = 1 << 1, -}; - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ServerConfiguration) -@interface FBSDKServerConfiguration : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype) initWithAppID:(NSString *)appID - appName:(nullable NSString *)appName - loginTooltipEnabled:(BOOL)loginTooltipEnabled - loginTooltipText:(nullable NSString *)loginTooltipText - defaultShareMode:(nullable NSString *)defaultShareMode - advertisingIDEnabled:(BOOL)advertisingIDEnabled - implicitLoggingEnabled:(BOOL)implicitLoggingEnabled - implicitPurchaseLoggingEnabled:(BOOL)implicitPurchaseLoggingEnabled - codelessEventsEnabled:(BOOL)codelessEventsEnabled - uninstallTrackingEnabled:(BOOL)uninstallTrackingEnabled - dialogConfigurations:(nullable NSDictionary *)dialogConfigurations - dialogFlows:(nullable NSDictionary *)dialogFlows - timestamp:(nullable NSDate *)timestamp - errorConfiguration:(nullable FBSDKErrorConfiguration *)errorConfiguration - sessionTimeoutInterval:(NSTimeInterval)sessionTimeoutInterval - defaults:(BOOL)defaults - loggingToken:(nullable NSString *)loggingToken - smartLoginOptions:(FBSDKServerConfigurationSmartLoginOptions)smartLoginOptions - smartLoginBookmarkIconURL:(nullable NSURL *)smartLoginBookmarkIconURL - smartLoginMenuIconURL:(nullable NSURL *)smartLoginMenuIconURL - updateMessage:(nullable NSString *)updateMessage - eventBindings:(nullable NSArray *> *)eventBindings - restrictiveParams:(nullable NSDictionary *)restrictiveParams - AAMRules:(nullable NSDictionary *)AAMRules - suggestedEventsSetting:(nullable NSDictionary *)suggestedEventsSetting - NS_DESIGNATED_INITIALIZER; - -@property (nonatomic, readonly, getter = isAdvertisingIDEnabled, assign) BOOL advertisingIDEnabled; -@property (nonatomic, readonly, copy) NSString *appID; -@property (nullable, nonatomic, readonly, copy) NSString *appName; -@property (nonatomic, readonly, getter = isDefaults, assign) BOOL defaults; -@property (nullable, nonatomic, readonly, copy) NSString *defaultShareMode; -@property (nullable, nonatomic, readonly, strong) FBSDKErrorConfiguration *errorConfiguration; -@property (nonatomic, readonly, getter = isImplicitLoggingSupported, assign) BOOL implicitLoggingEnabled; -@property (nonatomic, readonly, getter = isImplicitPurchaseLoggingSupported, assign) BOOL implicitPurchaseLoggingEnabled; -@property (nonatomic, readonly, getter = isCodelessEventsEnabled, assign) BOOL codelessEventsEnabled; -@property (nonatomic, readonly, getter = isLoginTooltipEnabled, assign) BOOL loginTooltipEnabled; -@property (nonatomic, readonly, getter = isUninstallTrackingEnabled, assign) BOOL uninstallTrackingEnabled; -@property (nullable, nonatomic, readonly, copy) NSString *loginTooltipText; -@property (nullable, nonatomic, readonly, copy) NSDate *timestamp; -@property (nonatomic, assign) NSTimeInterval sessionTimeoutInterval; -@property (nullable, nonatomic, readonly, copy) NSString *loggingToken; -@property (nonatomic, readonly, assign) FBSDKServerConfigurationSmartLoginOptions smartLoginOptions; -@property (nullable, nonatomic, readonly, copy) NSURL *smartLoginBookmarkIconURL; -@property (nullable, nonatomic, readonly, copy) NSURL *smartLoginMenuIconURL; -@property (nullable, nonatomic, readonly, copy) NSString *updateMessage; -@property (nullable, nonatomic, readonly, copy) NSArray *> *eventBindings; -@property (nullable, nonatomic, readonly, copy) NSDictionary *restrictiveParams; -@property (nullable, nonatomic, readonly, copy) NSDictionary *AAMRules; -@property (nullable, nonatomic, readonly, copy) NSDictionary *suggestedEventsSetting; -@property (nonatomic, readonly) NSInteger version; - -- (nullable FBSDKDialogConfiguration *)dialogConfigurationForDialogName:(NSString *)dialogName; -- (BOOL)useNativeDialogForDialogName:(NSString *)dialogName; -- (BOOL)useSafariViewControllerForDialogName:(NSString *)dialogName; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationManager.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationManager.h deleted file mode 100644 index fd533bac..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationManager.h +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -#define FBSDK_SERVER_CONFIGURATION_MANAGER_CACHE_TIMEOUT (60 * 60) - -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKGraphRequestConnectionFactory; -@protocol FBSDKDialogConfigurationMapBuilding; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ServerConfigurationManager) -@interface FBSDKServerConfigurationManager : NSObject - -@property (class, readonly) FBSDKServerConfigurationManager *shared; - -+ (instancetype)new NS_UNAVAILABLE; -- (instancetype)init NS_UNAVAILABLE; - -@property (nullable, nonatomic) id graphRequestFactory; -@property (nullable, nonatomic) id graphRequestConnectionFactory; -@property (nullable, nonatomic) id dialogConfigurationMapBuilder; - -// UNCRUSTIFY_FORMAT_OFF -- (void)configureWithGraphRequestFactory:(id)graphRequestFactory - graphRequestConnectionFactory:(id)graphRequestConnectionFactory - dialogConfigurationMapBuilder:(id)dialogConfigurationMapBuilder - NS_SWIFT_NAME(configure(graphRequestFactory:graphRequestConnectionFactory:dialogConfigurationMapBuilder:)); -// UNCRUSTIFY_FORMAT_ON - -- (void)clearCache; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationProviding.h deleted file mode 100644 index 0921d73a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKServerConfigurationProviding.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ServerConfigurationBlock) -typedef void (^FBSDKServerConfigurationBlock)(FBSDKServerConfiguration *_Nullable serverConfiguration, NSError *_Nullable error); - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_ServerConfigurationProviding) -@protocol FBSDKServerConfigurationProviding - -- (FBSDKServerConfiguration *)cachedServerConfiguration; - -/** - Executes the completionBlock with a valid and current configuration when it is available. - - This method will use a cached configuration if it is valid and not expired. - */ -- (void)loadServerConfigurationWithCompletionBlock:(nullable FBSDKServerConfigurationBlock)completionBlock; - -- (void)processLoadRequestResponse:(id)result error:(nullable NSError *)error appID:(NSString *)appID; - -- (nullable FBSDKGraphRequest *)requestToLoadServerConfiguration:(NSString *)appID; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSettingsLogging.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSettingsLogging.h deleted file mode 100644 index 1e21fe02..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSettingsLogging.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(SettingsLogging) -@protocol FBSDKSettingsLogging - -- (void)logWarnings; -- (void)logIfSDKSettingsChanged; -- (void)recordInstall; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSourceApplicationTracking.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSourceApplicationTracking.h deleted file mode 100644 index 686617fa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSourceApplicationTracking.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_SourceApplicationTracking) -@protocol FBSDKSourceApplicationTracking - -- (void)setSourceApplication:(nullable NSString *)sourceApplication openURL:(nullable NSURL *)url; -- (void)setSourceApplication:(nullable NSString *)sourceApplication isFromAppLink:(BOOL)isFromAppLink; -- (void)registerAutoResetSourceApplication; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexer.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexer.h deleted file mode 100644 index 38e3dc32..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexer.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -@protocol FBSDKGraphRequestFactory; -@protocol FBSDKServerConfigurationProviding; -@protocol FBSDKSwizzling; -@protocol FBSDKSettings; -@protocol FBSDKEventLogging; -@protocol FBSDKFeatureExtracting; -@protocol FBSDKEventProcessing; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_SuggestedEventsIndexer) -@interface FBSDKSuggestedEventsIndexer : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithGraphRequestFactory:(id)graphRequestFactory - serverConfigurationProvider:(id)serverConfigurationProvider - swizzler:(Class)swizzler - settings:(id)settings - eventLogger:(id)eventLogger - featureExtractor:(Class)featureExtractor - eventProcessor:(id)eventProcessor - NS_DESIGNATED_INITIALIZER; - -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexerProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexerProtocol.h deleted file mode 100644 index 8fda03d1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSuggestedEventsIndexerProtocol.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_SuggestedEventsIndexerProtocol) -@protocol FBSDKSuggestedEventsIndexer - -- (void)enable; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSwizzler.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSwizzler.h deleted file mode 100644 index 13de9a47..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSwizzler.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -// Cast to turn things that are not ids into NSMapTable keys -#define MAPTABLE_ID(x) (__bridge id)((void *)x) - -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wstrict-prototypes" - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef void (^_swizzleBlock)(); - -#pragma clang diagnostic pop - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_Swizzler) -@interface FBSDKSwizzler : NSObject - -+ (void)swizzleSelector:(SEL)aSelector onClass:(Class)aClass withBlock:(_swizzleBlock)block named:(NSString *)aName; -+ (void)unswizzleSelector:(SEL)aSelector onClass:(Class)aClass named:(NSString *)aName; -+ (void)printSwizzles; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSwizzling.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSwizzling.h deleted file mode 100644 index 2bccd15c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKSwizzling.h +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wstrict-prototypes" - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -typedef void (^_swizzleBlock)(); - -#pragma clang diagnostic pop - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_Swizzling) -@protocol FBSDKSwizzling - -+ (void)swizzleSelector:(SEL)aSelector onClass:(Class)aClass withBlock:(_swizzleBlock)block named:(NSString *)aName; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentData.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentData.h deleted file mode 100644 index a443696e..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentData.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -@protocol FBSDKEventLogging; -@protocol FBSDKServerConfigurationProviding; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// Class to encapsulate persisting of time spent data collected by [FBSDKAppEvents.shared activateApp]. The activate app App Event is -// logged when restore: is called with sufficient time since the last deactivation. -NS_SWIFT_NAME(_TimeSpentData) -@interface FBSDKTimeSpentData : NSObject - -+ (instancetype)new NS_UNAVAILABLE; -- (instancetype)init NS_UNAVAILABLE; - -- (instancetype)initWithEventLogger:(id)eventLogger - serverConfigurationProvider:(id)serverConfigurationProvider; - -- (void)setSourceApplication:(nullable NSString *)sourceApplication openURL:(nullable NSURL *)url; -- (void)setSourceApplication:(nullable NSString *)sourceApplication isFromAppLink:(BOOL)isFromAppLink; -- (void)registerAutoResetSourceApplication; -- (void)suspend; -- (void)restore:(BOOL)calledFromActivateApp; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentRecording.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentRecording.h deleted file mode 100644 index e79f2c77..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTimeSpentRecording.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_TimeSpentRecording) -@protocol FBSDKTimeSpentRecording - -- (void)suspend; -- (void)restore:(BOOL)calledFromActivateApp; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTokenCaching.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTokenCaching.h deleted file mode 100644 index 9b9ec1f6..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTokenCaching.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -@class FBSDKAccessToken; -@class FBSDKAuthenticationToken; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(TokenCaching) -@protocol FBSDKTokenCaching - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (nullable, nonatomic, copy) FBSDKAccessToken *accessToken; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@property (nullable, nonatomic, copy) FBSDKAuthenticationToken *authenticationToken; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTokenStringProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTokenStringProviding.h deleted file mode 100644 index a167defa..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTokenStringProviding.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_TokenStringProviding) -@protocol FBSDKTokenStringProviding - -/** - Return the token string of the current access token. - - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -@property (class, nullable, nonatomic, readonly, copy) NSString *tokenString; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTransformer.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTransformer.h deleted file mode 100644 index ea415c83..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKTransformer.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -extern CATransform3D const FBSDKCATransform3DIdentity; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@interface FBSDKTransformer : NSObject -- (CATransform3D)CATransform3DMakeScale:(CGFloat)sx sy:(CGFloat)sy sz:(CGFloat)sz; -- (CATransform3D)CATransform3DMakeTranslation:(CGFloat)tx ty:(CGFloat)ty tz:(CGFloat)tz; -- (CATransform3D)CATransform3DConcat:(CATransform3D)a b:(CATransform3D)b; -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURL.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURL.h deleted file mode 100644 index ddfad59a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURL.h +++ /dev/null @@ -1,101 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKAppLink; -@protocol FBSDKAppLinkCreating; - -/** - Provides a set of utilities for working with NSURLs, such as parsing of query parameters - and handling for App Link requests. - */ -NS_SWIFT_NAME(AppLinkURL) -@interface FBSDKURL : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Creates a link target from a raw URL. - On success, this posts the FBSDKAppLinkParseEventName measurement event. If you are constructing the FBSDKURL within your application delegate's - application:openURL:sourceApplication:annotation:, you should instead use URLWithInboundURL:sourceApplication: - to support better FBSDKMeasurementEvent notifications - @param url The instance of `NSURL` to create FBSDKURL from. - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (instancetype)URLWithURL:(NSURL *)url -NS_SWIFT_NAME(init(url:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Creates a link target from a raw URL received from an external application. This is typically called from the app delegate's - application:openURL:sourceApplication:annotation: and will post the FBSDKAppLinkNavigateInEventName measurement event. - @param url The instance of `NSURL` to create FBSDKURL from. - @param sourceApplication the bundle ID of the app that is requesting your app to open the URL. The same sourceApplication in application:openURL:sourceApplication:annotation: - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (instancetype)URLWithInboundURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication -NS_SWIFT_NAME(init(inboundURL:sourceApplication:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Gets the target URL. If the link is an App Link, this is the target of the App Link. - Otherwise, it is the url that created the target. - */ -@property (nonatomic, readonly, strong) NSURL *targetURL; - -/// Gets the query parameters for the target, parsed into an NSDictionary. -@property (nonatomic, readonly, strong) NSDictionary *targetQueryParameters; - -/** - If this link target is an App Link, this is the data found in al_applink_data. - Otherwise, it is nil. - */ -@property (nullable, nonatomic, readonly, strong) NSDictionary *appLinkData; - -/// If this link target is an App Link, this is the data found in extras. -@property (nullable, nonatomic, readonly, strong) NSDictionary *appLinkExtras; - -/// The App Link indicating how to navigate back to the referer app, if any. -@property (nullable, nonatomic, readonly, strong) id appLinkReferer; - -/// The URL that was used to create this FBSDKURL. -@property (nonatomic, readonly, strong) NSURL *inputURL; - -/// The query parameters of the inputURL, parsed into an NSDictionary. -@property (nonatomic, readonly, strong) NSDictionary *inputQueryParameters; - -/// The flag indicating whether the URL comes from auto app link -@property (nonatomic, readonly, getter = isAutoAppLink) BOOL isAutoAppLink; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// UNCRUSTIFY_FORMAT_OFF -+ (void)configureWithSettings:(id)settings - appLinkFactory:(id)appLinkFactory - appLinkTargetFactory:(id)appLinkTargetFactory - appLinkEventPoster:(id)appLinkEventPoster -NS_SWIFT_NAME(configure(settings:appLinkFactory:appLinkTargetFactory:appLinkEventPoster:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLHosting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLHosting.h deleted file mode 100644 index e5d8993f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLHosting.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(URLHosting) -@protocol FBSDKURLHosting - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (nullable NSURL *)appURLWithHost:(NSString *)host - path:(NSString *)path - queryParameters:(NSDictionary *)queryParameters - error:(NSError *__autoreleasing *)errorRef; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (nullable NSURL *)facebookURLWithHostPrefix:(NSString *)hostPrefix - path:(NSString *)path - queryParameters:(NSDictionary *)queryParameters - error:(NSError *__autoreleasing *)errorRef -NS_SWIFT_NAME(facebookURL(hostPrefix:path:queryParameters:)); - - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLOpener.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLOpener.h deleted file mode 100644 index 7fb6687d..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLOpener.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKURLOpening; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(URLOpener) -@protocol FBSDKURLOpener - -- (void)openURL:(NSURL *)url - sender:(nullable id)sender - handler:(FBSDKSuccessBlock)handler; - -// UNCRUSTIFY_FORMAT_OFF -- (void)openURLWithSafariViewController:(NSURL *)url - sender:(nullable id)sender - fromViewController:(nullable UIViewController *)fromViewController - handler:(FBSDKSuccessBlock)handler -NS_SWIFT_NAME(openURLWithSafariViewController(url:sender:from:handler:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLOpening.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLOpening.h deleted file mode 100644 index c2e50cd4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLOpening.h +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(URLOpening) -@protocol FBSDKURLOpening - -// Implementations should make sure they can handle nil parameters -// which is possible in SafariViewController. -// see canOpenURL below. -- (BOOL)application:(nullable UIApplication *)application - openURL:(nullable NSURL *)url - sourceApplication:(nullable NSString *)sourceApplication - annotation:(nullable id)annotation; - -// create a different handler to return YES/NO if the receiver can process the above openURL:. -// This is separated so that we can process the openURL: in callbacks, while still returning -// the result of canOpenURL synchronously in FBSDKApplicationDelegate -- (BOOL) canOpenURL:(NSURL *)url - forApplication:(nullable UIApplication *)application - sourceApplication:(nullable NSString *)sourceApplication - annotation:(nullable id)annotation; - -- (void)applicationDidBecomeActive:(UIApplication *)application; - -- (BOOL)isAuthenticationURL:(NSURL *)url; - -@optional - -+ (instancetype)makeOpener; - -- (BOOL)shouldStopPropagationOfURL:(NSURL *)url; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLScheme.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLScheme.h deleted file mode 100644 index f7283921..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLScheme.h +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -typedef NSString *FBSDKURLScheme NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(URLScheme); - -FOUNDATION_EXPORT FBSDKURLScheme const FBSDKURLSchemeFacebookAPI; -FOUNDATION_EXPORT FBSDKURLScheme const FBSDKURLSchemeMessengerApp; -FOUNDATION_EXPORT FBSDKURLScheme const FBSDKURLSchemeHTTPS NS_SWIFT_NAME(https); -FOUNDATION_EXPORT FBSDKURLScheme const FBSDKURLSchemeHTTP NS_SWIFT_NAME(http); -FOUNDATION_EXPORT FBSDKURLScheme const FBSDKURLSchemeWeb; diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyFactory.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyFactory.h deleted file mode 100644 index 278ec728..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyFactory.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_URLSessionProxyFactory) -@interface FBSDKURLSessionProxyFactory : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyProviding.h deleted file mode 100644 index cf4eb064..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxyProviding.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_URLSessionProxyProviding) -@protocol FBSDKURLSessionProxyProviding - -- (id)createSessionProxyWithDelegate:(nullable id)delegate - queue:(nullable NSOperationQueue *)queue; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxying.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxying.h deleted file mode 100644 index 0a9636c1..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKURLSessionProxying.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_PROTOCOL_REQUIRES_EXPLICIT_IMPLEMENTATION -NS_SWIFT_NAME(_URLSessionProxying) -@protocol FBSDKURLSessionProxying - -@property (nullable, nonatomic, retain) NSOperationQueue *delegateQueue; - -- (void)executeURLRequest:(NSURLRequest *)request - completionHandler:(FBSDKURLSessionTaskBlock)handler; -- (void)invalidateAndCancel; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProvider.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProvider.h deleted file mode 100644 index ba415cca..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProvider.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(UnarchiverProvider) -@interface FBSDKUnarchiverProvider : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProviding.h deleted file mode 100644 index c01ee41f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUnarchiverProviding.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@protocol FBSDKUnarchiverProviding - -+ (nonnull id)createSecureUnarchiverFor:(NSData *)data; -+ (nonnull id)createInsecureUnarchiverFor:(NSData *)data; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserAgeRange.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserAgeRange.h deleted file mode 100644 index 38c09110..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserAgeRange.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(UserAgeRange) -@interface FBSDKUserAgeRange : NSObject - -/// The user's minimum age, nil if unspecified -@property (nullable, nonatomic, readonly, strong) NSNumber *min; -/// The user's maximum age, nil if unspecified -@property (nullable, nonatomic, readonly, strong) NSNumber *max; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Returns a UserAgeRange object from a dinctionary containing valid user age range. - @param dictionary The dictionary containing raw user age range - - Valid user age range will consist of "min" and/or "max" values that are - positive integers, where "min" is smaller than or equal to "max". - */ -+ (nullable instancetype)ageRangeFromDictionary:(NSDictionary *)dictionary; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserDataPersisting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserDataPersisting.h deleted file mode 100644 index 7ab945c9..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserDataPersisting.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_UserDataPersisting) -@protocol FBSDKUserDataPersisting - -// UNCRUSTIFY_FORMAT_OFF -- (void)setUserEmail:(nullable NSString *)email - firstName:(nullable NSString *)firstName - lastName:(nullable NSString *)lastName - phone:(nullable NSString *)phone - dateOfBirth:(nullable NSString *)dateOfBirth - gender:(nullable NSString *)gender - city:(nullable NSString *)city - state:(nullable NSString *)state - zip:(nullable NSString *)zip - country:(nullable NSString *)country - externalId:(nullable NSString *)externalId -NS_SWIFT_NAME(setUser(email:firstName:lastName:phone:dateOfBirth:gender:city:state:zip:country:externalId:)); -// UNCRUSTIFY_FORMAT_ON - -- (nullable NSString *)getUserData; - -- (void)clearUserData; - -- (void)setUserData:(nullable NSString *)data - forType:(FBSDKAppEventUserDataType)type; - -- (void)clearUserDataForType:(FBSDKAppEventUserDataType)type; - -- (void)setEnabledRules:(NSArray *)rules; - -- (nullable NSString *)getInternalHashedDataForType:(FBSDKAppEventUserDataType)type; - -- (void)setInternalHashData:(nullable NSString *)hashData - forType:(FBSDKAppEventUserDataType)type; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserDataStore.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserDataStore.h deleted file mode 100644 index efcb281f..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserDataStore.h +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_UserDataStore) -@interface FBSDKUserDataStore : NSObject - -/* - Sets custom user data to associate with all app events. All user data are hashed - and used to match Facebook user from this instance of an application. - - The user data will be persisted between application instances. - - @param email user's email - @param firstName user's first name - @param lastName user's last name - @param phone user's phone - @param dateOfBirth user's date of birth - @param gender user's gender - @param city user's city - @param state user's state - @param zip user's zip - @param country user's country - @param externalId user's external id - */ -// UNCRUSTIFY_FORMAT_OFF -- (void)setUserEmail:(nullable NSString *)email - firstName:(nullable NSString *)firstName - lastName:(nullable NSString *)lastName - phone:(nullable NSString *)phone - dateOfBirth:(nullable NSString *)dateOfBirth - gender:(nullable NSString *)gender - city:(nullable NSString *)city - state:(nullable NSString *)state - zip:(nullable NSString *)zip - country:(nullable NSString *)country - externalId:(nullable NSString *)externalId -NS_SWIFT_NAME(setUser(email:firstName:lastName:phone:dateOfBirth:gender:city:state:zip:country:externalId:)); -// UNCRUSTIFY_FORMAT_ON - -/* - Returns the set user data else nil - */ -- (nullable NSString *)getUserData; - -/* - Clears the current user data - */ -- (void)clearUserData; - -/* - Sets custom user data to associate with all app events. All user data are hashed - and used to match Facebook user from this instance of an application. - - The user data will be persisted between application instances. - - @param data data - @param type data type, e.g. FBSDKAppEventEmail, FBSDKAppEventPhone - */ -- (void)setUserData:(nullable NSString *)data - forType:(FBSDKAppEventUserDataType)type; - -/* - Clears the current user data of certain type - */ -- (void)clearUserDataForType:(FBSDKAppEventUserDataType)type; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserIDProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserIDProviding.h deleted file mode 100644 index 50be52dd..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserIDProviding.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_UserIDProviding) -@protocol FBSDKUserIDProviding - -@property (nullable, nonatomic, copy) NSString *userID; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserIdentifier.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserIdentifier.h deleted file mode 100644 index cc1a8012..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUserIdentifier.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -NS_ASSUME_NONNULL_BEGIN - -/// A unique identifier for an end user. -typedef NSString *FBSDKUserIdentifier NS_SWIFT_NAME(UserIdentifier) NS_SWIFT_BRIDGED_TYPEDEF; - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUtility.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUtility.h deleted file mode 100644 index eb5ca0a4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKUtility.h +++ /dev/null @@ -1,108 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// Class to contain common utility methods. -NS_SWIFT_NAME(Utility) -@interface FBSDKUtility : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/** - Parses a query string into a dictionary. - @param queryString The query string value. - @return A dictionary with the key/value pairs. - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (NSDictionary *)dictionaryWithQueryString:(NSString *)queryString -NS_SWIFT_NAME(dictionary(withQuery:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Constructs a query string from a dictionary. - @param dictionary The dictionary with key/value pairs for the query string. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return Query string representation of the parameters. - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (NSString *)queryStringWithDictionary:(NSDictionary *)dictionary - error:(NSError **)errorRef -NS_SWIFT_NAME(query(from:)) -__attribute__((swift_error(nonnull_error))); -// UNCRUSTIFY_FORMAT_ON - -/** - Decodes a value from an URL. - @param value The value to decode. - @return The decoded value. - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (NSString *)URLDecode:(NSString *)value -NS_SWIFT_NAME(decode(urlString:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Encodes a value for an URL. - @param value The value to encode. - @return The encoded value. - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (NSString *)URLEncode:(NSString *)value -NS_SWIFT_NAME(encode(urlString:)); -// UNCRUSTIFY_FORMAT_ON - -/** - Creates a timer using Grand Central Dispatch. - @param interval The interval to fire the timer, in seconds. - @param block The code block to execute when timer is fired. - @return The dispatch handle. - */ -+ (dispatch_source_t)startGCDTimerWithInterval:(double)interval block:(dispatch_block_t)block; - -/** - Stop a timer that was started by startGCDTimerWithInterval. - @param timer The dispatch handle received from startGCDTimerWithInterval. - */ -+ (void)stopGCDTimer:(dispatch_source_t)timer; - -/** - Get SHA256 hased string of NSString/NSData - - @param input The data that needs to be hashed, it could be NSString or NSData. - */ - -// UNCRUSTIFY_FORMAT_OFF -+ (nullable NSString *)SHA256Hash:(NSObject *)input -NS_SWIFT_NAME(sha256Hash(_:)); -// UNCRUSTIFY_FORMAT_ON - -/// Returns the graphdomain stored in FBSDKAuthenticationToken -+ (nullable NSString *)getGraphDomainFromToken; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -+ (NSURL *)unversionedFacebookURLWithHostPrefix:(NSString *)hostPrefix - path:(NSString *)path - queryParameters:(NSDictionary *)queryParameters - error:(NSError *__autoreleasing *)errorRef; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebDialogDelegate.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebDialogDelegate.h deleted file mode 100644 index f4f21ec5..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebDialogDelegate.h +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@class FBSDKWebDialog; - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(WebDialogDelegate) -@protocol FBSDKWebDialogDelegate - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)webDialog:(FBSDKWebDialog *)webDialog didCompleteWithResults:(NSDictionary *)results; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)webDialog:(FBSDKWebDialog *)webDialog didFailWithError:(NSError *)error; - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (void)webDialogDidCancel:(FBSDKWebDialog *)webDialog; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebDialogView.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebDialogView.h deleted file mode 100644 index 824f39ff..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebDialogView.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@protocol FBSDKWebDialogViewDelegate; -@protocol FBSDKWebViewProviding; - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(FBWebDialogView) -@interface FBSDKWebDialogView : UIView - -@property (nonatomic, weak) id delegate; - -- (void)loadURL:(NSURL *)URL; -- (void)stopLoading; - -/** - Internal method exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -// UNCRUSTIFY_FORMAT_OFF -+ (void)configureWithWebViewProvider:(id)webViewProvider - urlOpener:(id)urlOpener - errorFactory:(id)errorFactory -NS_SWIFT_NAME(configure(webViewProvider:urlOpener:errorFactory:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_SWIFT_NAME(WebDialogViewDelegate) -@protocol FBSDKWebDialogViewDelegate - -- (void)webDialogView:(FBSDKWebDialogView *)webDialogView didCompleteWithResults:(NSDictionary *)results; -- (void)webDialogView:(FBSDKWebDialogView *)webDialogView didFailWithError:(NSError *)error; -- (void)webDialogViewDidCancel:(FBSDKWebDialogView *)webDialogView; -- (void)webDialogViewDidFinishLoad:(FBSDKWebDialogView *)webDialogView; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebView.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebView.h deleted file mode 100644 index 8765cc48..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebView.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(WebView) -@protocol FBSDKWebView - -@property (nullable, nonatomic, weak) id navigationDelegate; -@property (nonatomic) CGRect frame; -@property (nonatomic) CGRect bounds; - -- (nullable WKNavigation *)loadRequest:(NSURLRequest *)request; -- (void)stopLoading; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebViewAppLinkResolver.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebViewAppLinkResolver.h deleted file mode 100644 index f1d7dbed..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebViewAppLinkResolver.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - A reference implementation for an App Link resolver that uses a hidden WKWebView - to parse the HTML containing App Link metadata. - */ -NS_SWIFT_NAME(WebViewAppLinkResolver) -@interface FBSDKWebViewAppLinkResolver : NSObject - -/// Gets the instance of a FBSDKWebViewAppLinkResolver. -@property (class, nonatomic, readonly, strong) FBSDKWebViewAppLinkResolver *sharedInstance -NS_SWIFT_NAME(shared); - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebViewProviding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebViewProviding.h deleted file mode 100644 index b2f4ae68..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/FBSDKWebViewProviding.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(_WebViewProviding) -@protocol FBSDKWebViewProviding - -- (id)createWebViewWithFrame:(CGRect)frame -NS_SWIFT_NAME(createWebView(frame:)); - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/NSNotificationCenter+NotificationPosting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/NSNotificationCenter+NotificationPosting.h deleted file mode 100644 index 86fc689c..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/NSNotificationCenter+NotificationPosting.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal conformance exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FB_LINK_CATEGORY_INTERFACE(NSNotificationCenter, NotificationPosting) -@interface NSNotificationCenter (NotificationPosting) <_FBSDKNotificationPosting> - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/NSProcessInfo+MacCatalystDetermining.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/NSProcessInfo+MacCatalystDetermining.h deleted file mode 100644 index 04d01441..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/NSProcessInfo+MacCatalystDetermining.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal conformance exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FB_LINK_CATEGORY_INTERFACE(NSProcessInfo, MacCatalystDetermining) -@interface NSProcessInfo (MacCatalystDetermining) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/NSProcessInfo+OperatingSystemVersionComparing.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/NSProcessInfo+OperatingSystemVersionComparing.h deleted file mode 100644 index 4f8f2e36..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/NSProcessInfo+OperatingSystemVersionComparing.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal conformance exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FB_LINK_CATEGORY_INTERFACE(NSProcessInfo, OperatingSystemVersionComparing) -@interface NSProcessInfo (OperatingSystemVersionComparing) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/UIApplication+URLOpener.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/UIApplication+URLOpener.h deleted file mode 100644 index 9eff5f71..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/UIApplication+URLOpener.h +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal conformance exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -@interface UIApplication (URLOpener) - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/UIPasteboard+Pasteboard.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/UIPasteboard+Pasteboard.h deleted file mode 100644 index fd6f07a7..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/UIPasteboard+Pasteboard.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -#import - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FB_LINK_CATEGORY_INTERFACE(UIPasteboard, FBSDKPasteboard) -@interface UIPasteboard (FBSDKPasteboard) -@end - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/WKWebView+WebViewProtocol.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/WKWebView+WebViewProtocol.h deleted file mode 100644 index 3c18fe2b..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/WKWebView+WebViewProtocol.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(WebView) -@protocol FBSDKWebView; - -@interface WKWebView (FBSDKWebView) -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/_FBSDKNotificationPosting.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/_FBSDKNotificationPosting.h deleted file mode 100644 index 1f022660..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/_FBSDKNotificationPosting.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -/// An internal protocol used to describe a type that can post a notification -NS_SWIFT_NAME(_NotificationPosting) -@protocol _FBSDKNotificationPosting - -// UNCRUSTIFY_FORMAT_OFF -- (void)fb_postNotificationName:(NSNotificationName)name - object:(nullable id)object - userInfo:(nullable NSDictionary *)userInfo -NS_SWIFT_NAME(fb_post(name:object:userInfo:)); -// UNCRUSTIFY_FORMAT_ON - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/_FBSDKWindowFinding.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/_FBSDKWindowFinding.h deleted file mode 100644 index a9d946f3..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/_FBSDKWindowFinding.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_WindowFinding) -@protocol _FBSDKWindowFinding - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -- (nullable UIWindow *)findWindow; - -@end - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/__FBSDKLoggerCreating.h b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/__FBSDKLoggerCreating.h deleted file mode 100644 index 6af2025a..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Headers/__FBSDKLoggerCreating.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal Type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_LoggerCreating) -@protocol __FBSDKLoggerCreating - -- (id)createLoggerWithLoggingBehavior:(FBSDKLoggingBehavior)loggingBehavior; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Info.plist b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Info.plist deleted file mode 100644 index 29c05d1c..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Info.plist and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc deleted file mode 100644 index 3218d538..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc deleted file mode 100644 index 2cc0c645..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface deleted file mode 100644 index 90c30a44..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface +++ /dev/null @@ -1,432 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target x86_64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit -import AdSupport -@_exported import FBSDKCoreKit -import FBSDKCoreKit_Basics -import Foundation -import StoreKit -import Swift -import UIKit -import _Concurrency -extension FBSDKCoreKit.AccessToken { - public var permissions: Swift.Set { - get - } - public var declinedPermissions: Swift.Set { - get - } - public var expiredPermissions: Swift.Set { - get - } - public func hasGranted(_ permission: FBSDKCoreKit.Permission) -> Swift.Bool -} -@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKApplicationDelegate) final public class ApplicationDelegate : ObjectiveC.NSObject { - @objc(sharedInstance) public static var shared: FBSDKCoreKit.ApplicationDelegate { - get - } - @objc final public func initializeSDK() - @discardableResult - @objc(application:continueUserActivity:) final public func application(_ application: UIKit.UIApplication, continue userActivity: Foundation.NSUserActivity) -> Swift.Bool - @discardableResult - @objc(application:openURL:options:) final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, options: [UIKit.UIApplication.OpenURLOptionsKey : Any]) -> Swift.Bool - @discardableResult - @objc(application:openURL:sourceApplication:annotation:) final public func application(_ application: UIKit.UIApplication, open url: Foundation.URL, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool - @objc @discardableResult - final public func application(_ application: UIKit.UIApplication, didFinishLaunchingWithOptions launchOptions: [UIKit.UIApplication.LaunchOptionsKey : Any]? = nil) -> Swift.Bool - @objc final public func addObserver(_ observer: FBSDKCoreKit.FBSDKApplicationObserving) - @objc final public func removeObserver(_ observer: FBSDKCoreKit.FBSDKApplicationObserving) - @objc deinit -} -@_hasMissingDesignatedInitializers @objc(FBSDKAuthenticationTokenClaims) final public class AuthenticationTokenClaims : ObjectiveC.NSObject { - final public let jti: Swift.String - final public let iss: Swift.String - final public let aud: Swift.String - final public let nonce: Swift.String - final public let exp: Foundation.TimeInterval - final public let iat: Foundation.TimeInterval - final public let sub: Swift.String - final public let name: Swift.String? - final public let givenName: Swift.String? - final public let middleName: Swift.String? - final public let familyName: Swift.String? - final public let email: Swift.String? - final public let picture: Swift.String? - final public let userFriends: [Swift.String]? - final public let userBirthday: Swift.String? - final public let userAgeRange: [Swift.String : Foundation.NSNumber]? - final public let userHometown: [Swift.String : Swift.String]? - final public let userLocation: [Swift.String : Swift.String]? - final public let userGender: Swift.String? - final public let userLink: Swift.String? - @objc(initWithEncodedClaims:nonce:) convenience public init?(encodedClaims: Swift.String, nonce expectedNonce: Swift.String) - @objc deinit -} -@objc(FBSDKCAPIReporter) public protocol CAPIReporter { - @objc func enable() - @objc func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) - @objc func recordEvent(_ parameters: [Swift.String : Any]) -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKIcon) open class FBIcon : ObjectiveC.NSObject { - @objc open func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? - @objc public func image(size: CoreGraphics.CGSize) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, color: UIKit.UIColor) -> UIKit.UIImage? - @objc public func image(size: CoreGraphics.CGSize, scale: CoreGraphics.CGFloat, color: UIKit.UIColor) -> UIKit.UIImage? - @objc override dynamic public init() - @objc deinit -} -public typealias AppEventsCAPIManager = FBSDKCoreKit.FBSDKAppEventsCAPIManager -@objc @_inheritsConvenienceInitializers @objcMembers final public class FBSDKAppEventsCAPIManager : ObjectiveC.NSObject, FBSDKCoreKit.CAPIReporter { - @objc public static let shared: FBSDKCoreKit.FBSDKAppEventsCAPIManager - @objc override dynamic public init() - @objc final public func configure(factory: FBSDKCoreKit.GraphRequestFactoryProtocol, settings: FBSDKCoreKit.SettingsProtocol) - @objc final public func enable() - @objc final public func recordEvent(_ parameters: [Swift.String : Any]) - @objc deinit -} -@objc @_inheritsConvenienceInitializers @objcMembers public class FBSDKTransformerGraphRequestFactory : ObjectiveC.NSObject { - @objc public static let shared: FBSDKCoreKit.FBSDKTransformerGraphRequestFactory - public var credentials: FBSDKCoreKit.FBSDKTransformerGraphRequestFactory.CapiGCredentials? { - get - } - public struct CapiGCredentials { - public let accessKey: Swift.String - public let capiGatewayURL: Swift.String - public let datasetID: Swift.String - } - @objc override dynamic public init() - @objc public func configure(datasetID: Swift.String, url: Swift.String, accessKey: Swift.String) - @objc public func callCapiGatewayAPI(with parameters: [Swift.String : Any]) - @objc deinit -} -final public class KeychainStoreFactory : FBSDKCoreKit.KeychainStoreProviding { - public init() - @objc final public func createKeychainStore(service: Swift.String, accessGroup: Swift.String?) -> FBSDKCoreKit.KeychainStoreProtocol - @objc deinit -} -public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { - case publicProfile - case userFriends - case email - case userAboutMe - case userActionsBooks - case userActionsFitness - case userActionsMusic - case userActionsNews - case userActionsVideo - case userBirthday - case userEducationHistory - case userEvents - case userGamesActivity - case userGender - case userHometown - case userLikes - case userLocation - case userManagedGroups - case userPhotos - case userPosts - case userRelationships - case userRelationshipDetails - case userReligionPolitics - case userTaggedPlaces - case userVideos - case userWebsite - case userWorkHistory - case readCustomFriendlists - case readInsights - case readAudienceNetworkInsights - case readPageMailboxes - case pagesShowList - case pagesManageCta - case pagesManageInstantArticles - case adsRead - case userLink - case userAgeRange - case custom(Swift.String) - public init(stringLiteral value: Swift.String) - public var name: Swift.String { - get - } - public func hash(into hasher: inout Swift.Hasher) - public static func == (a: FBSDKCoreKit.Permission, b: FBSDKCoreKit.Permission) -> Swift.Bool - public typealias ExtendedGraphemeClusterLiteralType = Swift.String - public typealias StringLiteralType = Swift.String - public typealias UnicodeScalarLiteralType = Swift.String - public var hashValue: Swift.Int { - get - } -} -public typealias LoginTooltipBlock = (FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> Swift.Void -public enum LoginTooltipError : Swift.Error { - case missingTooltipText - public static func == (a: FBSDKCoreKit.LoginTooltipError, b: FBSDKCoreKit.LoginTooltipError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@objc @_inheritsConvenienceInitializers final public class ServerConfigurationProvider : ObjectiveC.NSObject { - final public var loggingToken: Swift.String? { - get - } - final public func shouldUseSafariViewController(forDialogName dialogName: Swift.String) -> Swift.Bool - final public func loadServerConfiguration(completion: FBSDKCoreKit.LoginTooltipBlock?) - @objc override dynamic public init() - @objc deinit -} -extension FBSDKCoreKit.Settings { - @objc final public func recordInstall() - @objc final public func logWarnings() - @objc final public func logIfSDKSettingsChanged() -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSettings) final public class Settings : ObjectiveC.NSObject, FBSDKCoreKit.SettingsProtocol, FBSDKCoreKit.SettingsLogging, FBSDKCoreKit._ClientTokenProviding { - @objc(sharedSettings) public static let shared: FBSDKCoreKit.Settings - @objc final public var sdkVersion: Swift.String { - @objc get - } - @objc final public var defaultGraphAPIVersion: Swift.String { - @objc get - } - @objc(JPEGCompressionQuality) final public var jpegCompressionQuality: CoreGraphics.CGFloat { - @objc get - @objc set - } - @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAutoLogAppEventsEnabled` instead.") - final public var autoLogAppEventsEnabled: Swift.Bool { - @objc get - @objc set - } - @objc final public var isAutoLogAppEventsEnabled: Swift.Bool { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.") - @objc final public var codelessDebugLogEnabled: Swift.Bool { - @objc get - @objc set - } - @objc final public var isCodelessDebugLogEnabled: Swift.Bool { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.") - @objc final public var advertiserIDCollectionEnabled: Swift.Bool { - @objc get - @objc set - } - @objc final public var isAdvertiserIDCollectionEnabled: Swift.Bool { - @objc get - @objc set - } - @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isSKAdNetworkReportEnabled` instead.") - final public var skAdNetworkReportEnabled: Swift.Bool { - @objc get - @objc set - } - @objc final public var isSKAdNetworkReportEnabled: Swift.Bool { - @objc get - @objc set - } - @objc final public var isEventDataUsageLimited: Swift.Bool { - @objc get - @objc set - } - @objc final public var shouldUseCachedValuesForExpensiveMetadata: Swift.Bool { - @objc get - @objc set - } - @objc final public var isGraphErrorRecoveryEnabled: Swift.Bool - @objc final public var appID: Swift.String? { - @objc get - @objc set - } - @objc final public var appURLSchemeSuffix: Swift.String? { - @objc get - @objc set - } - @objc final public var clientToken: Swift.String? { - @objc get - @objc set - } - @objc final public var displayName: Swift.String? { - @objc get - @objc set - } - @objc final public var facebookDomainPart: Swift.String? { - @objc get - @objc set - } - @objc final public var graphAPIVersion: Swift.String { - @objc get - @objc set - } - @objc final public var userAgentSuffix: Swift.String? - @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.") - @objc final public var advertiserTrackingEnabled: Swift.Bool { - @objc get - @objc set - } - @objc final public var isAdvertiserTrackingEnabled: Swift.Bool { - @objc get - @objc set(isNewlyAllowed) - } - @objc final public var advertisingTrackingStatus: FBSDKCoreKit.AdvertisingTrackingStatus { - @objc get - @objc set - } - @objc final public var isDataProcessingRestricted: Swift.Bool { - @objc get - } - @objc final public var persistableDataProcessingOptions: [FBSDKCoreKit.DataProcessingOptionKey.RawValue : Any]? { - @objc get - } - @objc final public func setDataProcessingOptions(_ options: [Swift.String]?) - @objc final public func setDataProcessingOptions(_ options: [Swift.String]?, country: Swift.Int32, state: Swift.Int32) - @objc final public var loggingBehaviors: Swift.Set { - @objc get - @objc set - } - @objc final public func enableLoggingBehavior(_ loggingBehavior: FBSDKCoreKit.LoggingBehavior) - @objc final public func disableLoggingBehavior(_ loggingBehavior: FBSDKCoreKit.LoggingBehavior) - @objc final public var shouldUseTokenOptimizations: Swift.Bool { - @objc get - @objc set - } - @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.") - @objc final public var isSetATETimeExceedsInstallTime: Swift.Bool { - @objc get - } - @objc final public var isATETimeSufficientlyDelayed: Swift.Bool { - @objc get - } - @objc final public var installTimestamp: Foundation.Date? { - @objc get - } - @objc final public var advertiserTrackingEnabledTimestamp: Foundation.Date? { - @objc get - } - @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.") - @objc final public var graphAPIDebugParamValue: Swift.String? { - @objc get - } - @objc final public var graphAPIDebugParameterValue: Swift.String? { - @objc get - } - @objc override dynamic public init() - @objc deinit -} -@objc(FBSDKSettings) public protocol SettingsProtocol { - @objc var appID: Swift.String? { get set } - @objc var clientToken: Swift.String? { get set } - @objc var userAgentSuffix: Swift.String? { get set } - @objc var sdkVersion: Swift.String { get } - @objc var displayName: Swift.String? { get set } - @objc var facebookDomainPart: Swift.String? { get set } - @objc var loggingBehaviors: Swift.Set { get set } - @objc var appURLSchemeSuffix: Swift.String? { get set } - @objc var isDataProcessingRestricted: Swift.Bool { get } - @objc var isAutoLogAppEventsEnabled: Swift.Bool { get } - @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isCodelessDebugLogEnabled` instead.") - var codelessDebugLogEnabled: Swift.Bool { get set } - @objc var isCodelessDebugLogEnabled: Swift.Bool { get set } - @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserIDCollectionEnabled` instead.") - var advertiserIDCollectionEnabled: Swift.Bool { get set } - @objc var isAdvertiserIDCollectionEnabled: Swift.Bool { get set } - @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isATETimeSufficientlyDelayed` instead.") - var isSetATETimeExceedsInstallTime: Swift.Bool { get } - @objc var isATETimeSufficientlyDelayed: Swift.Bool { get } - @objc var isSKAdNetworkReportEnabled: Swift.Bool { get } - @objc var advertisingTrackingStatus: FBSDKCoreKit.AdvertisingTrackingStatus { get } - @objc var installTimestamp: Foundation.Date? { get } - @objc var advertiserTrackingEnabledTimestamp: Foundation.Date? { get } - @objc var isEventDataUsageLimited: Swift.Bool { get set } - @objc var shouldUseTokenOptimizations: Swift.Bool { get set } - @objc var graphAPIVersion: Swift.String { get set } - @objc var isGraphErrorRecoveryEnabled: Swift.Bool { get set } - @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `graphAPIDebugParameterValue` instead.") - var graphAPIDebugParamValue: Swift.String? { get } - @objc var graphAPIDebugParameterValue: Swift.String? { get } - @objc @available(*, deprecated, message: "This property is deprecated and will be removed in the next major release. Use `isAdvertiserTrackingEnabled` instead.") - var advertiserTrackingEnabled: Swift.Bool { get set } - @objc var isAdvertiserTrackingEnabled: Swift.Bool { get set } - @objc var shouldUseCachedValuesForExpensiveMetadata: Swift.Bool { get set } - @objc var persistableDataProcessingOptions: [FBSDKCoreKit.DataProcessingOptionKey.RawValue : Any]? { get } - @objc func setDataProcessingOptions(_ options: [Swift.String]?) - @objc func setDataProcessingOptions(_ options: [Swift.String]?, country: Swift.Int32, state: Swift.Int32) -} -public enum DialogConfigurationName { - public static let message: Swift.String - public static let share: Swift.String -} -@available(tvOS, unavailable) -public struct ShareDialogConfiguration { - public init() - public var defaultShareMode: Swift.String? { - get - } - public func shouldUseNativeDialog(forDialogName dialogName: Swift.String) -> Swift.Bool - public func shouldUseSafariViewController(forDialogName dialogName: Swift.String) -> Swift.Bool -} -@objcMembers @objc(_FBSDKAccessTokenExpirer) final public class _AccessTokenExpirer : ObjectiveC.NSObject, FBSDKCoreKit._AccessTokenExpiring { - @objc public init(notificationCenter: FBSDKCoreKit._NotificationPosting & FBSDKCoreKit_Basics.NotificationDelivering) - @objc deinit -} -@objc(_FBSDKAccessTokenExpiring) public protocol _AccessTokenExpiring { -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKDialogConfigurationMapBuilder) final public class _DialogConfigurationMapBuilder : ObjectiveC.NSObject, FBSDKCoreKit._DialogConfigurationMapBuilding { - @objc final public func buildDialogConfigurationMap(from rawConfigurations: [[Swift.String : Any]]) -> [Swift.String : FBSDKCoreKit._DialogConfiguration] - @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @objc(FBSDKErrorFactory) final public class _ErrorFactory : ObjectiveC.NSObject, FBSDKCoreKit.ErrorCreating { - @objc(errorWithCode:userInfo:message:underlyingError:) final public func error(code: Swift.Int, userInfo: [Swift.String : Any]? = nil, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error - @objc(errorWithDomain:code:userInfo:message:underlyingError:) final public func error(domain: Swift.String, code: Swift.Int, userInfo: [Swift.String : Any]? = nil, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error - @objc(invalidArgumentErrorWithName:value:message:underlyingError:) final public func invalidArgumentError(name: Swift.String, value: Any?, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error - @objc(invalidArgumentErrorWithDomain:name:value:message:underlyingError:) final public func invalidArgumentError(domain: Swift.String, name: Swift.String, value: Any?, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error - @objc(requiredArgumentErrorWithName:message:underlyingError:) final public func requiredArgumentError(name: Swift.String, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error - @objc(requiredArgumentErrorWithDomain:name:message:underlyingError:) final public func requiredArgumentError(domain: Swift.String, name: Swift.String, message: Swift.String?, underlyingError: Swift.Error?) -> Swift.Error - @objc(unknownErrorWithMessage:userInfo:) final public func unknownError(message: Swift.String?, userInfo: [Swift.String : Any]? = nil) -> Swift.Error - @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLogo) final public class _FBLogo : FBSDKCoreKit.FBIcon { - @objc override final public func path(with size: CoreGraphics.CGSize) -> CoreGraphics.CGPath? - @objc override dynamic public init() - @objc deinit -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKFeatureManager) final public class _FeatureManager : ObjectiveC.NSObject, FBSDKCoreKit.FeatureChecking, FBSDKCoreKit._FeatureDisabling { - @objc public static let shared: FBSDKCoreKit._FeatureManager - @objc final public func isEnabled(_ feature: FBSDKCoreKit.SDKFeature) -> Swift.Bool - @objc final public func check(_ feature: FBSDKCoreKit.SDKFeature, completionBlock: @escaping FBSDKCoreKit.FBSDKFeatureManagerBlock) - @objc final public func disableFeature(_ feature: FBSDKCoreKit.SDKFeature) - @objc override dynamic public init() - @objc deinit -} -@objc(FBSDKPaymentObserver) final public class _PaymentObserver : ObjectiveC.NSObject, FBSDKCoreKit._PaymentObserving { - @objc(initWithPaymentQueue:paymentProductRequestorFactory:) public init(paymentQueue: StoreKit.SKPaymentQueue, paymentProductRequestorFactory: FBSDKCoreKit._PaymentProductRequestorCreating) - @objc(startObservingTransactions) final public func startObservingTransactions() - @objc(stopObservingTransactions) final public func stopObservingTransactions() - @objc deinit -} -extension FBSDKCoreKit._PaymentObserver : StoreKit.SKPaymentTransactionObserver { - @objc final public func paymentQueue(_ queue: StoreKit.SKPaymentQueue, updatedTransactions transactions: [StoreKit.SKPaymentTransaction]) -} -@_inheritsConvenienceInitializers @objc(FBSDKPaymentProductRequestorFactory) final public class _PaymentProductRequestorFactory : ObjectiveC.NSObject, FBSDKCoreKit._PaymentProductRequestorCreating { - @objc final public func createRequestor(transaction: StoreKit.SKPaymentTransaction) -> FBSDKCoreKit.PaymentProductRequestor - @objc override dynamic public init() - @objc deinit -} -@objcMembers @objc(FBSDKRestrictiveEventFilter) final public class _RestrictiveEventFilter : ObjectiveC.NSObject { - @objc final public let eventName: Swift.String - @objc final public let restrictiveParameters: [Swift.String : Any] - @objc(initWithEventName:restrictiveParameters:) public init(eventName: Swift.String, restrictiveParameters: [Swift.String : Any]) - @objc deinit -} -@objcMembers @objc(FBSDKViewImpressionLogger) final public class _ViewImpressionLogger : ObjectiveC.NSObject, FBSDKCoreKit.ImpressionLogging { - @objc(initWithEventName:) public init(eventName: FBSDKCoreKit.AppEvents.Name) - @objc public static func retrieveLogger(with eventName: FBSDKCoreKit.AppEvents.Name) -> FBSDKCoreKit._ViewImpressionLogger - @objc final public func logImpression(withIdentifier identifier: Swift.String, parameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]?) - @objc deinit -} -extension FBSDKCoreKit.LoginTooltipError : Swift.Equatable {} -extension FBSDKCoreKit.LoginTooltipError : Swift.Hashable {} diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeResources b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeResources deleted file mode 100644 index 6d7fb6a4..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,2467 +0,0 @@ - - - - - files - - Headers/FBSDKATEPublisherCreating.h - - HCKpYddhfbeOKPVi+PyxpQEl/Sw= - - Headers/FBSDKATEPublisherFactory.h - - o4BqZ5pce+E7bPPdIkkE30cwTuI= - - Headers/FBSDKAccessToken.h - - 52NScPmZOyhPECDbdwVz3SgFfnU= - - Headers/FBSDKAccessTokenProviding.h - - 8ssoFJOvhs7F3QcUOp076HcFlTA= - - Headers/FBSDKAdvertiserIDProviding.h - - spPSWUz3WKLY8u+9ZEUgThNQTMY= - - Headers/FBSDKAdvertisingTrackingStatus.h - - s2/tT+xSXPH4xXaQ+yW41JtgT58= - - Headers/FBSDKAppAvailabilityChecker.h - - Wyf9l4OPVlNw4rmgihSwsLLXekY= - - Headers/FBSDKAppEventDropDetermining.h - - kuHhyp+2GLTjun17XfcnCE5AhEU= - - Headers/FBSDKAppEventName.h - - 07b3Q5GK1Tcy4tddROpfhlXqIZY= - - Headers/FBSDKAppEventParameterName.h - - jMPwz6fdms/XUiUDkGZXO8LsEPs= - - Headers/FBSDKAppEventParameterProduct.h - - r+KeRcYNIPkXBrMbyUHT2wI7s9Y= - - Headers/FBSDKAppEventParameterValue.h - - 040yhBlHKamIDlwNu0ImpgLTCqc= - - Headers/FBSDKAppEventParametersExtracting.h - - 9pOtxV2/CHu04fcr39VsN+sfZ+s= - - Headers/FBSDKAppEventUserDataType.h - - A3lEI7gxtNx4AHoXWeE0s7u1zK8= - - Headers/FBSDKAppEvents.h - - SL8q6r3LX7NML3rTd5Ww+Q1D63k= - - Headers/FBSDKAppEventsConfiguration.h - - CsclPdVYbZT/d3vyIc3T73E3GWM= - - Headers/FBSDKAppEventsConfigurationManager.h - - ANbr0kXkjHZjFTN/QfFH+kdJmYI= - - Headers/FBSDKAppEventsConfigurationProtocol.h - - i0NY+J4ygH/XbFXvvUo0/vgSW1k= - - Headers/FBSDKAppEventsConfigurationProviding.h - - Q6UHSFjjvfBNsl6lIgbm+E/xdvg= - - Headers/FBSDKAppEventsConfiguring.h - - 3xZDGCRx9i/mb5l3w5mi5yRC1b0= - - Headers/FBSDKAppEventsDeviceInfo.h - - AOT2KxgIf9QNXM8dP6Biz1GohZU= - - Headers/FBSDKAppEventsFlushBehavior.h - - tGoQfvz6uAy5DjnhPnzX/Ai2vl4= - - Headers/FBSDKAppEventsFlushReason.h - - CVXh0F8QRsx+pTFSV0t8r1QBBAQ= - - Headers/FBSDKAppEventsNotificationName.h - - y7c3PKWx/w77oSbeugClHIvTMS8= - - Headers/FBSDKAppEventsParameterProcessing.h - - kyJmkHdvNcJrZrTL9vhuJLzossg= - - Headers/FBSDKAppEventsReporter.h - - j2aR5673Kbc66xveJIq2h8rsKLk= - - Headers/FBSDKAppEventsState.h - - GeLYTkB6KF0pJhMf3EGqH/Sr9QM= - - Headers/FBSDKAppEventsStateManager.h - - 1npaFG2cN1/3fD1rD7gXkZmnUbI= - - Headers/FBSDKAppEventsStatePersisting.h - - oylwsOMHWTY2ag3rphOgwSAfz7c= - - Headers/FBSDKAppEventsStateProviding.h - - KzGafbBYik5zyGw1bm76HKS7Tc0= - - Headers/FBSDKAppEventsUtility.h - - 5vrPi5Z7t//eIoz9u9sQrS88V8E= - - Headers/FBSDKAppEventsUtilityProtocol.h - - B92A9n5nK+eW2zqCL/7Wnm44kqQ= - - Headers/FBSDKAppLinkCreating.h - - nqhYr/0Yijl6YG6zjg69DkIZMdo= - - Headers/FBSDKAppLinkEventPosting.h - - Unlyk7QfK8RMiwI6wrySVV1IWP4= - - Headers/FBSDKAppLinkNavigationBlock.h - - 1PU/0JKCKzJJV3POVzX50kAFA0o= - - Headers/FBSDKAppLinkNavigationType.h - - 3fSnRUTotphysdDrdAvLMxLPW+k= - - Headers/FBSDKAppLinkProtocol.h - - FaTKQ3PKUnwjWoYivjhBcoWCvf8= - - Headers/FBSDKAppLinkResolverRequestBuilding.h - - SXBVCFpg1usB96KY2Km7m8BU4PQ= - - Headers/FBSDKAppLinkResolving.h - - vW0iP2TWioh9F2xVFhjb96AWH/M= - - Headers/FBSDKAppLinkTargetCreating.h - - CSjhIDvr2Fy0xL6BAuVxNcPFzdg= - - Headers/FBSDKAppLinkTargetProtocol.h - - KjpJOKaE7Hu4fZ/kcuexDfd7h/E= - - Headers/FBSDKAppLinkURL.h - - QygAk/iNI8C9zeo9e0YUgaIWY7g= - - Headers/FBSDKAppLinkURLCreating.h - - oN/+vlRMv1IvKkWrsh+VtDwu92U= - - Headers/FBSDKAppLinkURLKeys.h - - 9Ke3NaIqqmJ0mx/UMz1Vw+/X9hA= - - Headers/FBSDKAppLinkUtility.h - - CSxGCvSd3TFNsqT26linPXGDWM4= - - Headers/FBSDKAppLinkVersion.h - - 4lyPD97ZcXbRvhIigNtr3LGnzKo= - - Headers/FBSDKAppLinksBlock.h - - TPb6CeLZPTcgS7hT6GviE2JRz4k= - - Headers/FBSDKAppStoreReceiptProviding.h - - YAWUu9gn0hfRwdt2dscR4Pjncb0= - - Headers/FBSDKAppURLSchemeProviding.h - - G7H5ArEaw56tAdukKkeFnHJW3yM= - - Headers/FBSDKApplicationActivating.h - - oHcGo1IxNL4whFjkCAqY0Bezu1A= - - Headers/FBSDKApplicationLifecycleNotifications.h - - HZOemKjr7HIyL3ND764s1sIhRdA= - - Headers/FBSDKApplicationLifecycleObserving.h - - tM9oT+qXMwjCWeGffrZ/7pU9dhk= - - Headers/FBSDKApplicationObserving.h - - xJEwA88eDINbA4Kq2mRmWsoZVaE= - - Headers/FBSDKApplicationStateSetting.h - - fy5bOvCaeEMdMssTZs5062vJuLs= - - Headers/FBSDKAuthenticationStatusUtility.h - - NzmrmWDBawgvUzFKUTG4Zq+D8PQ= - - Headers/FBSDKAuthenticationToken.h - - Hbt4TrpEQ1E7m0cPJVPJrvfOMYE= - - Headers/FBSDKAuthenticationTokenProviding.h - - zDTRRbEFRongbmR9iUSO35PCbhs= - - Headers/FBSDKBridgeAPIProtocol.h - - tLjX3wSZTxU3/edMWI3RtKPsv+A= - - Headers/FBSDKBridgeAPIProtocolType.h - - DblZg5KWlfoY7uhozPWbR8A+C+Q= - - Headers/FBSDKBridgeAPIRequest.h - - 9p88MKTDxjMSnhRmD3tBUBpyKP0= - - Headers/FBSDKBridgeAPIRequestCreating.h - - fSrgRjXiEf48iO5SW4tUzCK4Dfw= - - Headers/FBSDKBridgeAPIRequestOpening.h - - 0yprixA39qr6F++QUQmDaS+kI5c= - - Headers/FBSDKBridgeAPIRequestProtocol.h - - QvIJ69YhObUzXyvQTDogepJbLIY= - - Headers/FBSDKBridgeAPIResponse.h - - 0xHREU5UN9V2806Plbv9YnZCtvo= - - Headers/FBSDKButton.h - - nRauGR6uRcDNSlw5mNra+SReMhI= - - Headers/FBSDKButtonImpressionLogging.h - - LsVpQhR6smaHCPnF/ITEWiKGkKA= - - Headers/FBSDKClientTokenProviding.h - - W+JNLAn4YexFixxEQGR3Q9RH0KI= - - Headers/FBSDKCodelessIndexer.h - - ua4gDNRjw0KAFXM4vqI1AxIhmgQ= - - Headers/FBSDKCodelessIndexing.h - - vvo1NJ1mTuIU5ZOEX1L9qWcyo+s= - - Headers/FBSDKConstants.h - - D8KfnDhhBY1wExKSXz3swq16lTE= - - Headers/FBSDKContainerViewController.h - - U4pg9nowPmFOUC9fvIpLijlN6fg= - - Headers/FBSDKConversionValueUpdating.h - - tVm8eFtv5wqn2YrSeXuGtSfgvg4= - - Headers/FBSDKCoreKit-Swift.h - - I/12fM1WV/A0jDPlNSaq+SpQpQs= - - Headers/FBSDKCoreKit.h - - NzyPajYS+MbRN9lkLeOOXWCF7aU= - - Headers/FBSDKCoreKitVersions.h - - Gf0IjCE1D3g5hMXVZM2QlVDIWqg= - - Headers/FBSDKCrashObserver.h - - i5LsrVb8OhFQsCQv02NggyWl4qk= - - Headers/FBSDKCrashShield.h - - 488qfAna0UU+EgR6ICrzMNPuE+Y= - - Headers/FBSDKDataProcessingOptionKey.h - - 2KTIgp4tO9oDInYHDKE4PkSZtuo= - - Headers/FBSDKDeviceDialogView.h - - S5gTg7o6KRYGlXEXHFmdw6g1gNw= - - Headers/FBSDKDeviceInformationProviding.h - - 3+cqw5KcT8s8WjJEM521e1sJaQk= - - Headers/FBSDKDeviceViewControllerBase.h - - Ek0UvT0wVyIfiMyquI5e1G5PRmg= - - Headers/FBSDKDialogConfiguration.h - - BkHb91/H2f5w4nnsjzWvACP+LO8= - - Headers/FBSDKDialogConfigurationMapBuilding.h - - 3JigPqy5HGPxZ1EfvLl6K2r09G4= - - Headers/FBSDKDynamicFrameworkLoaderProxy.h - - gQze+1wXFmg8HHDE0Ba4/AdlSbk= - - Headers/FBSDKErrorConfiguration.h - - t9pebtrwIlsvol930VzK/Afs/8E= - - Headers/FBSDKErrorConfigurationProtocol.h - - rWzO75a4AGVSBUj9usd195pV1pw= - - Headers/FBSDKErrorConfigurationProvider.h - - /NYL7EwesbS1Jj4zI5j/M36RrP4= - - Headers/FBSDKErrorConfigurationProviding.h - - 8oEeLY1N7YRaIXucUhviYIeCeUA= - - Headers/FBSDKErrorCreating.h - - hSTHauBFdEYzYLgpazD8Nu2mbvA= - - Headers/FBSDKErrorRecoveryAttempting.h - - woJpc0K7/L9yeXE4C+9IxIUoyNo= - - Headers/FBSDKErrorRecoveryConfiguration.h - - ycgx9i+ACoXgcR7EKbYFYCxzlOg= - - Headers/FBSDKErrorReporter.h - - mr/DzUsbnLVLYMNNABg7aaa45vw= - - Headers/FBSDKErrorReporting.h - - QPo2mKvh+gBY7bUYxLIRori3P84= - - Headers/FBSDKEventLogging.h - - L6nJnJNu/myQTc/c5cLNo6NnGoU= - - Headers/FBSDKEventProcessing.h - - gp3AdngU5TgiopBE4rJMoR6ANSg= - - Headers/FBSDKEventsProcessing.h - - AUgtiYeRjf/0lLNh6J0/4aBfbr4= - - Headers/FBSDKFeature.h - - AVSp3DCyIilpMbS1GwuTyR6Ds30= - - Headers/FBSDKFeatureChecking.h - - rYTkx84W03mL0rrno4sthw6poiM= - - Headers/FBSDKFeatureDisabling.h - - 5RTMQMD5BH2IHczkFRDwcDa6YEc= - - Headers/FBSDKFeatureExtracting.h - - rLjAEFGlg1SFdt3LKE/Vyvpy4C4= - - Headers/FBSDKFeatureExtractor.h - - UpeejK9e6KddzNj4pJ/187IOAok= - - Headers/FBSDKGateKeeperManager.h - - UApODVoVBgYDmemuf8pq5KhSZ2A= - - Headers/FBSDKGateKeeperManaging.h - - MZUyM6YX2TAfccBQg6xiTBypZ18= - - Headers/FBSDKGraphErrorRecoveryProcessor.h - - aNj/uzA6QMePztxIxRll77xHLIg= - - Headers/FBSDKGraphRequest.h - - fcyBXnX0kXW3K86AicNWhquTIZg= - - Headers/FBSDKGraphRequestConnecting.h - - sAlo7za+Sf4zj8Xg+Wy83BUtRCE= - - Headers/FBSDKGraphRequestConnection.h - - xekaYAnwI2ev6ILyXlbakBwCu00= - - Headers/FBSDKGraphRequestConnectionDelegate.h - - FSHiVcHDpJTlfdfBczQNHtjDJ8s= - - Headers/FBSDKGraphRequestConnectionFactory.h - - gAfT3DO/vuTTlEaJPEP8hL5P3Eo= - - Headers/FBSDKGraphRequestConnectionFactoryProtocol.h - - A26a5H79Zb1dRO6YHMFB4DbS+D8= - - Headers/FBSDKGraphRequestDataAttachment.h - - 7vvCqPiZp4o6JKVaJJ4FP9XkXKE= - - Headers/FBSDKGraphRequestFactory.h - - lAwX1CKv5VHiJ07/xZZylICOdg4= - - Headers/FBSDKGraphRequestFactoryProtocol.h - - Nz3K53RPMCO3ckDCvhJoBJ9TIKI= - - Headers/FBSDKGraphRequestFlags.h - - Zas2ccUoNaCrjUffAdLC6TmKLWs= - - Headers/FBSDKGraphRequestHTTPMethod.h - - sF4WT7ko2ZXuQ91thBewwSb29Cc= - - Headers/FBSDKGraphRequestMetadata.h - - Ig2aSNTYKohOL9chgKgOCRL4R+o= - - Headers/FBSDKGraphRequestPiggybackManaging.h - - RzvPVhBs2lDl2xH7PANCNXkswIE= - - Headers/FBSDKGraphRequestProtocol.h - - E72bbJ8BaX/EV/so4aPEeaLRTkY= - - Headers/FBSDKImpressionLoggerFactory.h - - nfa97DKHYMz7v0+pUDy3nlxrUYk= - - Headers/FBSDKImpressionLoggerFactoryProtocol.h - - 3LEI96v+5GIEFysj3D1C/rG8ihw= - - Headers/FBSDKImpressionLogging.h - - wrrEayG2/hN5wUceRYRAU8HrXBk= - - Headers/FBSDKImpressionLoggingButton.h - - 5jJQoQEgcqekG5Zl8U42hb9oI80= - - Headers/FBSDKInstrumentManager.h - - b4LuHg6PamZ7IBBxVoOYpxuYERM= - - Headers/FBSDKIntegrityParametersProcessorProvider.h - - YAejrtcnEaVtGKUEB4ZJpyeATvQ= - - Headers/FBSDKIntegrityProcessing.h - - 87ZiOpw4U2tli0OR6o2FOZV0Szc= - - Headers/FBSDKInternalURLOpener.h - - HjvVz4pGejcJ2GTuWU9Xj8astVc= - - Headers/FBSDKInternalUtility.h - - xVnxfL7eTB7Crbqhijh4imgTplo= - - Headers/FBSDKInternalUtilityProtocol.h - - C8PisqlQ5ZUVVrlbqb7lI6mBWqA= - - Headers/FBSDKKeychainStore.h - - VSfBFlzguwgAJhVey77PM3TiKzI= - - Headers/FBSDKKeychainStoreProtocol.h - - Vl4nIrUwT7cqcjwlXymbPkKUVDo= - - Headers/FBSDKKeychainStoreProviding.h - - u2GnomfI+oHCeoe6Ei9pG5quwVE= - - Headers/FBSDKLocation.h - - lVldFN//gmPckkWOntm6/lMe0QE= - - Headers/FBSDKLogger.h - - 19xKJkbTRpwMoQwzaC6Nu+w5tME= - - Headers/FBSDKLoggerFactory.h - - oN6VhKse4/3rPEKNFGojETNkg58= - - Headers/FBSDKLogging.h - - /DbryGZcqEQACAktvCjPjV6SDG4= - - Headers/FBSDKLoggingBehavior.h - - lNVc//dYNZlhHrZHLByspMT+TeY= - - Headers/FBSDKLoggingNotifying.h - - ClxijYzHweoVytnlGNbT1n62Q2I= - - Headers/FBSDKLoginTooltip.h - - t9qlwGoUeyWhxDfXE8Ky6RnF/gg= - - Headers/FBSDKMacCatalystDetermining.h - - Fy2901RMaq8v1KZ1nkSvVuhYSN8= - - Headers/FBSDKMath.h - - rYMaHGq5qMdO0PMhIT/NeaWQMFE= - - Headers/FBSDKMeasurementEventListener.h - - OVZSC/JIKFj+KgzAwt5biOqF7rI= - - Headers/FBSDKMeasurementEventNames.h - - 9XUuzXpHXt6PyqsDNvqKaCYOsaQ= - - Headers/FBSDKMetadataIndexer.h - - yvEMxozxtAwiiPOoouj17MOx38w= - - Headers/FBSDKMetadataIndexing.h - - 0XbHu0BpTUjfkrPvYn1B9+H0Bww= - - Headers/FBSDKModelManager.h - - UTvH2kBUyG0vy9bmR5tucIdzDMU= - - Headers/FBSDKMutableCopying.h - - CdAKmAi79FHfugMUCBcou38XjyY= - - Headers/FBSDKNetworkErrorChecker.h - - lc4ltIsnGN0wefVKZeW3BTQqt8o= - - Headers/FBSDKNetworkErrorChecking.h - - DQOOpk+tae6sTARv6zgYkUNQv+4= - - Headers/FBSDKObjectDecoding.h - - rsoqTN959edBc1dWsOJAk4SFajc= - - Headers/FBSDKOperatingSystemVersionComparing.h - - jd/kWOWeuMfcK4hF/tgU6AeS2yU= - - Headers/FBSDKPasteboard.h - - 4+oJKTiDHC9gezS8CCuhdWHO2gs= - - Headers/FBSDKPaymentObserving.h - - 2F/w1aia/WcWnKwAGffiRgYimWQ= - - Headers/FBSDKPaymentProductRequestor.h - - ZQ6Btyy0z7ZiD/M9eX+7+KDRiLE= - - Headers/FBSDKPaymentProductRequestorCreating.h - - kofChLuS6UMw2biE8Lcu2yhsmt0= - - Headers/FBSDKProductAvailability.h - - 4z6lAOLiyG+H6sMmuDzBXlrBO4Q= - - Headers/FBSDKProductCondition.h - - p2M86R+0XjuIIHBALGh4qHhF0sg= - - Headers/FBSDKProductRequestFactory.h - - 7BIaz0Ab6i62/Dq0UaZpdoNPhCs= - - Headers/FBSDKProductsRequestProtocols.h - - quFgypTeZ+2XNvJr6deEaYceClo= - - Headers/FBSDKProfileBlock.h - - m3b2HY43bVO+k7tLfgTUHlel3XM= - - Headers/FBSDKProfileNotifications.h - - p/v7YsyAewf4Zx5PgVOw0g9689k= - - Headers/FBSDKRandom.h - - rqrUnE5WdNwaBw/Fm/Sauc2KceA= - - Headers/FBSDKRestrictiveDataFilterManager.h - - FAJ1OhsZC8A6rE672mgzHs6ryVM= - - Headers/FBSDKRulesFromKeyProvider.h - - 9/nqsZZ8Epe4NBnTPqEOptCNdzs= - - Headers/FBSDKSKAdNetworkReporter.h - - N8+fSt031r3BemNKfykFVGaMU2g= - - Headers/FBSDKServerConfiguration.h - - pnkpYZNDaRSznKnX+dt14h3hg9E= - - Headers/FBSDKServerConfigurationManager.h - - MabAusZdKvvZ5Ny2wrhRTzvzRhY= - - Headers/FBSDKServerConfigurationProviding.h - - OVcy7K8/6LpbY7Ls9wBkMeiLOXc= - - Headers/FBSDKSettingsLogging.h - - j4NKiO1um7BzI27sPShA+WNNV6E= - - Headers/FBSDKSourceApplicationTracking.h - - eyc/NF7kaz05PnojBKao9RoOkXo= - - Headers/FBSDKSuggestedEventsIndexer.h - - eLTHBeEjKRaaEKDEDTrfz5o1+pE= - - Headers/FBSDKSuggestedEventsIndexerProtocol.h - - Nlpu1MobSLVgHiTs61VhpCb8F84= - - Headers/FBSDKSwizzler.h - - PgutzEuZyjT9se/U24OTeoEMo1g= - - Headers/FBSDKSwizzling.h - - jMRYakKevWrqsOerYuQ9Fb1eCT4= - - Headers/FBSDKTimeSpentData.h - - Zgill5e+tNHLsGRpZ8nXHCk2iEc= - - Headers/FBSDKTimeSpentRecording.h - - NuI7oI0R+b4/s+KiUbS+MEn4x8k= - - Headers/FBSDKTokenCaching.h - - cla0KYAtpSCy2GcXC++XdSQrxck= - - Headers/FBSDKTokenStringProviding.h - - 43wQbjzLSB+cSu9hTQZ4tJq24Mc= - - Headers/FBSDKTransformer.h - - Ui2GFPACS7T6kK9LcCLcdJyCYyo= - - Headers/FBSDKURL.h - - lg+hfhk8xZ7goFdbGZ8cVtCyNbw= - - Headers/FBSDKURLHosting.h - - O+RAgM4Uu49yrzKRLeqtv9FfVKE= - - Headers/FBSDKURLOpener.h - - /9/EmnpZWM6KdVyGGEI1NUvMbYk= - - Headers/FBSDKURLOpening.h - - 0r8abqnzwBXvpV5PlCa/kQ+OdW8= - - Headers/FBSDKURLScheme.h - - 36HfFNYLwWfRajDYFDJeNZe/evc= - - Headers/FBSDKURLSessionProxyFactory.h - - fkszrJOzG1OgfuDotJLKT74xw1w= - - Headers/FBSDKURLSessionProxyProviding.h - - 5Hely+G3LbaFH81TEA3aS8tH8Xk= - - Headers/FBSDKURLSessionProxying.h - - LIrnTeexPfrk+a2pllxOcLBqw+Q= - - Headers/FBSDKUnarchiverProvider.h - - mBxizULPLClFmFkzGvq7DZbedIU= - - Headers/FBSDKUnarchiverProviding.h - - PU6uhik4cqPkhqWAmJpctYAS+vI= - - Headers/FBSDKUserAgeRange.h - - paq4PxztwLvJ2EQKujqXLJfgjiA= - - Headers/FBSDKUserDataPersisting.h - - eiIDv79NpGtVgJHZ+jovQsS4ZsU= - - Headers/FBSDKUserDataStore.h - - iSw84njE3Q4fckPhhhUCpEMT4Uw= - - Headers/FBSDKUserIDProviding.h - - 1G3kOunQeQMavUujt30qZv1Oj98= - - Headers/FBSDKUserIdentifier.h - - EqrAGtLbcJRfQwl12songIdMMEE= - - Headers/FBSDKUtility.h - - ACK+e48w6WLwZDhZT9VIaXDWTlk= - - Headers/FBSDKWebDialogDelegate.h - - oPLwzJ7KUTr8T5hq/c983EM1rfE= - - Headers/FBSDKWebDialogView.h - - EHOQKin9zYzG+gmc/LfBegKrvEE= - - Headers/FBSDKWebView.h - - jUhFO4/5Ly1VNml/cAryOayE4Ag= - - Headers/FBSDKWebViewAppLinkResolver.h - - jEC9UH9Inm7DYqoFZv2qaN3Pe14= - - Headers/FBSDKWebViewProviding.h - - 6dBqgFJpP3qYvCEw7KHe/d5ieC8= - - Headers/NSNotificationCenter+NotificationPosting.h - - 4IqhFgtQjABnwxNo0vP4+5Q/hSU= - - Headers/NSProcessInfo+MacCatalystDetermining.h - - P2PZ0k71jzSsWpQg6vH4TOHr6SU= - - Headers/NSProcessInfo+OperatingSystemVersionComparing.h - - 7p95y3GgCy4C7g+8xfGVXW4sr18= - - Headers/UIApplication+URLOpener.h - - N6kxbbjqI4XB8O7cVqNSb4VtaOs= - - Headers/UIPasteboard+Pasteboard.h - - MKDA9GrF2o6+h3tbW9e9adSk23k= - - Headers/WKWebView+WebViewProtocol.h - - 9AxT3+g6DPZx5q3rQWhRBMFJu64= - - Headers/_FBSDKNotificationPosting.h - - w1Gpzlc2q889xvFT3+ffPk2kwQU= - - Headers/_FBSDKWindowFinding.h - - Gac9mAAYHny41SRhpW53CbfSo2s= - - Headers/__FBSDKLoggerCreating.h - - TTkFW5xuSEAOVq8O1cbEJ6/RgQg= - - Info.plist - - jyJDzs/mHusGtC/rskmisofKpcg= - - Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - c+3T41MPtZfNP4amspM2cziigDw= - - Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - FRRgS7reiep0QnTnalfnZSjESRw= - - Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos-simulator.swiftmodule - - sZGanSPfAkDweneAO62F4dAqwKU= - - Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - ATw3JLO40SeIDYmVo8ad+eoFvbs= - - Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - i9By9Jye5vw9vt8BCQliLw/tLAM= - - Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule - - wpb2Oql0VEZqfsOsjuoLnRHxMLA= - - Modules/module.modulemap - - dqxVNYXT9nBvFc3sI+M8nUrDXuA= - - - files2 - - Headers/FBSDKATEPublisherCreating.h - - hash2 - - 4DAoEwvpFC6T6PC5EJZwpa4Ey+A8LZo6rz/k/078BUM= - - - Headers/FBSDKATEPublisherFactory.h - - hash2 - - cW1M/vPKiBNWmJ+XzS8iFtLl9s1+5ahOBCQWQ33lFfA= - - - Headers/FBSDKAccessToken.h - - hash2 - - oFHJEVxEJrVA9Y7bNOjGQZ28+CrbY+rbVTIA+GC3LWs= - - - Headers/FBSDKAccessTokenProviding.h - - hash2 - - ttnRwTC/lx3T/wwxDPI/n0tOC8tMavvDSKnOHYtwmJ0= - - - Headers/FBSDKAdvertiserIDProviding.h - - hash2 - - 3TS/lxGjmXQaqCF4fgbFoM/w3nXircZe7UfQRibtXh0= - - - Headers/FBSDKAdvertisingTrackingStatus.h - - hash2 - - pj5HBFKU2AJRVkryxLDxsNyV+Hq0vhsL7ESLeXA7gco= - - - Headers/FBSDKAppAvailabilityChecker.h - - hash2 - - WCKAfRQSLZ76amGNcy7D85Zr0FqbK3yqgD2x9Q2KMVc= - - - Headers/FBSDKAppEventDropDetermining.h - - hash2 - - L9oIxJipjM/MQk2hCZ2frITY+t5sCEXfXwbMQZJm5P4= - - - Headers/FBSDKAppEventName.h - - hash2 - - IbaSicmcV89DKoSmNOXsRxZa9tNM9O/AnRwQMF1wQrM= - - - Headers/FBSDKAppEventParameterName.h - - hash2 - - P5BcIc7FNHua2MKnE3mmflQlvvdqk25zXugjGZGRhJk= - - - Headers/FBSDKAppEventParameterProduct.h - - hash2 - - FIPXmw+JMv7bBSbF0zhfVC2Ib03Sx9JYrwjlNp1XInI= - - - Headers/FBSDKAppEventParameterValue.h - - hash2 - - Q2olYJJI/DN976h566Nwy3D+obhtAQAKHOJ5lKeTfm8= - - - Headers/FBSDKAppEventParametersExtracting.h - - hash2 - - BdY6x122D6MPzxunayL68o6siMnk1pbG9+SIttD3Er0= - - - Headers/FBSDKAppEventUserDataType.h - - hash2 - - 7pjsRgcXBeV8tJeLjrQvQ/3ZBmzY9k086Z46TsArMag= - - - Headers/FBSDKAppEvents.h - - hash2 - - JHjQehs8qf1edGakmK1Z/sUwAiVGmG1fGWJ0Vj/vtsA= - - - Headers/FBSDKAppEventsConfiguration.h - - hash2 - - 12Q0lH0ENEJ3QHnAx0iNZI2iSHDqHghwhm4R6NJU5OA= - - - Headers/FBSDKAppEventsConfigurationManager.h - - hash2 - - 9Hd2vCTkBhdhGl2O0GrDnmf5Dk+9LGUCubPXDNOSj9M= - - - Headers/FBSDKAppEventsConfigurationProtocol.h - - hash2 - - Ytel7wjTc1/St9RwbbKygzhhgJo6bOhIkanOGTl8BWI= - - - Headers/FBSDKAppEventsConfigurationProviding.h - - hash2 - - Sxr+A8kVMuZThRbBh4I4DH8boozZFBrhAwev32Vh5Hw= - - - Headers/FBSDKAppEventsConfiguring.h - - hash2 - - x5C/reqxwAtsM0s8vWoVJiD7gd4zRTTPQxeIg4J5bDU= - - - Headers/FBSDKAppEventsDeviceInfo.h - - hash2 - - hQpq3SMYZtXgV9zIP/PCCQUzV4e+HhgfZ7bnChgFqPI= - - - Headers/FBSDKAppEventsFlushBehavior.h - - hash2 - - iUxqEKL4pmF7f47Qul2Oe8QI0MjDPnOn3VhWjVQWe90= - - - Headers/FBSDKAppEventsFlushReason.h - - hash2 - - z4aL5e8KYk3I9292BbvFVfL7VvGSXi8r1ULbNY9qC+o= - - - Headers/FBSDKAppEventsNotificationName.h - - hash2 - - 7JmzpHhHPCXS4WcGYrhN2g1u5YXUgR/ltWdRyfv8l0I= - - - Headers/FBSDKAppEventsParameterProcessing.h - - hash2 - - Hh/ftLatxrxdg6JLHUHXij8MNITHHHkWpAx3+fQWWEg= - - - Headers/FBSDKAppEventsReporter.h - - hash2 - - wg1FOXDGXyIdKy7bYj+hrqcKxtTG/paGmTO6QAjIyZ0= - - - Headers/FBSDKAppEventsState.h - - hash2 - - ddxD44Pj0UBj4Pw1GV61mCMahvKYawuiFhg2LfvRUCI= - - - Headers/FBSDKAppEventsStateManager.h - - hash2 - - QFynSzFRj8ZNs48YxDNrvOzNjk/5/TKdEvOpAV6gfAo= - - - Headers/FBSDKAppEventsStatePersisting.h - - hash2 - - 89C3WF44BG25E9QGywyeFSIhzSN3vIZ8j0Cf1zBc7Nw= - - - Headers/FBSDKAppEventsStateProviding.h - - hash2 - - /cQous3za5Y8sBNc9gJnSblGnlcQJNisDkxD0q+XHUg= - - - Headers/FBSDKAppEventsUtility.h - - hash2 - - pGuB3yod13iFDnnyRtuUuYaX7VHyqUUmVwj8DUHOU1Q= - - - Headers/FBSDKAppEventsUtilityProtocol.h - - hash2 - - GqSDBtnO6Rl9YeKVM4HW9KL0ei1VQnXIZ4Z4Ucg6Frc= - - - Headers/FBSDKAppLinkCreating.h - - hash2 - - TIES03/iWapcNCC9q93neFaUJvaUs7+RvhH7EO++7NE= - - - Headers/FBSDKAppLinkEventPosting.h - - hash2 - - ynWClusbalHB6D8+QrD6JmUW1Gr2JdcsDTxToJtiJ/I= - - - Headers/FBSDKAppLinkNavigationBlock.h - - hash2 - - JmQsfAZrZwAJH5qlBBRvvfzK10IKeqMWfuyED+KYNmU= - - - Headers/FBSDKAppLinkNavigationType.h - - hash2 - - hwFJL88C4bRrHRe3Y4ljnl5aCOTIvPg7Oqmz7nhwygo= - - - Headers/FBSDKAppLinkProtocol.h - - hash2 - - 4DXqK//wHh7BOXM1el/fpSnI2itx5Xvq5U9scd3DtTE= - - - Headers/FBSDKAppLinkResolverRequestBuilding.h - - hash2 - - e+6RKqsAlhAYxmTXpFwikKmionJN86SP5HKrZXbAkNs= - - - Headers/FBSDKAppLinkResolving.h - - hash2 - - qb3BIqDSak/QEJVHaa0UyJE2SIhRWJTvILOUETHKNbU= - - - Headers/FBSDKAppLinkTargetCreating.h - - hash2 - - YPM7wFIveXtTUS5N5/9q/A437m7KU0YQ6H6B206u6R4= - - - Headers/FBSDKAppLinkTargetProtocol.h - - hash2 - - xRIohRLTU/DyWAlvJeGXzuTsyj3d0Pb9Erqu0nLl2Qo= - - - Headers/FBSDKAppLinkURL.h - - hash2 - - GAKSBD0rwQ0puEpcq+BbmYBTAYi4nS6GrhNxJ1vQoKQ= - - - Headers/FBSDKAppLinkURLCreating.h - - hash2 - - sKw0E6SLYUeeNW0wOHnRp9kQIhstniWV4X8zLvnmzVU= - - - Headers/FBSDKAppLinkURLKeys.h - - hash2 - - Up9j6FGSd/tWYjJkFp+P1BcOj9PPjDtXZlpdfizgL4s= - - - Headers/FBSDKAppLinkUtility.h - - hash2 - - kp2CnE92bsV1FLjTg72fYgYnBgr5Jsp2QEI1Efop6JQ= - - - Headers/FBSDKAppLinkVersion.h - - hash2 - - ApoRkmalk5WwUDAjytM+t8cyZVllZTYJC92Fbu0c22s= - - - Headers/FBSDKAppLinksBlock.h - - hash2 - - ummPfWNsfoi+QpV6yx2bMpP5IvBHvQkfcON2myGbUy4= - - - Headers/FBSDKAppStoreReceiptProviding.h - - hash2 - - x7PPCf3qyw2K0DAl7af8aPMLzR2TVekwBP1nj0J4Ro4= - - - Headers/FBSDKAppURLSchemeProviding.h - - hash2 - - o9vW113QSBrXeTu8w1RgrMfMpi3Li+ZHpavPt/xYGa4= - - - Headers/FBSDKApplicationActivating.h - - hash2 - - N3sSrIIH8n9PUXaO6Ko042/wGj7FjgmjMz09LpHRsKk= - - - Headers/FBSDKApplicationLifecycleNotifications.h - - hash2 - - gVCQIdprFkqHFWN03C0LuQuv1i9nrhtP3G3t03o3SUM= - - - Headers/FBSDKApplicationLifecycleObserving.h - - hash2 - - wPjg8wCzbmbbm8y0dJZMh/wce2hP0UMVUsa2oZnCv6E= - - - Headers/FBSDKApplicationObserving.h - - hash2 - - jUSJX2r8mLJr8u+wAn2jLp571gJ3SriNQhCpnkSNEfw= - - - Headers/FBSDKApplicationStateSetting.h - - hash2 - - th4kWyfL9axOR4QeSZnS2+ff21hvfrJBKkVqOS9qpY4= - - - Headers/FBSDKAuthenticationStatusUtility.h - - hash2 - - eSjfSzpHEMWVAvxBo7bJWUgrhMNFvTx8WmBhyasQcEY= - - - Headers/FBSDKAuthenticationToken.h - - hash2 - - hc6XPooa0mMb1VzLG43orpr9kKXVeMa+FrWuKr51KE0= - - - Headers/FBSDKAuthenticationTokenProviding.h - - hash2 - - mfib/LOFoh5fxGgumdwep5nNFARnqYaIQPovjFKmlwo= - - - Headers/FBSDKBridgeAPIProtocol.h - - hash2 - - o6EBabARMQ/jGNCu0KhpTrBsI6PnWr6akob4aCraUv4= - - - Headers/FBSDKBridgeAPIProtocolType.h - - hash2 - - A5XYnc2oBVddlLz3wGiibtMvO6i/A+82gXL5XY+AsgA= - - - Headers/FBSDKBridgeAPIRequest.h - - hash2 - - /2BV782KXKlCMETLnCxG2DLQWT+tVDZ/Ijo516KxeVY= - - - Headers/FBSDKBridgeAPIRequestCreating.h - - hash2 - - NX+gToQ0lPJ7TSH2qMy4mIDEYMYzkZhwyZbP0XvC1iI= - - - Headers/FBSDKBridgeAPIRequestOpening.h - - hash2 - - RkLNO6zfPQbD2c3NWSSdmM3tTFBY3GPfYgBqxAleaf8= - - - Headers/FBSDKBridgeAPIRequestProtocol.h - - hash2 - - zXyn4IrEQSs/K0vIuWaHZHWeYSHJfjrS2xjq3hrHThs= - - - Headers/FBSDKBridgeAPIResponse.h - - hash2 - - VpEoCY99wbTWk0mTFsof9zSkSb9JK0bc0ty0LHM0GGE= - - - Headers/FBSDKButton.h - - hash2 - - 3PYcJgi9ksT3Oh7qkXSmtIZ4zC05ftjnedLkaQyiEEc= - - - Headers/FBSDKButtonImpressionLogging.h - - hash2 - - pShKA3myYUve8S5W/TI08BTWmhPh0RgoZQ6lY9c5S9g= - - - Headers/FBSDKClientTokenProviding.h - - hash2 - - GvqZ0xNKA6tPwu3fX7MjAlOAhByiiNjI7PR4KRn+IbU= - - - Headers/FBSDKCodelessIndexer.h - - hash2 - - FcsOP37OoWFHJHceDyLXTSnifB7NTvxbg8l+Ea2N7KE= - - - Headers/FBSDKCodelessIndexing.h - - hash2 - - pLXLVKuG6Qa9BS6uHD2G6ofjKsDr28Rz0u2tNx1QKBM= - - - Headers/FBSDKConstants.h - - hash2 - - FhwOaPhmdYaDveEEpkZpS+FYAManp/GC+vHLW+hAU6A= - - - Headers/FBSDKContainerViewController.h - - hash2 - - 29xbe5Cc1TOVvV8YSvMCywrkYejv/ToTkWJXi96mSh0= - - - Headers/FBSDKConversionValueUpdating.h - - hash2 - - 5E8XPutqDSDuiYYe0JSrgVtDG/toGn2z1kD+4FzcjN0= - - - Headers/FBSDKCoreKit-Swift.h - - hash2 - - U9CdWhA5K+I7TT+ZtZ60O25Hz0imn1iEL7Je8FcUoWk= - - - Headers/FBSDKCoreKit.h - - hash2 - - 8BgyKic5tlOlaz1aqPqUflVfvHCMI/KEAkiuqIF9am4= - - - Headers/FBSDKCoreKitVersions.h - - hash2 - - pYn5q/zPxrVGrnk9V1iUYdwAIGNNZ0CRI5THFfiM0HU= - - - Headers/FBSDKCrashObserver.h - - hash2 - - VLAJlXn/MRpH+6S2wXiJ2MMHTkHfS7Iiq8J4ETcBHo0= - - - Headers/FBSDKCrashShield.h - - hash2 - - wrUKA5GCwCODrnCFSkEOYMuhWsXWs+v3tqHYUpWF3JE= - - - Headers/FBSDKDataProcessingOptionKey.h - - hash2 - - N45K4T1fNjF4+O/UVhpkoNMCpF0tstXjwLVZpz1m/E0= - - - Headers/FBSDKDeviceDialogView.h - - hash2 - - iKW1ZrMsoImJAXe+icRWx7HghfksByJiJKxiErudJTU= - - - Headers/FBSDKDeviceInformationProviding.h - - hash2 - - s8EkAVAv6h26gfb/l1Q1SkelW9JA5mFmKroeMC+iC1M= - - - Headers/FBSDKDeviceViewControllerBase.h - - hash2 - - /vhDk0BkrcnZ0HGw4V/wB9ZMWp8TkPnrq/xo8/ZCKj4= - - - Headers/FBSDKDialogConfiguration.h - - hash2 - - sxJ8YoB2cRIbhfFUnxXIe0KRF4COPsi4Zlpo/qsKI/Q= - - - Headers/FBSDKDialogConfigurationMapBuilding.h - - hash2 - - DoHcwC+ItwFyYXOM+3jsJKQDRSVYaPDdnK5QjYY6Bdg= - - - Headers/FBSDKDynamicFrameworkLoaderProxy.h - - hash2 - - DKzc5A2VHGjb5zjiW11FfYE+be1Je5rxetWvpGpLWP8= - - - Headers/FBSDKErrorConfiguration.h - - hash2 - - DhLqWnWnnr8IYmWabnEPwwtlgNNnXJV/K4weIvUDLz4= - - - Headers/FBSDKErrorConfigurationProtocol.h - - hash2 - - +cf3Zndluf4/nH6CRo8QwhZjyyogyQr9rRGqFSJJ/Qw= - - - Headers/FBSDKErrorConfigurationProvider.h - - hash2 - - hujKKoeVm3HeeiIxu8JoiRbP5INzeD2/vMsdcL57FLM= - - - Headers/FBSDKErrorConfigurationProviding.h - - hash2 - - disBMqvoKxnyr7jUVHZSCd0dYEdLy+w18e3cMgW5INU= - - - Headers/FBSDKErrorCreating.h - - hash2 - - J1rXYSPoy877pIwlZKDP6n/b3DufexQeIl0pOymmYVY= - - - Headers/FBSDKErrorRecoveryAttempting.h - - hash2 - - W0d5bC9aorrzc9ohCQNpLCX0lFAN0NEWcKF8J0wW/rs= - - - Headers/FBSDKErrorRecoveryConfiguration.h - - hash2 - - sxH7BnnlsngUMLwevQeegntSFKDRSmTEKtWhPQj/1Gs= - - - Headers/FBSDKErrorReporter.h - - hash2 - - rcdsRdF/ar59iiIPHyagPto5zGT/Sxfh95CnVdi22+w= - - - Headers/FBSDKErrorReporting.h - - hash2 - - akNPfvBbZsCgwyqes5+H7hRxxdGAzyQYxlJqnkGK4hA= - - - Headers/FBSDKEventLogging.h - - hash2 - - FYa1ulMDCMfXCVRDa7WlspX+5kyUfFcu8Yf6tqIMQ/4= - - - Headers/FBSDKEventProcessing.h - - hash2 - - XdMXEDfV+PUzUnWtYK5vvmDq15EbhKM7Msfu34hUKZ8= - - - Headers/FBSDKEventsProcessing.h - - hash2 - - qUvzTb4JexU8FkfRFC0tmTGpbCwRUJ3UAPPKQ5Lo4tU= - - - Headers/FBSDKFeature.h - - hash2 - - EREs7BOAZCDCqVF2KL7oc0InPbfVh+JN/YB04PPTl6E= - - - Headers/FBSDKFeatureChecking.h - - hash2 - - QtYErERzFYGRmUpt4HXd8p062xQtrNl5l+J2nUhhc1k= - - - Headers/FBSDKFeatureDisabling.h - - hash2 - - TKR1xKxgrd0N8JUx6kxkmWjLK07R7jMGOSWpnHlMoqA= - - - Headers/FBSDKFeatureExtracting.h - - hash2 - - 9+2zhi+7pfcv33U40/OTdeLKZgpJVvbygggabihtg/Q= - - - Headers/FBSDKFeatureExtractor.h - - hash2 - - kEO+YvkRcV483BfguxWKQ5uS0+Qmx3F3mL3dsHGkRks= - - - Headers/FBSDKGateKeeperManager.h - - hash2 - - 7mWH6MgxmutTpF+sXRQKlG6n5MLh4o5QHROkkRPhs1E= - - - Headers/FBSDKGateKeeperManaging.h - - hash2 - - ZRWGI6azeE93UU6MLd4PVLDsl0+khZ9ajsIyRJrwYNU= - - - Headers/FBSDKGraphErrorRecoveryProcessor.h - - hash2 - - wyEA5FnCIsiLQMekTMTbQfJgpsp5uPtXVy0RVKPm/Co= - - - Headers/FBSDKGraphRequest.h - - hash2 - - 3ursnTGjZEwN3pX/7qVj17DrapYRTM+s1aookgal5VQ= - - - Headers/FBSDKGraphRequestConnecting.h - - hash2 - - /aivBeJLeVgjejn+J7Ve8A1PgbyFwWSEIOEpNrMZwLw= - - - Headers/FBSDKGraphRequestConnection.h - - hash2 - - ZBvNPns3LI0BJvy4H2sZTWT6GUx7snokHYTi2gpoI8Y= - - - Headers/FBSDKGraphRequestConnectionDelegate.h - - hash2 - - pbeIgtjILQ+9lWJviGFFqpO8IqXWnVf2DQ094YKDKMY= - - - Headers/FBSDKGraphRequestConnectionFactory.h - - hash2 - - xgTvIuiH3O0GP4dAfx+lVweVvj/3VUFzk/ZwDkEd6UM= - - - Headers/FBSDKGraphRequestConnectionFactoryProtocol.h - - hash2 - - ZSBkNkUs6k4hh3lOO6aa5+j5kuh9vwSm6BTbH++KEH4= - - - Headers/FBSDKGraphRequestDataAttachment.h - - hash2 - - rrQm0dv7u0VNuBOOr4bOsLq22U2VRKN5+/8z8dvg8ac= - - - Headers/FBSDKGraphRequestFactory.h - - hash2 - - VHji6+eQJ/noGhXoav1+rDhYGkeNSPac5f3JMIMO4OQ= - - - Headers/FBSDKGraphRequestFactoryProtocol.h - - hash2 - - 4EdOx1EfPwkCg86SDjtSacKJozvb0RRnJZ19a7qirAA= - - - Headers/FBSDKGraphRequestFlags.h - - hash2 - - QaBxTTw493IFQLv0fwkhBkWu57wAPkAZ/fexBSmcWuA= - - - Headers/FBSDKGraphRequestHTTPMethod.h - - hash2 - - s/ZdV1PYtfb+e5MToTE5eWQ/g8Ea8Lfbn1y5cPXIois= - - - Headers/FBSDKGraphRequestMetadata.h - - hash2 - - YBkwsTVbEaC8DwjEMZdgV4ipEEMPr0P+ZButq3RZ7zQ= - - - Headers/FBSDKGraphRequestPiggybackManaging.h - - hash2 - - wxiIa9cDFOlxQYXM+TkWOQooJpOkR5UkCGuNOfRHzCo= - - - Headers/FBSDKGraphRequestProtocol.h - - hash2 - - GDWolFR0Dj6corFdcjDQZdk7rfU0AEPiBD4Ij/x0efk= - - - Headers/FBSDKImpressionLoggerFactory.h - - hash2 - - QuBRqz4neAxQgnQCCfZVT7P/volyw8iY5KgrMKRJmJs= - - - Headers/FBSDKImpressionLoggerFactoryProtocol.h - - hash2 - - Us0Ez3sk3OsuatGsASCqoKebAXNWPg9S5pMOJ5DxDc4= - - - Headers/FBSDKImpressionLogging.h - - hash2 - - Vprv+yj1TQTAVjk0AdI+90h3w3DcuHwxVoAECMAadvM= - - - Headers/FBSDKImpressionLoggingButton.h - - hash2 - - ndY9up8dSnK60T7Qxxo1R50wARczYvrrA0RXdqjCzKI= - - - Headers/FBSDKInstrumentManager.h - - hash2 - - +5qq+ul/kPhxOgEhuLz8XmNc60qQeWJkTw9obciSaz4= - - - Headers/FBSDKIntegrityParametersProcessorProvider.h - - hash2 - - o5WVcgrcNZ9fy9iy8pkmLgt9cY41GNSvTFg3Z4b9k5A= - - - Headers/FBSDKIntegrityProcessing.h - - hash2 - - ZIhsJR2yehcaQancBDHC1s72R+hCE/frIqi5p8edPn8= - - - Headers/FBSDKInternalURLOpener.h - - hash2 - - Smuon7hj0cHER1LtdxVHHfiDVs0N09rO/UaT3usL3aU= - - - Headers/FBSDKInternalUtility.h - - hash2 - - fGPA4wFG0PbwsHF1HMG8uXRBNUpRfuVBclcu0v5TDCk= - - - Headers/FBSDKInternalUtilityProtocol.h - - hash2 - - BsMnKugr4OfKQO9KrXdkbyqqWFr7jyN4l8vCcAGQD9E= - - - Headers/FBSDKKeychainStore.h - - hash2 - - sQGCel/07cMPMZI0kl8wscwPV9WL/JIYf1ns0PSf8v0= - - - Headers/FBSDKKeychainStoreProtocol.h - - hash2 - - XNfcYyJYq69j5eL0ARtTlzkh8SdVCq+G/s9eY4Pd8O8= - - - Headers/FBSDKKeychainStoreProviding.h - - hash2 - - /INTsqlL5Gr82q1fsrI5Mm6ox4RJoy9zwOvstKFPXrI= - - - Headers/FBSDKLocation.h - - hash2 - - 4VM07vWgUKPPsLEMLF29hXYKIHBkc9vETSX506Z++Uw= - - - Headers/FBSDKLogger.h - - hash2 - - O7DI9fO361qB0Y+XI/ka6eMk5/LMGvTE5T0NPkcTBBI= - - - Headers/FBSDKLoggerFactory.h - - hash2 - - e8PHQtEWsLuVh+XXwDbUAFSXUORwmsnkmOyyYz+ph8g= - - - Headers/FBSDKLogging.h - - hash2 - - IvKTyTv5bHSAJcZqLwaHR/lW5CFnjIggFOzHMRDWMk4= - - - Headers/FBSDKLoggingBehavior.h - - hash2 - - f5RLVvxNd/VtlSpoMhH6nO6jFRiC9rudIo+algkCGBs= - - - Headers/FBSDKLoggingNotifying.h - - hash2 - - /H/LDFDn+fA0n3pb11qgMdP8PeuXl02axVuT5C9K6nc= - - - Headers/FBSDKLoginTooltip.h - - hash2 - - C6wHDAq5ukwucR1FkTnnq3ucsw6y7GR9wDadgB3zHZY= - - - Headers/FBSDKMacCatalystDetermining.h - - hash2 - - dOVbOuPHBVVE2h/fz8iXrr824nuLBVRrqymrNwdF5kY= - - - Headers/FBSDKMath.h - - hash2 - - RQb23pN1EiaRezovWmrJpZ289Eby0ndYmkHCpsWKbXo= - - - Headers/FBSDKMeasurementEventListener.h - - hash2 - - ELmJcxc3dSPYAYyrwqHJpwUxM4is2hfU27i90WTOYQ4= - - - Headers/FBSDKMeasurementEventNames.h - - hash2 - - Xy6hXD6E/laXHrWOeDhRU5cQKCbE05HcdVjR5tdUx6E= - - - Headers/FBSDKMetadataIndexer.h - - hash2 - - FC2xPfBPJ+KkA1lGRnOxuFDbWIJc5fChKOpjrK4QYMk= - - - Headers/FBSDKMetadataIndexing.h - - hash2 - - QjaWgUOa4ftPTfJONsDDsoLADLIhk0afRL0wWiGd9qc= - - - Headers/FBSDKModelManager.h - - hash2 - - 4HNzWyenJC3JFcA8hUl1k235rwmiyBYrmtRHx6i0w2g= - - - Headers/FBSDKMutableCopying.h - - hash2 - - 9WETC6Qraw3B3QY90JfYu/elsAnM/L40JTEsRAOO+hQ= - - - Headers/FBSDKNetworkErrorChecker.h - - hash2 - - mQPfqbSnxLTJW64KKhoGcZPQYNTYQABLzG1AZ2hcTSs= - - - Headers/FBSDKNetworkErrorChecking.h - - hash2 - - JaxujLpfeoL0uJ15AXk/+TxmnQ+XgmtHYz9sb5k3r1w= - - - Headers/FBSDKObjectDecoding.h - - hash2 - - qsowPp05Itw5uODC4pGjeSY1WE9ntYKWLfZW7A0nNw4= - - - Headers/FBSDKOperatingSystemVersionComparing.h - - hash2 - - KaQv/BSjIbO1IWul0m3Ckagnf4cBrNKnGm3fhM4GJcg= - - - Headers/FBSDKPasteboard.h - - hash2 - - UJnUSOEkUYzGWK3fOCD3HGGdwQLxYhZg4znp+HpSNGQ= - - - Headers/FBSDKPaymentObserving.h - - hash2 - - g21RW5m5mkv5jnc/g4IZvHnCPQLSjxGoaSvN3vo4UZw= - - - Headers/FBSDKPaymentProductRequestor.h - - hash2 - - S2CSCz82/VNHbyry4LOyJvanQu9UC+br3C0NUFHHqe8= - - - Headers/FBSDKPaymentProductRequestorCreating.h - - hash2 - - fGzWAJQkZyRBklHMViipfo4KyA1fMAOzlOiH4HhweQk= - - - Headers/FBSDKProductAvailability.h - - hash2 - - AfSg3sbP+VegxUAApbWi9NSI+/dlu9LbDGiLvCWo3Z0= - - - Headers/FBSDKProductCondition.h - - hash2 - - dNGTpMMgyZMruD+nBPSsD0Y3Bc2L8ZoTcsW1f5tdK7Q= - - - Headers/FBSDKProductRequestFactory.h - - hash2 - - 6bp/2xb4hfUOim9SEuGgPr9z+Bysu/FK27psJ1WxipQ= - - - Headers/FBSDKProductsRequestProtocols.h - - hash2 - - a7mWH2GsxBZ9X9N8Z/19nO+toxG/0r99YGYxK28kY0o= - - - Headers/FBSDKProfileBlock.h - - hash2 - - 4/f1aRcfzmU+yr0ypnHjdfSBpIQ8QxluAy3Yn0XxJPE= - - - Headers/FBSDKProfileNotifications.h - - hash2 - - yWNI2yhxUUa25VEKtZBJViFYRTXMmJxx1JUrJbK6QAs= - - - Headers/FBSDKRandom.h - - hash2 - - /FYnxRG5dQwkxSXWGGkucUnk7tABHKmrqud2upLxMSk= - - - Headers/FBSDKRestrictiveDataFilterManager.h - - hash2 - - zvdRFDFdVIObzvb569OCSjaowSA3dNsy0zdH0B0ggHI= - - - Headers/FBSDKRulesFromKeyProvider.h - - hash2 - - KU18OwgqjgGW8bB4DSVWVWXRm2R5Uh9WKEHg/7D71/c= - - - Headers/FBSDKSKAdNetworkReporter.h - - hash2 - - uqe1+q806a6PrWGJ1z275ZtkYMC6hW+JEjEM1j+UxFY= - - - Headers/FBSDKServerConfiguration.h - - hash2 - - XJ9LplGDxOuvXujGkpFwpK2xVQjY9Iq6c2KBQ32dmQw= - - - Headers/FBSDKServerConfigurationManager.h - - hash2 - - 7bxzdmwW3VP1D775pYiEPDzkARci0KU5+G83fUIv+Lk= - - - Headers/FBSDKServerConfigurationProviding.h - - hash2 - - nggJ6UDcdQ8WAvG9K2eWGIr1+MNgK3/g6Tj4sImbWHM= - - - Headers/FBSDKSettingsLogging.h - - hash2 - - GgfZ+r7AkNT2pA6iA72tqgExzEgxS0MRiVNUSlpsa48= - - - Headers/FBSDKSourceApplicationTracking.h - - hash2 - - qajy5wvDILF4b7Jcx9hTizBUhaT1i2GXvpxik1TzkNE= - - - Headers/FBSDKSuggestedEventsIndexer.h - - hash2 - - o+ccIBHzx5V9J1IZLNYIg+BkWS3Kl3rMRYXWeWRdhDQ= - - - Headers/FBSDKSuggestedEventsIndexerProtocol.h - - hash2 - - 9kKE4jZryp1a9dSaPrjDlA+9RhscC9+Yq3GlCBL0DpU= - - - Headers/FBSDKSwizzler.h - - hash2 - - 0n+HQ6UGePndL7zICwSJXV5WRg12HV3lB4DiARhtWIU= - - - Headers/FBSDKSwizzling.h - - hash2 - - KFyWd42cMnaIyExVvONG1g3JPBSvnv/4xdag+5V9zDQ= - - - Headers/FBSDKTimeSpentData.h - - hash2 - - 4onV/tAXCdp3PH0pHlu7hEtJ7bg+cH1JUhZKPPfhxms= - - - Headers/FBSDKTimeSpentRecording.h - - hash2 - - Xi9idQwWvd5DFqQNYAbll1aNfRM0zlSsrHt8LqUVh0E= - - - Headers/FBSDKTokenCaching.h - - hash2 - - aqvT3pRj7C448KPxobWR9AZGsr5TeBuYFw6Fe2phX4o= - - - Headers/FBSDKTokenStringProviding.h - - hash2 - - TTwDb4bRpxFALwHRV7rPZ9zwNFPGZhy34If3avetGjM= - - - Headers/FBSDKTransformer.h - - hash2 - - 76ADDGvmmKAAjwJQmqZOKN1QRhrUmGE9qELPwGG2F4k= - - - Headers/FBSDKURL.h - - hash2 - - MC/UJOZYmjruWzpiMns2o9iOpycM+cvnUnx2d+brcDA= - - - Headers/FBSDKURLHosting.h - - hash2 - - tY5HluqD9iw44nsX/G1SrqCii9dfnxqiv8T/kapFGQs= - - - Headers/FBSDKURLOpener.h - - hash2 - - DUeUDJEfTX1NM5s8QxHytKu4/avgUtMZIXnRyx+sTF4= - - - Headers/FBSDKURLOpening.h - - hash2 - - djQLdPxXd/h2GC826rf/QKm1UM7Fb9poUtZsWIB9K/M= - - - Headers/FBSDKURLScheme.h - - hash2 - - BdpEnJgCwk4m/BX4jdUcFWtch+dOASiPi4b4XuShRow= - - - Headers/FBSDKURLSessionProxyFactory.h - - hash2 - - nFIFaAzvqWS22hEvcMkix5YaPcK4GBmjn+7lCb40/RI= - - - Headers/FBSDKURLSessionProxyProviding.h - - hash2 - - aTA0C16KsECkZ2E8HCXO7ce5CfBhS4krYqHjd2sMT84= - - - Headers/FBSDKURLSessionProxying.h - - hash2 - - xCWdJ07ZEEhMehbPyCICo2qsde4nyWuid/4r5sZNYM0= - - - Headers/FBSDKUnarchiverProvider.h - - hash2 - - km9PeIz2mArhmhaSjTUxnyXNDnyTw45ONMOIrFvX9Ng= - - - Headers/FBSDKUnarchiverProviding.h - - hash2 - - oCPV4SoPYuNAh0Y+MkV7TYC6T/3tFQbq2/dC8tplruQ= - - - Headers/FBSDKUserAgeRange.h - - hash2 - - pLTGrXlcRTNXtDJu1omtFNVR7Tl9niHZllskPvHvlLI= - - - Headers/FBSDKUserDataPersisting.h - - hash2 - - e5bOiJw1uxd3xCQKKVryAoxKqTxaIVcOMbL0cYWLyJo= - - - Headers/FBSDKUserDataStore.h - - hash2 - - RY2Lg4PYOft0K2wbJtT1axcgmL2lJ5PaGtXZga3hQjI= - - - Headers/FBSDKUserIDProviding.h - - hash2 - - n8EfpaG2V2BCI5xE/8Hz8+83cLBSVMqXjkEx1Gv6r6E= - - - Headers/FBSDKUserIdentifier.h - - hash2 - - TIFVVKaBj4BvRv/gFJvtxkh3Bm/40McFA0531BAu5AI= - - - Headers/FBSDKUtility.h - - hash2 - - aDJa31ufENPB6jQuSRYbBb60HcsTocEvvcqZw2iWBN8= - - - Headers/FBSDKWebDialogDelegate.h - - hash2 - - RhnzKhKPGNsn+I0efiSBdbYdU7h+Z/m5R4mQUqXW8xA= - - - Headers/FBSDKWebDialogView.h - - hash2 - - HC8WLkRk5PhVWGbE58hLSP/goSUOleGYhuUzBNm31v4= - - - Headers/FBSDKWebView.h - - hash2 - - yZ2ZBoGlvdRcTOHXhCl80pgVGKFXIQXl9HClExQmfbc= - - - Headers/FBSDKWebViewAppLinkResolver.h - - hash2 - - +Ac5AbGpEiHL5SuKIFm5ORqswif+O0w+zlIxL1qgUd4= - - - Headers/FBSDKWebViewProviding.h - - hash2 - - 2TVzs8L8DTwpM3xFUOklhzjkivHzm2VLIiY+IXFxMnk= - - - Headers/NSNotificationCenter+NotificationPosting.h - - hash2 - - /hTFkvjgGwyFzsQ6VB5CKDoMAKTrun+jQ7LMU4Bcfws= - - - Headers/NSProcessInfo+MacCatalystDetermining.h - - hash2 - - N5KvICMBUqwJ3JveHhLX4bomYQIHATUqScz3F4Vyf8Q= - - - Headers/NSProcessInfo+OperatingSystemVersionComparing.h - - hash2 - - G6fi3L4ee8mocOfWvq0r6J1Iy2HRUZ7PyHTmpxrxo08= - - - Headers/UIApplication+URLOpener.h - - hash2 - - LFldGsPohxFxp2EMtRNr9DW5offC4saf8wAKpZaih60= - - - Headers/UIPasteboard+Pasteboard.h - - hash2 - - JdRN7qh5XEBay0JfDd6bXvUO+ciilKne5qAXVmNWoyY= - - - Headers/WKWebView+WebViewProtocol.h - - hash2 - - Uo6vnwYxxFh+V/+J5U7GTu7dFxg9xliEGHkxzgAJYTs= - - - Headers/_FBSDKNotificationPosting.h - - hash2 - - ZBUZDT5SUs3wBxxP06/A5KDaxedomK4NJ7axY0qD7jY= - - - Headers/_FBSDKWindowFinding.h - - hash2 - - QxPymhBROXgyvxD0bzeN+T5ennsD7zaelwvA1a2l3oE= - - - Headers/__FBSDKLoggerCreating.h - - hash2 - - KjjsJxMgCNjZYBZHCA+t/dUcdoGwgXLLXtNZjYzHQrA= - - - Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - hash2 - - UF3vAjKGOj7okvubjnTebivdmdcuWo0TwLfYbzPAmJs= - - - Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - hash2 - - tOj7p7sITFFgpyie47448xBs1zP5gOR7xE05sHbZsjI= - - - Modules/FBSDKCoreKit.swiftmodule/arm64-apple-tvos-simulator.swiftmodule - - hash2 - - JsBKts9AVaV3/U+c31+xz7qTaknfjZEGN/KTIPtXLT4= - - - Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - hash2 - - ygVbXc1ipgAP2qkDS0Lb0A2c2pK7fepbYPAGT7E3Mps= - - - Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - hash2 - - oT3UH1YFgPzPkxkF4dj5oD7wGdV0I6YKfffzCkPtURY= - - - Modules/FBSDKCoreKit.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule - - hash2 - - 1BHvPzUwLz2UMwYNaG5+JDxpeKFGmjkyHeBRBDrZtEo= - - - Modules/module.modulemap - - hash2 - - c2A9sHV9BPDFexemM1nM/fNWiYjoYt4V7Zxb+LDeu2Y= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index e9fd3068..00000000 --- a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKCoreKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit b/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit deleted file mode 100644 index 55051b9d..00000000 Binary files a/ios/platform/FBSDKCoreKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/Info.plist b/ios/platform/FBSDKCoreKit_Basics.xcframework/Info.plist index c34b4523..05ccff13 100644 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/Info.plist +++ b/ios/platform/FBSDKCoreKit_Basics.xcframework/Info.plist @@ -5,10 +5,8 @@ AvailableLibraries - DebugSymbolsPath - dSYMs LibraryIdentifier - ios-arm64_x86_64-simulator + ios-arm64_x86_64-maccatalyst LibraryPath FBSDKCoreKit_Basics.framework SupportedArchitectures @@ -19,25 +17,9 @@ SupportedPlatform ios SupportedPlatformVariant - simulator - - - DebugSymbolsPath - dSYMs - LibraryIdentifier - tvos-arm64 - LibraryPath - FBSDKCoreKit_Basics.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - tvos + maccatalyst - DebugSymbolsPath - dSYMs LibraryIdentifier ios-arm64 LibraryPath @@ -50,10 +32,8 @@ ios - DebugSymbolsPath - dSYMs LibraryIdentifier - ios-arm64_x86_64-maccatalyst + ios-arm64_x86_64-simulator LibraryPath FBSDKCoreKit_Basics.framework SupportedArchitectures @@ -64,23 +44,6 @@ SupportedPlatform ios SupportedPlatformVariant - maccatalyst - - - DebugSymbolsPath - dSYMs - LibraryIdentifier - tvos-arm64_x86_64-simulator - LibraryPath - FBSDKCoreKit_Basics.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - tvos - SupportedPlatformVariant simulator diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics old mode 100755 new mode 100644 index ae6d82a3..b047a0fd Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics and b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h index 29f004af..d450bcdb 100644 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h +++ b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h @@ -26,6 +26,7 @@ NS_SWIFT_NAME(CrashHandler) + (void)removeObserver:(id)observer; + (void)clearCrashReportFiles; + (NSString *)getFBSDKVersion; +- (void)saveException:(NSException *)exception; - (void)disable; diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h index 9335e7d4..36c53eb3 100644 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h +++ b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h @@ -15,6 +15,7 @@ NS_SWIFT_NAME(CrashHandlerProtocol) - (void)addObserver:(id)observer; - (void)clearCrashReportFiles; +- (void)saveException:(NSException *)exception; @end diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/Info.plist b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/Info.plist index 3e1d1ea8..a0e28df2 100644 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/Info.plist and b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/FBSDKCoreKit_Basics.framework/Info.plist differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 8c234590..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKCoreKitBasics - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics deleted file mode 100644 index 5e5515b6..00000000 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics deleted file mode 120000 index 0fb0d493..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/FBSDKCoreKit_Basics \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics new file mode 100644 index 00000000..61d7a4d8 Binary files /dev/null and b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers deleted file mode 120000 index a177d2a6..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKBase64.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKBase64.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKBase64.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKBase64.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKBasicUtility.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKBasicUtility.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKBasicUtility.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKBasicUtility.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKCoreKit_Basics.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKCoreKit_Basics.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKCoreKit_Basics.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKCoreKit_Basics.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKCrashHandler.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h similarity index 94% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKCrashHandler.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h index 29f004af..d450bcdb 100644 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKCrashHandler.h +++ b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h @@ -26,6 +26,7 @@ NS_SWIFT_NAME(CrashHandler) + (void)removeObserver:(id)observer; + (void)clearCrashReportFiles; + (NSString *)getFBSDKVersion; +- (void)saveException:(NSException *)exception; - (void)disable; diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKCrashHandlerProtocol.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h similarity index 90% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKCrashHandlerProtocol.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h index 9335e7d4..36c53eb3 100644 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKCrashHandlerProtocol.h +++ b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h @@ -15,6 +15,7 @@ NS_SWIFT_NAME(CrashHandlerProtocol) - (void)addObserver:(id)observer; - (void)clearCrashReportFiles; +- (void)saveException:(NSException *)exception; @end diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKCrashObserving.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashObserving.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKCrashObserving.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashObserving.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKDataPersisting.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKDataPersisting.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKDataPersisting.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKDataPersisting.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKFileDataExtracting.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileDataExtracting.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKFileDataExtracting.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileDataExtracting.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKFileManaging.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileManaging.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKFileManaging.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileManaging.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKInfoDictionaryProviding.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKInfoDictionaryProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKInfoDictionaryProviding.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKInfoDictionaryProviding.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKLibAnalyzer.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKLibAnalyzer.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKLibAnalyzer.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKLibAnalyzer.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKLinking.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKLinking.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKLinking.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKLinking.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKNetworkTask.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKNetworkTask.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKNetworkTask.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKNetworkTask.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKNotificationDelivering.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKNotificationDelivering.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKNotificationDelivering.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKNotificationDelivering.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKTypeUtility.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKTypeUtility.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKTypeUtility.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKTypeUtility.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKURLSession.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSession.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKURLSession.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSession.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKURLSessionProviding.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionProviding.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKURLSessionProviding.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionProviding.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKURLSessionTask.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionTask.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/FBSDKURLSessionTask.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionTask.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/NSNotificationCenter+NotificationDelivering.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/NSNotificationCenter+NotificationDelivering.h similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Headers/NSNotificationCenter+NotificationDelivering.h rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Headers/NSNotificationCenter+NotificationDelivering.h diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Modules b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Modules deleted file mode 120000 index 5736f318..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Modules/module.modulemap b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Modules/module.modulemap similarity index 100% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Modules/module.modulemap rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Modules/module.modulemap diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Resources b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Resources deleted file mode 120000 index 953ee36f..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Resources/Info.plist b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Resources/Info.plist similarity index 86% rename from ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Resources/Info.plist rename to ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Resources/Info.plist index f5e7c430..0ed75139 100644 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/Resources/Info.plist +++ b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Resources/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 21G115 + 22F82 CFBundleDevelopmentRegion en CFBundleExecutable @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 15.1.0 + 16.1.3 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 13F100 + 14C18 DTPlatformName macosx DTPlatformVersion - 12.3 + 13.1 DTSDKBuild - 21E226 + 22C55 DTSDKName - macosx12.3 + macosx13.1 DTXcode - 1341 + 1420 DTXcodeBuild - 13F100 + 14C18 LSMinimumSystemVersion 10.15 UIDeviceFamily diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/FBSDKCoreKit_Basics b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/FBSDKCoreKit_Basics deleted file mode 100755 index 278741d2..00000000 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/A/FBSDKCoreKit_Basics and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/Current b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/Current deleted file mode 120000 index 8c7e5a66..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit_Basics.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 8c234590..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKCoreKitBasics - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics deleted file mode 100644 index b33960e7..00000000 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics old mode 100755 new mode 100644 index 6a481ab3..4a74c376 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics and b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h index 29f004af..d450bcdb 100644 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h +++ b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h @@ -26,6 +26,7 @@ NS_SWIFT_NAME(CrashHandler) + (void)removeObserver:(id)observer; + (void)clearCrashReportFiles; + (NSString *)getFBSDKVersion; +- (void)saveException:(NSException *)exception; - (void)disable; diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h index 9335e7d4..36c53eb3 100644 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h +++ b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h @@ -15,6 +15,7 @@ NS_SWIFT_NAME(CrashHandlerProtocol) - (void)addObserver:(id)observer; - (void)clearCrashReportFiles; +- (void)saveException:(NSException *)exception; @end diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Info.plist b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Info.plist index 8894496d..4a26720c 100644 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Info.plist and b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Info.plist differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeDirectory b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeDirectory new file mode 100644 index 00000000..98e0dbd3 Binary files /dev/null and b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeDirectory differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeRequirements b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeRequirements new file mode 100644 index 00000000..dbf9d614 Binary files /dev/null and b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeRequirements differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeRequirements-1 b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeRequirements-1 new file mode 100644 index 00000000..b9021c88 Binary files /dev/null and b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeResources b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeResources index 4c7ce238..fbed6142 100644 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeResources +++ b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeResources @@ -18,11 +18,11 @@ Headers/FBSDKCrashHandler.h - 9qyZhKdBiv/2JqsnbqJjzs6JDp4= + CZiEDVm8gHGkALwyjZtYF2K3LGk= Headers/FBSDKCrashHandlerProtocol.h - PlP4CtaRgnMKzXyn0Cd6eWV10r8= + vSB3Xn5mAIXVnisb8nAGwYKzAe0= Headers/FBSDKCrashObserving.h @@ -82,7 +82,7 @@ Info.plist - ZY1Gds9YdXXWhmAxA/Kh6+sTfSY= + O9TQbPI9H6EtKm8z3JI4j/60f1o= Modules/module.modulemap @@ -93,6 +93,10 @@ Headers/FBSDKBase64.h + hash + + 4WPA7ov2bAhRn5QP5eZDBYX+spk= + hash2 ePF4YsPJC4jFg1uvNt6fb83WN1IDTijvBhGt+V0Rh/8= @@ -100,6 +104,10 @@ Headers/FBSDKBasicUtility.h + hash + + 3Ij+0qMFvTmtUIuRbymzor6FDzg= + hash2 4HOJGD9dL2BJIlaj/ej0J6MTNqBvYgF0/XrWiZtsT3E= @@ -107,6 +115,10 @@ Headers/FBSDKCoreKit_Basics.h + hash + + 98/O+nEXsNQ8AcNbx/iw8ai/ktE= + hash2 n96Ist8MxHyeU+TJA3OhwPRry3QcVtumXYCUmhcHycw= @@ -114,20 +126,32 @@ Headers/FBSDKCrashHandler.h + hash + + CZiEDVm8gHGkALwyjZtYF2K3LGk= + hash2 - IVTN0V/IdMwICexRs9MiG/lIQQLOiqU/aXDP+5QfgDY= + 3ILHiPoEMzce96plPruxswh7D9L+ptDaLZH98MYQ5rY= Headers/FBSDKCrashHandlerProtocol.h + hash + + vSB3Xn5mAIXVnisb8nAGwYKzAe0= + hash2 - woEHrSFdQvUOUdlyH0JGdVNem49byRaZAMw+19Pe+Sc= + qZ25WCONiSxncOC5vN2J90QWqM9a21jnkfZjwxq0odA= Headers/FBSDKCrashObserving.h + hash + + UhJc2ZYtB2hcyXxk00KbwKbTgcc= + hash2 tO6F4Bbijxuct9m9xB8pcqmAlnyPPJ0EqbN+Z8/EM1w= @@ -135,6 +159,10 @@ Headers/FBSDKDataPersisting.h + hash + + DWFuqIbVPgHRhEn7LwXAH88cs1g= + hash2 OebjtkFnL0ywqbWvKN923EqquhEiUaUb2Ex9fOLH61E= @@ -142,6 +170,10 @@ Headers/FBSDKFileDataExtracting.h + hash + + BQDcfAulsMenmeoahsXxQgOwOH8= + hash2 s/7qW6G7GCOOyCS4jkWz8szFjT6uujuGXGhTa5JF4G4= @@ -149,6 +181,10 @@ Headers/FBSDKFileManaging.h + hash + + p/4j5P/SU+cTiWeHYIULKGdiaEg= + hash2 6+3pxgKpUWQwvlj3RwBFPC0rr5+wK651qUwh0n4fPHs= @@ -156,6 +192,10 @@ Headers/FBSDKInfoDictionaryProviding.h + hash + + okxIBK/wxL+ugvqad38fKg7+VyU= + hash2 udZpX0hlPOkgV99Ck52TrAmlNiyK4r2qtK+kyPsJl8M= @@ -163,6 +203,10 @@ Headers/FBSDKLibAnalyzer.h + hash + + Sr7GpMqIG4HmNNhoU6xSJrR36F8= + hash2 vcTMWhsIb/z29oxTpsnEfTWCnlgLS7qlPQuTTREW6Ek= @@ -170,6 +214,10 @@ Headers/FBSDKLinking.h + hash + + 1OBirQhOiNPiwhFBBuCxquzs+8o= + hash2 5NmQW3WO6TuTqGtMxocXiOeGiV7p3hyX2Saia2UhhL4= @@ -177,6 +225,10 @@ Headers/FBSDKNetworkTask.h + hash + + 0sGmRF6Hdq6tvoAuo8957/Esjbc= + hash2 WXUdURA38eU1UT+VzBqNd3NJZ/tMnqMgcYFfskguL9w= @@ -184,6 +236,10 @@ Headers/FBSDKNotificationDelivering.h + hash + + H1EtkXfryfCD6P8NlmWazMezAP0= + hash2 jCbQRKCjKWBaILGHzII7b5E1nAY37YAd0KWD5lhnyBM= @@ -191,6 +247,10 @@ Headers/FBSDKTypeUtility.h + hash + + qgaA6wWpYIa+hM+VZSTB1P0w8Jk= + hash2 Xm2cMC3iy1kvQn8EXXkZ0eKLNRVCmSlSbefuvvTCTTs= @@ -198,6 +258,10 @@ Headers/FBSDKURLSession.h + hash + + lNyxKy0KC2f37l17PcuP0Gv/EDA= + hash2 5L3MvrHaYDNtK2zrxdEtZNCRnhTQHNM0bvoh0pAfKg0= @@ -205,6 +269,10 @@ Headers/FBSDKURLSessionProviding.h + hash + + 1wsWv3wp81s7ODMRhEscWZBDXkc= + hash2 O0czQhC3wEX5AKGOHblqZYeevvp4+w3IVFYRSr4Uv9o= @@ -212,6 +280,10 @@ Headers/FBSDKURLSessionTask.h + hash + + aOm3T7/JlTQP0GIRlnLQzT+NKc8= + hash2 3Efn6F2Y10Aul+I89unuMGdO1GJTM5xkZOglY+a5XtE= @@ -219,6 +291,10 @@ Headers/NSNotificationCenter+NotificationDelivering.h + hash + + 7k8yl29uNS0GjwEBkfViBHp6lN0= + hash2 ODQiUcnulvLSI4AHqIqtQvUPeAp+/9qi2eIHXnVKxh8= @@ -226,6 +302,10 @@ Modules/module.modulemap + hash + + dAKyD+E6uMaCMsZEO7c47okujEM= + hash2 Ax5EJgz2ae9iwvEaJiJhRzHL4ePWe4qZhIaEdKJk27I= diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeSignature b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeSignature new file mode 100644 index 00000000..e69de29b diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 8c234590..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKCoreKitBasics - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics b/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics deleted file mode 100644 index f0b20168..00000000 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics deleted file mode 100755 index 1757b078..00000000 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKBase64.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKBase64.h deleted file mode 100644 index b8b3a02a..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKBase64.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(Base64) -@interface FBSDKBase64 : NSObject - -/** - Decodes a base-64 encoded string. - @param string The base-64 encoded string. - @return NSData containing the decoded bytes. - */ -+ (nullable NSData *)decodeAsData:(nullable NSString *)string; - -/** - Decodes a base-64 encoded string into a string. - @param string The base-64 encoded string. - @return NSString with the decoded UTF-8 value. - */ -+ (nullable NSString *)decodeAsString:(nullable NSString *)string; - -/** - Encodes string into a base-64 representation. - @param string The string to be encoded. - @return The base-64 encoded string. - */ -+ (nullable NSString *)encodeString:(nullable NSString *)string; - -/** - Encodes URL string into a base-64 representation. - @param base64Url The URL string to be encoded. - @return The base-64 encoded string. - */ -+ (NSString *)base64FromBase64Url:(NSString *)base64Url; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKBasicUtility.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKBasicUtility.h deleted file mode 100644 index 4c5de410..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKBasicUtility.h +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Dispatches the specified block on the main thread. - @param block the block to dispatch - */ -extern void fb_dispatch_on_main_thread(dispatch_block_t block); - -/** - Dispatches the specified block on the default thread. - @param block the block to dispatch - */ -extern void fb_dispatch_on_default_thread(dispatch_block_t block); - -/** - Describes the callback for appLinkFromURLInBackground. - @param object the FBSDKAppLink representing the deferred App Link - @param stop the error during the request, if any - */ -typedef id _Nullable (^ FBSDKInvalidObjectHandler)(id object, BOOL *stop) -NS_SWIFT_NAME(InvalidObjectHandler); - -NS_SWIFT_NAME(BasicUtility) -@interface FBSDKBasicUtility : NSObject - -/** - Converts an object into a JSON string. - @param object The object to convert to JSON. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. - @return A JSON string or nil if the object cannot be converted to JSON. - */ -+ (nullable NSString *)JSONStringForObject:(id)object - error:(NSError *__autoreleasing *)errorRef - invalidObjectHandler:(nullable FBSDKInvalidObjectHandler)invalidObjectHandler; - -/** - Sets an object for a key in a dictionary if it is not nil. - @param dictionary The dictionary to set the value for. - @param object The value to set after serializing to JSON. - @param key The key to set the value for. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return NO if an error occurred while serializing the object, otherwise YES. - */ -+ (BOOL) dictionary:(NSMutableDictionary *)dictionary - setJSONStringForObject:(id)object - forKey:(id)key - error:(NSError *__autoreleasing *)errorRef; - -/** - Converts a JSON string into an object - @param string The JSON string to convert. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string - cannot be converted. - */ -+ (nullable id)objectForJSONString:(NSString *)string error:(NSError *__autoreleasing *)errorRef; - -/** - Constructs a query string from a dictionary. - @param dictionary The dictionary with key/value pairs for the query string. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. - @return Query string representation of the parameters. - */ -+ (nullable NSString *)queryStringWithDictionary:(NSDictionary *)dictionary - error:(NSError *__autoreleasing *)errorRef - invalidObjectHandler:(nullable FBSDKInvalidObjectHandler)invalidObjectHandler; - -/** - Converts simple value types to the string equivalent for serializing to a request query or body. - @param value The value to be converted. - @return The value that may have been converted if able (otherwise the input param). - */ -+ (id)convertRequestValue:(id)value; - -/** - Encodes a value for an URL. - @param value The value to encode. - @return The encoded value. - */ -+ (NSString *)URLEncode:(NSString *)value; - -/** - Parses a query string into a dictionary. - @param queryString The query string value. - @return A dictionary with the key/value pairs. - */ -+ (NSDictionary *)dictionaryWithQueryString:(NSString *)queryString; - -/** - Decodes a value from an URL. - @param value The value to decode. - @return The decoded value. - */ -+ (NSString *)URLDecode:(NSString *)value; - -/** - Gzip data with default compression level if possible. - @param data The raw data. - @return nil if unable to gzip the data, otherwise gzipped data. - */ -+ (nullable NSData *)gzip:(NSData *)data; - -+ (NSString *)anonymousID; -+ (NSString *)persistenceFilePath:(NSString *)filename; -+ (nullable NSString *)SHA256Hash:(nullable NSObject *)input; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCoreKit_Basics.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCoreKit_Basics.h deleted file mode 100644 index 38655e9f..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCoreKit_Basics.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h deleted file mode 100644 index 29f004af..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(CrashHandler) -@interface FBSDKCrashHandler : NSObject - -@property (class, nonatomic, readonly) FBSDKCrashHandler *shared; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -+ (void)disable; -+ (void)addObserver:(id)observer; -+ (void)removeObserver:(id)observer; -+ (void)clearCrashReportFiles; -+ (NSString *)getFBSDKVersion; - -- (void)disable; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h deleted file mode 100644 index 9335e7d4..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKCrashObserving; - -NS_SWIFT_NAME(CrashHandlerProtocol) -@protocol FBSDKCrashHandler - -- (void)addObserver:(id)observer; -- (void)clearCrashReportFiles; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashObserving.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashObserving.h deleted file mode 100644 index 230ac9e1..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashObserving.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(CrashObserving) -@protocol FBSDKCrashObserving - -@property (nonatomic, copy) NSArray *prefixes; -@property (nullable, nonatomic, copy) NSArray *frameworks; - -- (void)didReceiveCrashLogs:(NSArray *> *)crashLogs; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKDataPersisting.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKDataPersisting.h deleted file mode 100644 index fbcccfad..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKDataPersisting.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// An internal protocol used to describe a simple data store -NS_SWIFT_NAME(DataPersisting) -@protocol FBSDKDataPersisting - -- (void)fb_setInteger:(NSInteger)integer - forKey:(NSString *)key; -- (void)fb_setObject:(id)object - forKey:(NSString *)key; -- (nullable NSData *)fb_dataForKey:(NSString *)key; -- (NSInteger)fb_integerForKey:(NSString *)key; -- (nullable NSString *)fb_stringForKey:(NSString *)key; -- (nullable id)fb_objectForKey:(NSString *)key; -- (void)fb_removeObjectForKey:(NSString *)key; - -@end - -FB_LINK_CATEGORY_INTERFACE(NSUserDefaults, DataPersisting) -@interface NSUserDefaults (DataPersisting) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileDataExtracting.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileDataExtracting.h deleted file mode 100644 index b08c62f4..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileDataExtracting.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_FileDataExtracting) -@protocol FBSDKFileDataExtracting - -+ (nullable NSData *)fb_dataWithContentsOfFile:(NSString *)path - options:(NSDataReadingOptions)readOptionsMask - error:(NSError *_Nullable *)error; - -@end - -/** - Internal conformance exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FB_LINK_CATEGORY_INTERFACE(NSData, FileDataExtracting) -@interface NSData (FileDataExtracting) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileManaging.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileManaging.h deleted file mode 100644 index 809b992d..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileManaging.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_FileManaging) -@protocol FBSDKFileManaging - -- (BOOL)fb_createDirectoryAtPath:(NSString *)path - withIntermediateDirectories:(BOOL)createIntermediates - attributes:(NSDictionary *_Nullable)attributes - error:(NSError *_Nullable *)error; - -- (BOOL)fb_fileExistsAtPath:(NSString *)path; - -- (BOOL)fb_removeItemAtPath:(NSString *)path - error:(NSError *_Nullable *)error; - -- (NSArray *)fb_contentsOfDirectoryAtPath:(NSString *)path - error:(NSError *_Nullable *)error -__attribute__((swift_error(nonnull_error))); - -@end - -FB_LINK_CATEGORY_INTERFACE(NSFileManager, FileManaging) -@interface NSFileManager (FileManaging) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKInfoDictionaryProviding.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKInfoDictionaryProviding.h deleted file mode 100644 index 2be3237b..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKInfoDictionaryProviding.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// An internal protocol used for accessing bundles -NS_SWIFT_NAME(InfoDictionaryProviding) -@protocol FBSDKInfoDictionaryProviding - -@property (nullable, readonly, copy) NSDictionary *fb_infoDictionary; -@property (nullable, readonly, copy) NSString *fb_bundleIdentifier; - -- (nullable id)fb_objectForInfoDictionaryKey:(NSString *)key -NS_SWIFT_NAME(fb_object(forInfoDictionaryKey:)); - -@end - -FB_LINK_CATEGORY_INTERFACE(NSBundle, InfoDictionaryProviding) -@interface NSBundle (InfoDictionaryProviding) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKLibAnalyzer.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKLibAnalyzer.h deleted file mode 100644 index eb1192b4..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKLibAnalyzer.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(LibAnalyzer) -@interface FBSDKLibAnalyzer : NSObject - -+ (NSDictionary *)getMethodsTable:(NSArray *)prefixes - frameworks:(NSArray *_Nullable)frameworks; -+ (nullable NSArray *)symbolicateCallstack:(NSArray *)callstack - methodMapping:(NSDictionary *)methodMapping; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKLinking.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKLinking.h deleted file mode 100644 index 2359544d..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKLinking.h +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -// These macros exist to allow templates to substitute names of the class and category -#define FB_LINK_CATEGORY_INTERFACE(CLASS, CATEGORY) FB_LINK_REQUIRE_CATEGORY(CLASS ## _ ## CATEGORY) -#define FB_LINK_CATEGORY_IMPLEMENTATION(CLASS, CATEGORY) FB_LINKABLE(CLASS ## _ ## CATEGORY) - -#if !TARGET_OS_TV && !defined(FB_LINK_REQUIRE_DISABLE_I_KNOW_WHAT_I_AM_DOING) -// DO NOT USE this macro directly, use FB_LINK_REQUIRE_CATEGORY. - #define FB_LINK_REQUIRE_(NAME) \ - extern char FBLinkable_ ## NAME; \ - extern const void *_Nonnull const OS_WEAK OS_CONCAT(FBLink_, NAME); \ - OS_USED const void *_Nonnull const OS_WEAK OS_CONCAT(FBLink_, NAME) = &FBLinkable_ ## NAME; - -// Annotate category @implementation definitions with this macro. - #ifdef DEBUG - #define FB_LINKABLE(NAME) \ - __attribute__((used)) __attribute__((visibility("default"))) char FBLinkable_ ## NAME = 'L'; - #else - #define FB_LINKABLE(NAME) \ - __attribute__((visibility("default"))) char FBLinkable_ ## NAME = 'L'; - #endif - -// Annotate category @interface declarations with this macro. - #define FB_LINK_REQUIRE_CATEGORY(NAME) \ - FB_LINK_REQUIRE_(NAME) - -// Annotate class @interface declarations with this macro if they are getting dropped by dead stripping due to a lack of static references. - #define FB_LINK_REQUIRE_CLASS(NAME) \ - FB_LINK_REQUIRE_(NAME) \ - extern void *OBJC_CLASS_$_ ## NAME; \ - extern const void *const OS_WEAK OS_CONCAT(FBLinkClass_, NAME); \ - OS_USED const void *const OS_WEAK OS_CONCAT(FBLinkClass_, NAME) = (void *)&OBJC_CLASS_$_ ## NAME; - -// Annotate class @implementations with this macro if you know they -// will have a lack of static references or even header imports and -// you have ensured that the containing implementation will be linked -// by other means (e.g., other used classes in the same file. - #define FB_DONT_DEAD_STRIP_CLASS(NAME) \ - asm (".no_dead_strip _OBJC_CLASS_$_" #NAME); - -#else - - #define FB_LINK_REQUIRE_(NAME) - #define FB_LINKABLE(NAME) - #define FB_LINK_REQUIRE_CATEGORY(NAME) - #define FB_LINK_REQUIRE_CLASS(NAME) - #define FB_DONT_DEAD_STRIP_CLASS(NAME) - -#endif diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKNetworkTask.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKNetworkTask.h deleted file mode 100644 index 96f8c7bf..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKNetworkTask.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// An internal protocol used to describe a network task -NS_SWIFT_NAME(NetworkTask) -@protocol FBSDKNetworkTask - -@property (readonly) NSURLSessionTaskState fb_state; - -- (void)fb_resume; -- (void)fb_cancel; - -@end - -FB_LINK_CATEGORY_INTERFACE(NSURLSessionTask, NetworkTask) -@interface NSURLSessionTask (NetworkTask) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKNotificationDelivering.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKNotificationDelivering.h deleted file mode 100644 index 0a7fda86..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKNotificationDelivering.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// An internal protocol used to describe a type that can deliver a notification -NS_SWIFT_NAME(NotificationDelivering) -@protocol FBSDKNotificationDelivering - -- (void)fb_addObserver:(id)observer - selector:(SEL)selector - name:(nullable NSNotificationName)name - object:(nullable id)object; - -- (id )fb_addObserverForName:(nullable NSNotificationName)name - object:(nullable id)obj - queue:(nullable NSOperationQueue *)queue - usingBlock:(void (^)(NSNotification *note))block; - -- (void)fb_removeObserver:(id)observer; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKTypeUtility.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKTypeUtility.h deleted file mode 100644 index c0b4b61f..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKTypeUtility.h +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(TypeUtility) -@interface FBSDKTypeUtility : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/// Returns an NSArray if the provided object is an NSArray, otherwise returns nil. -+ (nullable NSArray *)arrayValue:(nullable id)object; - -/** - Return an object at a given index if the index is valid, otherwise return nil - @param array The array to retrieve the object from. - @param index The index to retrieve the object from. - */ -+ (nullable id)array:(NSArray *)array objectAtIndex:(NSUInteger)index; - -/** - Adds an object to an array if it is not nil. - @param array The array to add the object to. - @param object The object to add to the array. - */ -+ (void)array:(NSMutableArray *)array addObject:(nullable id)object; - -/// Returns a BOOL if the provided object is a BOOL, otherwise returns nil. -+ (BOOL)boolValue:(id)object; - -/// Returns an NSDictionary if the provided object is an NSDictionary, otherwise returns nil. -+ (nullable NSDictionary *)dictionaryValue:(nullable id)object; - -/// Returns an object for a given key in the provided dictionary if it matches the stated type -+ (nullable id)dictionary:(NSDictionary *)dictionary objectForKey:(NSString *)key ofType:(Class)type; - -/** - Sets an object for a key in a dictionary if it is not nil. - @param dictionary The dictionary to set the value for. - @param object The value to set. - @param key The key to set the value for. - */ -+ (void)dictionary:(NSMutableDictionary *)dictionary - setObject:(nullable id)object - forKey:(nullable id)key; - -/// Checks if an object is a valid dictionary type before enumerating its keys and objects -+ (void)dictionary:(NSDictionary *)dictionary enumerateKeysAndObjectsUsingBlock:(void(NS_NOESCAPE ^)(id key, id obj, BOOL *stop))block; - -/// Returns an NSInteger if the provided object is an NSInteger, otherwise returns nil. -+ (NSInteger)integerValue:(id)object; - -/// Returns a double if the provided object is a double, otherwise returns 0. -+ (double)doubleValue:(id)object; - -/// Returns an NSNumber if the provided object is an NSNumber, otherwise returns nil. -+ (NSNumber *)numberValue:(id)object; - -/// Returns an NSString if the provided object is an NSString, otherwise returns nil. -+ (NSString *)stringValueOrNil:(id)object; - -/// Returns the provided object if it is non-null -+ (nullable id)objectValue:(id)object; - -/// Returns an NSString if the provided object can be coered to an NSString, otherwise returns nil. -+ (nullable NSString *)coercedToStringValue:(id)object; - -/// Returns an NSTimeInterval if the provided object is an NSTimeInterval, otherwise returns nil. -+ (NSTimeInterval)timeIntervalValue:(id)object; - -/// Returns an NSUInteger if the provided object is an NSUInteger, otherwise returns nil. -+ (NSUInteger)unsignedIntegerValue:(id)object; - -/// Returns an NSURL if the provided object is an NSURL; will attempt to create an NSURL if the object is an NSString; returns nil otherwise. -+ (nullable NSURL *)coercedToURLValue:(id)object; - -/* - Lightweight safety wrapper around Foundation's NSJSONSerialization:dataWithJSONObject:options:error: - - Generate JSON data from a Foundation object. - If the object will not produce valid JSON then null is returned. - Setting the NSJSONWritingPrettyPrinted option will generate JSON with whitespace designed to make the output more readable. - If that option is not set, the most compact possible JSON will be generated. - If an error occurs, the error parameter will be set and the return value will be nil. - The resulting data is a encoded in UTF-8. - */ -+ (nullable NSData *)dataWithJSONObject:(id)obj options:(NSJSONWritingOptions)opt error:(NSError **)error; - -/* - Lightweight safety wrapper around Foundation's NSJSONSerialization:JSONObjectWithData:options:error: - - Create a Foundation object from JSON data. - Set the NSJSONReadingAllowFragments option if the parser should allow top-level objects that are not an NSArray or NSDictionary. - Setting the NSJSONReadingMutableContainers option will make the parser generate mutable NSArrays and NSDictionaries. - Setting the NSJSONReadingMutableLeaves option will make the parser generate mutable NSString objects. - If an error occurs during the parse, then the error parameter will be set and the result will be nil. - The data must be in one of the 5 supported encodings listed in the JSON specification: UTF-8, UTF-16LE, UTF-16BE, UTF-32LE, UTF-32BE. - The data may or may not have a BOM. - The most efficient encoding to use for parsing is UTF-8, so if you have a choice in encoding the data passed to this method, use UTF-8. - */ -+ (nullable id)JSONObjectWithData:(NSData *)data options:(NSJSONReadingOptions)opt error:(NSError **)error; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSession.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSession.h deleted file mode 100644 index 15d8cb6c..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSession.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface FBSDKURLSession : NSObject - -@property (nullable, atomic, strong) NSURLSession *session; -@property (nullable, nonatomic, weak) id delegate; -@property (nullable, nonatomic, retain) NSOperationQueue *delegateQueue; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithDelegate:(id)delegate - delegateQueue:(NSOperationQueue *)delegateQueue; - -- (void)executeURLRequest:(NSURLRequest *)request - completionHandler:(FBSDKURLSessionTaskBlock)handler; - -- (void)updateSessionWithBlock:(dispatch_block_t)block; - -- (void)invalidateAndCancel; - -- (BOOL)valid; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionProviding.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionProviding.h deleted file mode 100644 index 5ded8d8c..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionProviding.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// An internal protocol used to describe a url session -NS_SWIFT_NAME(URLSessionProviding) -@protocol FBSDKURLSessionProviding - -- (id)fb_dataTaskWithRequest:(NSURLRequest *)request - completionHandler:(void (^)(NSData *_Nullable data, NSURLResponse *_Nullable response, NSError *_Nullable error))completionHandler; - -@end - -FB_LINK_CATEGORY_INTERFACE(NSURLSession, URLSessionProviding) -@interface NSURLSession (URLSessionProviding) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionTask.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionTask.h deleted file mode 100644 index c5a1f20b..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionTask.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -typedef void (^ FBSDKURLSessionTaskBlock)(NSData *_Nullable responseData, - NSURLResponse *_Nullable response, - NSError *_Nullable error) -NS_SWIFT_NAME(UrlSessionTaskBlock); - -NS_SWIFT_NAME(UrlSessionTask) -@interface FBSDKURLSessionTask : NSObject - -@property (nonatomic, strong) id task; -@property (atomic, readonly) NSURLSessionTaskState state; -@property (nonatomic, readonly, strong) NSDate *requestStartDate; -@property (nullable, nonatomic, copy) FBSDKURLSessionTaskBlock handler; -@property (nonatomic, assign) uint64_t requestStartTime; -@property (nonatomic, assign) NSUInteger loggerSerialNumber; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (nullable instancetype)initWithRequest:(NSURLRequest *)request - fromSession:(id)session - completionHandler:(nullable FBSDKURLSessionTaskBlock)handler; - -- (void)start; -- (void)cancel; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/NSNotificationCenter+NotificationDelivering.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/NSNotificationCenter+NotificationDelivering.h deleted file mode 100644 index bcc9ae51..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Headers/NSNotificationCenter+NotificationDelivering.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -FB_LINK_CATEGORY_INTERFACE(NSNotificationCenter, NotificationDelivering) -@interface NSNotificationCenter (NotificationDelivering) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Info.plist b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Info.plist deleted file mode 100644 index c4ce75cc..00000000 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Info.plist and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Modules/module.modulemap b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Modules/module.modulemap deleted file mode 100644 index b30d9ebd..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/FBSDKCoreKit_Basics.framework/Modules/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module FBSDKCoreKit_Basics { - umbrella header "FBSDKCoreKit_Basics.h" - - export * - module * { export * } -} diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 8c234590..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKCoreKitBasics - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics deleted file mode 100644 index 0563fa46..00000000 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics deleted file mode 100755 index 895db36a..00000000 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/FBSDKCoreKit_Basics and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKBase64.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKBase64.h deleted file mode 100644 index b8b3a02a..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKBase64.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(Base64) -@interface FBSDKBase64 : NSObject - -/** - Decodes a base-64 encoded string. - @param string The base-64 encoded string. - @return NSData containing the decoded bytes. - */ -+ (nullable NSData *)decodeAsData:(nullable NSString *)string; - -/** - Decodes a base-64 encoded string into a string. - @param string The base-64 encoded string. - @return NSString with the decoded UTF-8 value. - */ -+ (nullable NSString *)decodeAsString:(nullable NSString *)string; - -/** - Encodes string into a base-64 representation. - @param string The string to be encoded. - @return The base-64 encoded string. - */ -+ (nullable NSString *)encodeString:(nullable NSString *)string; - -/** - Encodes URL string into a base-64 representation. - @param base64Url The URL string to be encoded. - @return The base-64 encoded string. - */ -+ (NSString *)base64FromBase64Url:(NSString *)base64Url; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKBasicUtility.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKBasicUtility.h deleted file mode 100644 index 4c5de410..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKBasicUtility.h +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Dispatches the specified block on the main thread. - @param block the block to dispatch - */ -extern void fb_dispatch_on_main_thread(dispatch_block_t block); - -/** - Dispatches the specified block on the default thread. - @param block the block to dispatch - */ -extern void fb_dispatch_on_default_thread(dispatch_block_t block); - -/** - Describes the callback for appLinkFromURLInBackground. - @param object the FBSDKAppLink representing the deferred App Link - @param stop the error during the request, if any - */ -typedef id _Nullable (^ FBSDKInvalidObjectHandler)(id object, BOOL *stop) -NS_SWIFT_NAME(InvalidObjectHandler); - -NS_SWIFT_NAME(BasicUtility) -@interface FBSDKBasicUtility : NSObject - -/** - Converts an object into a JSON string. - @param object The object to convert to JSON. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. - @return A JSON string or nil if the object cannot be converted to JSON. - */ -+ (nullable NSString *)JSONStringForObject:(id)object - error:(NSError *__autoreleasing *)errorRef - invalidObjectHandler:(nullable FBSDKInvalidObjectHandler)invalidObjectHandler; - -/** - Sets an object for a key in a dictionary if it is not nil. - @param dictionary The dictionary to set the value for. - @param object The value to set after serializing to JSON. - @param key The key to set the value for. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return NO if an error occurred while serializing the object, otherwise YES. - */ -+ (BOOL) dictionary:(NSMutableDictionary *)dictionary - setJSONStringForObject:(id)object - forKey:(id)key - error:(NSError *__autoreleasing *)errorRef; - -/** - Converts a JSON string into an object - @param string The JSON string to convert. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @return An NSDictionary, NSArray, NSString or NSNumber containing the object representation, or nil if the string - cannot be converted. - */ -+ (nullable id)objectForJSONString:(NSString *)string error:(NSError *__autoreleasing *)errorRef; - -/** - Constructs a query string from a dictionary. - @param dictionary The dictionary with key/value pairs for the query string. - @param errorRef If an error occurs, upon return contains an NSError object that describes the problem. - @param invalidObjectHandler Handles objects that are invalid, returning a replacement value or nil to ignore. - @return Query string representation of the parameters. - */ -+ (nullable NSString *)queryStringWithDictionary:(NSDictionary *)dictionary - error:(NSError *__autoreleasing *)errorRef - invalidObjectHandler:(nullable FBSDKInvalidObjectHandler)invalidObjectHandler; - -/** - Converts simple value types to the string equivalent for serializing to a request query or body. - @param value The value to be converted. - @return The value that may have been converted if able (otherwise the input param). - */ -+ (id)convertRequestValue:(id)value; - -/** - Encodes a value for an URL. - @param value The value to encode. - @return The encoded value. - */ -+ (NSString *)URLEncode:(NSString *)value; - -/** - Parses a query string into a dictionary. - @param queryString The query string value. - @return A dictionary with the key/value pairs. - */ -+ (NSDictionary *)dictionaryWithQueryString:(NSString *)queryString; - -/** - Decodes a value from an URL. - @param value The value to decode. - @return The decoded value. - */ -+ (NSString *)URLDecode:(NSString *)value; - -/** - Gzip data with default compression level if possible. - @param data The raw data. - @return nil if unable to gzip the data, otherwise gzipped data. - */ -+ (nullable NSData *)gzip:(NSData *)data; - -+ (NSString *)anonymousID; -+ (NSString *)persistenceFilePath:(NSString *)filename; -+ (nullable NSString *)SHA256Hash:(nullable NSObject *)input; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCoreKit_Basics.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCoreKit_Basics.h deleted file mode 100644 index 38655e9f..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCoreKit_Basics.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h deleted file mode 100644 index 29f004af..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandler.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(CrashHandler) -@interface FBSDKCrashHandler : NSObject - -@property (class, nonatomic, readonly) FBSDKCrashHandler *shared; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -+ (void)disable; -+ (void)addObserver:(id)observer; -+ (void)removeObserver:(id)observer; -+ (void)clearCrashReportFiles; -+ (NSString *)getFBSDKVersion; - -- (void)disable; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h deleted file mode 100644 index 9335e7d4..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashHandlerProtocol.h +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -NS_ASSUME_NONNULL_BEGIN - -@protocol FBSDKCrashObserving; - -NS_SWIFT_NAME(CrashHandlerProtocol) -@protocol FBSDKCrashHandler - -- (void)addObserver:(id)observer; -- (void)clearCrashReportFiles; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashObserving.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashObserving.h deleted file mode 100644 index 230ac9e1..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKCrashObserving.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(CrashObserving) -@protocol FBSDKCrashObserving - -@property (nonatomic, copy) NSArray *prefixes; -@property (nullable, nonatomic, copy) NSArray *frameworks; - -- (void)didReceiveCrashLogs:(NSArray *> *)crashLogs; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKDataPersisting.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKDataPersisting.h deleted file mode 100644 index fbcccfad..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKDataPersisting.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// An internal protocol used to describe a simple data store -NS_SWIFT_NAME(DataPersisting) -@protocol FBSDKDataPersisting - -- (void)fb_setInteger:(NSInteger)integer - forKey:(NSString *)key; -- (void)fb_setObject:(id)object - forKey:(NSString *)key; -- (nullable NSData *)fb_dataForKey:(NSString *)key; -- (NSInteger)fb_integerForKey:(NSString *)key; -- (nullable NSString *)fb_stringForKey:(NSString *)key; -- (nullable id)fb_objectForKey:(NSString *)key; -- (void)fb_removeObjectForKey:(NSString *)key; - -@end - -FB_LINK_CATEGORY_INTERFACE(NSUserDefaults, DataPersisting) -@interface NSUserDefaults (DataPersisting) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileDataExtracting.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileDataExtracting.h deleted file mode 100644 index b08c62f4..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileDataExtracting.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_FileDataExtracting) -@protocol FBSDKFileDataExtracting - -+ (nullable NSData *)fb_dataWithContentsOfFile:(NSString *)path - options:(NSDataReadingOptions)readOptionsMask - error:(NSError *_Nullable *)error; - -@end - -/** - Internal conformance exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -FB_LINK_CATEGORY_INTERFACE(NSData, FileDataExtracting) -@interface NSData (FileDataExtracting) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileManaging.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileManaging.h deleted file mode 100644 index 809b992d..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKFileManaging.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - Internal type exposed to facilitate transition to Swift. - API Subject to change or removal without warning. Do not use. - - @warning INTERNAL - DO NOT USE - */ -NS_SWIFT_NAME(_FileManaging) -@protocol FBSDKFileManaging - -- (BOOL)fb_createDirectoryAtPath:(NSString *)path - withIntermediateDirectories:(BOOL)createIntermediates - attributes:(NSDictionary *_Nullable)attributes - error:(NSError *_Nullable *)error; - -- (BOOL)fb_fileExistsAtPath:(NSString *)path; - -- (BOOL)fb_removeItemAtPath:(NSString *)path - error:(NSError *_Nullable *)error; - -- (NSArray *)fb_contentsOfDirectoryAtPath:(NSString *)path - error:(NSError *_Nullable *)error -__attribute__((swift_error(nonnull_error))); - -@end - -FB_LINK_CATEGORY_INTERFACE(NSFileManager, FileManaging) -@interface NSFileManager (FileManaging) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKInfoDictionaryProviding.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKInfoDictionaryProviding.h deleted file mode 100644 index 2be3237b..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKInfoDictionaryProviding.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// An internal protocol used for accessing bundles -NS_SWIFT_NAME(InfoDictionaryProviding) -@protocol FBSDKInfoDictionaryProviding - -@property (nullable, readonly, copy) NSDictionary *fb_infoDictionary; -@property (nullable, readonly, copy) NSString *fb_bundleIdentifier; - -- (nullable id)fb_objectForInfoDictionaryKey:(NSString *)key -NS_SWIFT_NAME(fb_object(forInfoDictionaryKey:)); - -@end - -FB_LINK_CATEGORY_INTERFACE(NSBundle, InfoDictionaryProviding) -@interface NSBundle (InfoDictionaryProviding) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKLibAnalyzer.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKLibAnalyzer.h deleted file mode 100644 index eb1192b4..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKLibAnalyzer.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(LibAnalyzer) -@interface FBSDKLibAnalyzer : NSObject - -+ (NSDictionary *)getMethodsTable:(NSArray *)prefixes - frameworks:(NSArray *_Nullable)frameworks; -+ (nullable NSArray *)symbolicateCallstack:(NSArray *)callstack - methodMapping:(NSDictionary *)methodMapping; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKLinking.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKLinking.h deleted file mode 100644 index 2359544d..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKLinking.h +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -// These macros exist to allow templates to substitute names of the class and category -#define FB_LINK_CATEGORY_INTERFACE(CLASS, CATEGORY) FB_LINK_REQUIRE_CATEGORY(CLASS ## _ ## CATEGORY) -#define FB_LINK_CATEGORY_IMPLEMENTATION(CLASS, CATEGORY) FB_LINKABLE(CLASS ## _ ## CATEGORY) - -#if !TARGET_OS_TV && !defined(FB_LINK_REQUIRE_DISABLE_I_KNOW_WHAT_I_AM_DOING) -// DO NOT USE this macro directly, use FB_LINK_REQUIRE_CATEGORY. - #define FB_LINK_REQUIRE_(NAME) \ - extern char FBLinkable_ ## NAME; \ - extern const void *_Nonnull const OS_WEAK OS_CONCAT(FBLink_, NAME); \ - OS_USED const void *_Nonnull const OS_WEAK OS_CONCAT(FBLink_, NAME) = &FBLinkable_ ## NAME; - -// Annotate category @implementation definitions with this macro. - #ifdef DEBUG - #define FB_LINKABLE(NAME) \ - __attribute__((used)) __attribute__((visibility("default"))) char FBLinkable_ ## NAME = 'L'; - #else - #define FB_LINKABLE(NAME) \ - __attribute__((visibility("default"))) char FBLinkable_ ## NAME = 'L'; - #endif - -// Annotate category @interface declarations with this macro. - #define FB_LINK_REQUIRE_CATEGORY(NAME) \ - FB_LINK_REQUIRE_(NAME) - -// Annotate class @interface declarations with this macro if they are getting dropped by dead stripping due to a lack of static references. - #define FB_LINK_REQUIRE_CLASS(NAME) \ - FB_LINK_REQUIRE_(NAME) \ - extern void *OBJC_CLASS_$_ ## NAME; \ - extern const void *const OS_WEAK OS_CONCAT(FBLinkClass_, NAME); \ - OS_USED const void *const OS_WEAK OS_CONCAT(FBLinkClass_, NAME) = (void *)&OBJC_CLASS_$_ ## NAME; - -// Annotate class @implementations with this macro if you know they -// will have a lack of static references or even header imports and -// you have ensured that the containing implementation will be linked -// by other means (e.g., other used classes in the same file. - #define FB_DONT_DEAD_STRIP_CLASS(NAME) \ - asm (".no_dead_strip _OBJC_CLASS_$_" #NAME); - -#else - - #define FB_LINK_REQUIRE_(NAME) - #define FB_LINKABLE(NAME) - #define FB_LINK_REQUIRE_CATEGORY(NAME) - #define FB_LINK_REQUIRE_CLASS(NAME) - #define FB_DONT_DEAD_STRIP_CLASS(NAME) - -#endif diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKNetworkTask.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKNetworkTask.h deleted file mode 100644 index 96f8c7bf..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKNetworkTask.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// An internal protocol used to describe a network task -NS_SWIFT_NAME(NetworkTask) -@protocol FBSDKNetworkTask - -@property (readonly) NSURLSessionTaskState fb_state; - -- (void)fb_resume; -- (void)fb_cancel; - -@end - -FB_LINK_CATEGORY_INTERFACE(NSURLSessionTask, NetworkTask) -@interface NSURLSessionTask (NetworkTask) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKNotificationDelivering.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKNotificationDelivering.h deleted file mode 100644 index 0a7fda86..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKNotificationDelivering.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// An internal protocol used to describe a type that can deliver a notification -NS_SWIFT_NAME(NotificationDelivering) -@protocol FBSDKNotificationDelivering - -- (void)fb_addObserver:(id)observer - selector:(SEL)selector - name:(nullable NSNotificationName)name - object:(nullable id)object; - -- (id )fb_addObserverForName:(nullable NSNotificationName)name - object:(nullable id)obj - queue:(nullable NSOperationQueue *)queue - usingBlock:(void (^)(NSNotification *note))block; - -- (void)fb_removeObserver:(id)observer; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKTypeUtility.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKTypeUtility.h deleted file mode 100644 index c0b4b61f..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKTypeUtility.h +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -NS_SWIFT_NAME(TypeUtility) -@interface FBSDKTypeUtility : NSObject - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -/// Returns an NSArray if the provided object is an NSArray, otherwise returns nil. -+ (nullable NSArray *)arrayValue:(nullable id)object; - -/** - Return an object at a given index if the index is valid, otherwise return nil - @param array The array to retrieve the object from. - @param index The index to retrieve the object from. - */ -+ (nullable id)array:(NSArray *)array objectAtIndex:(NSUInteger)index; - -/** - Adds an object to an array if it is not nil. - @param array The array to add the object to. - @param object The object to add to the array. - */ -+ (void)array:(NSMutableArray *)array addObject:(nullable id)object; - -/// Returns a BOOL if the provided object is a BOOL, otherwise returns nil. -+ (BOOL)boolValue:(id)object; - -/// Returns an NSDictionary if the provided object is an NSDictionary, otherwise returns nil. -+ (nullable NSDictionary *)dictionaryValue:(nullable id)object; - -/// Returns an object for a given key in the provided dictionary if it matches the stated type -+ (nullable id)dictionary:(NSDictionary *)dictionary objectForKey:(NSString *)key ofType:(Class)type; - -/** - Sets an object for a key in a dictionary if it is not nil. - @param dictionary The dictionary to set the value for. - @param object The value to set. - @param key The key to set the value for. - */ -+ (void)dictionary:(NSMutableDictionary *)dictionary - setObject:(nullable id)object - forKey:(nullable id)key; - -/// Checks if an object is a valid dictionary type before enumerating its keys and objects -+ (void)dictionary:(NSDictionary *)dictionary enumerateKeysAndObjectsUsingBlock:(void(NS_NOESCAPE ^)(id key, id obj, BOOL *stop))block; - -/// Returns an NSInteger if the provided object is an NSInteger, otherwise returns nil. -+ (NSInteger)integerValue:(id)object; - -/// Returns a double if the provided object is a double, otherwise returns 0. -+ (double)doubleValue:(id)object; - -/// Returns an NSNumber if the provided object is an NSNumber, otherwise returns nil. -+ (NSNumber *)numberValue:(id)object; - -/// Returns an NSString if the provided object is an NSString, otherwise returns nil. -+ (NSString *)stringValueOrNil:(id)object; - -/// Returns the provided object if it is non-null -+ (nullable id)objectValue:(id)object; - -/// Returns an NSString if the provided object can be coered to an NSString, otherwise returns nil. -+ (nullable NSString *)coercedToStringValue:(id)object; - -/// Returns an NSTimeInterval if the provided object is an NSTimeInterval, otherwise returns nil. -+ (NSTimeInterval)timeIntervalValue:(id)object; - -/// Returns an NSUInteger if the provided object is an NSUInteger, otherwise returns nil. -+ (NSUInteger)unsignedIntegerValue:(id)object; - -/// Returns an NSURL if the provided object is an NSURL; will attempt to create an NSURL if the object is an NSString; returns nil otherwise. -+ (nullable NSURL *)coercedToURLValue:(id)object; - -/* - Lightweight safety wrapper around Foundation's NSJSONSerialization:dataWithJSONObject:options:error: - - Generate JSON data from a Foundation object. - If the object will not produce valid JSON then null is returned. - Setting the NSJSONWritingPrettyPrinted option will generate JSON with whitespace designed to make the output more readable. - If that option is not set, the most compact possible JSON will be generated. - If an error occurs, the error parameter will be set and the return value will be nil. - The resulting data is a encoded in UTF-8. - */ -+ (nullable NSData *)dataWithJSONObject:(id)obj options:(NSJSONWritingOptions)opt error:(NSError **)error; - -/* - Lightweight safety wrapper around Foundation's NSJSONSerialization:JSONObjectWithData:options:error: - - Create a Foundation object from JSON data. - Set the NSJSONReadingAllowFragments option if the parser should allow top-level objects that are not an NSArray or NSDictionary. - Setting the NSJSONReadingMutableContainers option will make the parser generate mutable NSArrays and NSDictionaries. - Setting the NSJSONReadingMutableLeaves option will make the parser generate mutable NSString objects. - If an error occurs during the parse, then the error parameter will be set and the result will be nil. - The data must be in one of the 5 supported encodings listed in the JSON specification: UTF-8, UTF-16LE, UTF-16BE, UTF-32LE, UTF-32BE. - The data may or may not have a BOM. - The most efficient encoding to use for parsing is UTF-8, so if you have a choice in encoding the data passed to this method, use UTF-8. - */ -+ (nullable id)JSONObjectWithData:(NSData *)data options:(NSJSONReadingOptions)opt error:(NSError **)error; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSession.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSession.h deleted file mode 100644 index 15d8cb6c..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSession.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface FBSDKURLSession : NSObject - -@property (nullable, atomic, strong) NSURLSession *session; -@property (nullable, nonatomic, weak) id delegate; -@property (nullable, nonatomic, retain) NSOperationQueue *delegateQueue; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (instancetype)initWithDelegate:(id)delegate - delegateQueue:(NSOperationQueue *)delegateQueue; - -- (void)executeURLRequest:(NSURLRequest *)request - completionHandler:(FBSDKURLSessionTaskBlock)handler; - -- (void)updateSessionWithBlock:(dispatch_block_t)block; - -- (void)invalidateAndCancel; - -- (BOOL)valid; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionProviding.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionProviding.h deleted file mode 100644 index 5ded8d8c..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionProviding.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// An internal protocol used to describe a url session -NS_SWIFT_NAME(URLSessionProviding) -@protocol FBSDKURLSessionProviding - -- (id)fb_dataTaskWithRequest:(NSURLRequest *)request - completionHandler:(void (^)(NSData *_Nullable data, NSURLResponse *_Nullable response, NSError *_Nullable error))completionHandler; - -@end - -FB_LINK_CATEGORY_INTERFACE(NSURLSession, URLSessionProviding) -@interface NSURLSession (URLSessionProviding) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionTask.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionTask.h deleted file mode 100644 index c5a1f20b..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/FBSDKURLSessionTask.h +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -typedef void (^ FBSDKURLSessionTaskBlock)(NSData *_Nullable responseData, - NSURLResponse *_Nullable response, - NSError *_Nullable error) -NS_SWIFT_NAME(UrlSessionTaskBlock); - -NS_SWIFT_NAME(UrlSessionTask) -@interface FBSDKURLSessionTask : NSObject - -@property (nonatomic, strong) id task; -@property (atomic, readonly) NSURLSessionTaskState state; -@property (nonatomic, readonly, strong) NSDate *requestStartDate; -@property (nullable, nonatomic, copy) FBSDKURLSessionTaskBlock handler; -@property (nonatomic, assign) uint64_t requestStartTime; -@property (nonatomic, assign) NSUInteger loggerSerialNumber; - -- (instancetype)init NS_UNAVAILABLE; -+ (instancetype)new NS_UNAVAILABLE; - -- (nullable instancetype)initWithRequest:(NSURLRequest *)request - fromSession:(id)session - completionHandler:(nullable FBSDKURLSessionTaskBlock)handler; - -- (void)start; -- (void)cancel; - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/NSNotificationCenter+NotificationDelivering.h b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/NSNotificationCenter+NotificationDelivering.h deleted file mode 100644 index bcc9ae51..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Headers/NSNotificationCenter+NotificationDelivering.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#import - -NS_ASSUME_NONNULL_BEGIN - -FB_LINK_CATEGORY_INTERFACE(NSNotificationCenter, NotificationDelivering) -@interface NSNotificationCenter (NotificationDelivering) - -@end - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Info.plist b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Info.plist deleted file mode 100644 index 91ff2101..00000000 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Info.plist and /dev/null differ diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Modules/module.modulemap b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Modules/module.modulemap deleted file mode 100644 index b30d9ebd..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/Modules/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module FBSDKCoreKit_Basics { - umbrella header "FBSDKCoreKit_Basics.h" - - export * - module * { export * } -} diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeResources b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeResources deleted file mode 100644 index dbcc3312..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/FBSDKCoreKit_Basics.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,322 +0,0 @@ - - - - - files - - Headers/FBSDKBase64.h - - 4WPA7ov2bAhRn5QP5eZDBYX+spk= - - Headers/FBSDKBasicUtility.h - - 3Ij+0qMFvTmtUIuRbymzor6FDzg= - - Headers/FBSDKCoreKit_Basics.h - - 98/O+nEXsNQ8AcNbx/iw8ai/ktE= - - Headers/FBSDKCrashHandler.h - - 9qyZhKdBiv/2JqsnbqJjzs6JDp4= - - Headers/FBSDKCrashHandlerProtocol.h - - PlP4CtaRgnMKzXyn0Cd6eWV10r8= - - Headers/FBSDKCrashObserving.h - - UhJc2ZYtB2hcyXxk00KbwKbTgcc= - - Headers/FBSDKDataPersisting.h - - DWFuqIbVPgHRhEn7LwXAH88cs1g= - - Headers/FBSDKFileDataExtracting.h - - BQDcfAulsMenmeoahsXxQgOwOH8= - - Headers/FBSDKFileManaging.h - - p/4j5P/SU+cTiWeHYIULKGdiaEg= - - Headers/FBSDKInfoDictionaryProviding.h - - okxIBK/wxL+ugvqad38fKg7+VyU= - - Headers/FBSDKLibAnalyzer.h - - Sr7GpMqIG4HmNNhoU6xSJrR36F8= - - Headers/FBSDKLinking.h - - 1OBirQhOiNPiwhFBBuCxquzs+8o= - - Headers/FBSDKNetworkTask.h - - 0sGmRF6Hdq6tvoAuo8957/Esjbc= - - Headers/FBSDKNotificationDelivering.h - - H1EtkXfryfCD6P8NlmWazMezAP0= - - Headers/FBSDKTypeUtility.h - - qgaA6wWpYIa+hM+VZSTB1P0w8Jk= - - Headers/FBSDKURLSession.h - - lNyxKy0KC2f37l17PcuP0Gv/EDA= - - Headers/FBSDKURLSessionProviding.h - - 1wsWv3wp81s7ODMRhEscWZBDXkc= - - Headers/FBSDKURLSessionTask.h - - aOm3T7/JlTQP0GIRlnLQzT+NKc8= - - Headers/NSNotificationCenter+NotificationDelivering.h - - 7k8yl29uNS0GjwEBkfViBHp6lN0= - - Info.plist - - UEOen/3IrIum1ONYlei2TBOsJdc= - - Modules/module.modulemap - - dAKyD+E6uMaCMsZEO7c47okujEM= - - - files2 - - Headers/FBSDKBase64.h - - hash2 - - ePF4YsPJC4jFg1uvNt6fb83WN1IDTijvBhGt+V0Rh/8= - - - Headers/FBSDKBasicUtility.h - - hash2 - - 4HOJGD9dL2BJIlaj/ej0J6MTNqBvYgF0/XrWiZtsT3E= - - - Headers/FBSDKCoreKit_Basics.h - - hash2 - - n96Ist8MxHyeU+TJA3OhwPRry3QcVtumXYCUmhcHycw= - - - Headers/FBSDKCrashHandler.h - - hash2 - - IVTN0V/IdMwICexRs9MiG/lIQQLOiqU/aXDP+5QfgDY= - - - Headers/FBSDKCrashHandlerProtocol.h - - hash2 - - woEHrSFdQvUOUdlyH0JGdVNem49byRaZAMw+19Pe+Sc= - - - Headers/FBSDKCrashObserving.h - - hash2 - - tO6F4Bbijxuct9m9xB8pcqmAlnyPPJ0EqbN+Z8/EM1w= - - - Headers/FBSDKDataPersisting.h - - hash2 - - OebjtkFnL0ywqbWvKN923EqquhEiUaUb2Ex9fOLH61E= - - - Headers/FBSDKFileDataExtracting.h - - hash2 - - s/7qW6G7GCOOyCS4jkWz8szFjT6uujuGXGhTa5JF4G4= - - - Headers/FBSDKFileManaging.h - - hash2 - - 6+3pxgKpUWQwvlj3RwBFPC0rr5+wK651qUwh0n4fPHs= - - - Headers/FBSDKInfoDictionaryProviding.h - - hash2 - - udZpX0hlPOkgV99Ck52TrAmlNiyK4r2qtK+kyPsJl8M= - - - Headers/FBSDKLibAnalyzer.h - - hash2 - - vcTMWhsIb/z29oxTpsnEfTWCnlgLS7qlPQuTTREW6Ek= - - - Headers/FBSDKLinking.h - - hash2 - - 5NmQW3WO6TuTqGtMxocXiOeGiV7p3hyX2Saia2UhhL4= - - - Headers/FBSDKNetworkTask.h - - hash2 - - WXUdURA38eU1UT+VzBqNd3NJZ/tMnqMgcYFfskguL9w= - - - Headers/FBSDKNotificationDelivering.h - - hash2 - - jCbQRKCjKWBaILGHzII7b5E1nAY37YAd0KWD5lhnyBM= - - - Headers/FBSDKTypeUtility.h - - hash2 - - Xm2cMC3iy1kvQn8EXXkZ0eKLNRVCmSlSbefuvvTCTTs= - - - Headers/FBSDKURLSession.h - - hash2 - - 5L3MvrHaYDNtK2zrxdEtZNCRnhTQHNM0bvoh0pAfKg0= - - - Headers/FBSDKURLSessionProviding.h - - hash2 - - O0czQhC3wEX5AKGOHblqZYeevvp4+w3IVFYRSr4Uv9o= - - - Headers/FBSDKURLSessionTask.h - - hash2 - - 3Efn6F2Y10Aul+I89unuMGdO1GJTM5xkZOglY+a5XtE= - - - Headers/NSNotificationCenter+NotificationDelivering.h - - hash2 - - ODQiUcnulvLSI4AHqIqtQvUPeAp+/9qi2eIHXnVKxh8= - - - Modules/module.modulemap - - hash2 - - Ax5EJgz2ae9iwvEaJiJhRzHL4ePWe4qZhIaEdKJk27I= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 8c234590..00000000 --- a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKCoreKitBasics - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics b/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics deleted file mode 100644 index 4772562c..00000000 Binary files a/ios/platform/FBSDKCoreKit_Basics.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKCoreKit_Basics.framework.dSYM/Contents/Resources/DWARF/FBSDKCoreKit_Basics and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/Info.plist b/ios/platform/FBSDKLoginKit.xcframework/Info.plist index 3d4ff41a..f1cbeeb5 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/Info.plist +++ b/ios/platform/FBSDKLoginKit.xcframework/Info.plist @@ -5,8 +5,6 @@ AvailableLibraries - DebugSymbolsPath - dSYMs LibraryIdentifier ios-arm64_x86_64-simulator LibraryPath @@ -22,39 +20,6 @@ simulator - DebugSymbolsPath - dSYMs - LibraryIdentifier - tvos-arm64_x86_64-simulator - LibraryPath - FBSDKLoginKit.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - tvos - SupportedPlatformVariant - simulator - - - DebugSymbolsPath - dSYMs - LibraryIdentifier - ios-arm64 - LibraryPath - FBSDKLoginKit.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - ios - - - DebugSymbolsPath - dSYMs LibraryIdentifier ios-arm64_x86_64-maccatalyst LibraryPath @@ -70,10 +35,8 @@ maccatalyst - DebugSymbolsPath - dSYMs LibraryIdentifier - tvos-arm64 + ios-arm64 LibraryPath FBSDKLoginKit.framework SupportedArchitectures @@ -81,7 +44,7 @@ arm64 SupportedPlatform - tvos + ios CFBundlePackageType diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/FBSDKLoginKit b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/FBSDKLoginKit old mode 100755 new mode 100644 index 1f4ba831..dd419feb Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/FBSDKLoginKit and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/FBSDKLoginKit differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h index 879a91ec..aa68c0e9 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h @@ -1,4 +1,6 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +#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 FBSDKLOGINKIT_SWIFT_H #define FBSDKLOGINKIT_SWIFT_H #pragma clang diagnostic push @@ -21,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -181,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -191,11 +204,33 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif -@import CoreGraphics; +@import CoreFoundation; @import FBSDKCoreKit; @import Foundation; @import ObjectiveC; @@ -204,6 +239,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -211,6 +247,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -219,6 +256,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; @@ -841,8 +879,15 @@ SWIFT_CLASS_NAMED("_LoginCompletionParameters") - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif #pragma clang diagnostic pop #endif + +#else +#error unsupported Swift architecture +#endif diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Info.plist b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Info.plist index 8f2cdfe6..4051598b 100644 Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Info.plist and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Info.plist differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.abi.json b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 00000000..083190a3 --- /dev/null +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,28830 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenCreating", + "printedName": "AuthenticationTokenCreating", + "children": [ + { + "kind": "Function", + "name": "createToken", + "printedName": "createToken(tokenString:nonce:graphDomain:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationToken?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.AuthenticationTokenCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenFactory", + "printedName": "AuthenticationTokenFactory", + "children": [ + { + "kind": "Var", + "name": "beginCertificate", + "printedName": "beginCertificate", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endCertificate", + "printedName": "endCertificate", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionProvider", + "printedName": "sessionProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvs", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvM", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "certificateEndpoint", + "printedName": "certificateEndpoint", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sessionProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenFactory", + "printedName": "FBSDKLoginKit.AuthenticationTokenFactory", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderACSo24FBSDKURLSessionProviding_p_tcfc", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderACSo24FBSDKURLSessionProviding_p_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "createToken", + "printedName": "createToken(tokenString:nonce:graphDomain:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationToken?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "verifySignature", + "printedName": "verifySignature(_:header:claims:certificateKey:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "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": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15verifySignature_6header6claims14certificateKey10completionySS_S3SySbctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15verifySignature_6header6claims14certificateKey10completionySS_S3SySbctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyWith", + "printedName": "getPublicKeyWith(certificateKey:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Security.SecKey?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Security.SecKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecKey", + "printedName": "Security.SecKey", + "usr": "c:@T@SecKeyRef" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC16getPublicKeyWith011certificateH010completionySS_ySo03SecH3RefaSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16getPublicKeyWith011certificateH010completionySS_ySo03SecH3RefaSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCertificateWith", + "printedName": "getCertificateWith(certificateKey:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Security.SecCertificate?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Security.SecCertificate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecCertificate", + "printedName": "Security.SecCertificate", + "usr": "c:@T@SecCertificateRef" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC18getCertificateWith14certificateKey10completionySS_ySo03SecG3RefaSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC18getCertificateWith14certificateKey10completionySS_ySo03SecG3RefaSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenFactory", + "printedName": "FBSDKLoginKit.AuthenticationTokenFactory", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryCACycfc", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryCACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AuthenticationTokenCreating", + "printedName": "AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenHeader", + "printedName": "AuthenticationTokenHeader", + "children": [ + { + "kind": "Var", + "name": "kid", + "printedName": "kid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvp", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvg", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromEncodedString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.AuthenticationTokenHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenHeader", + "printedName": "FBSDKLoginKit.AuthenticationTokenHeader", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC17fromEncodedStringACSgSS_tcfc", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC17fromEncodedStringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "CodeVerifier", + "printedName": "CodeVerifier", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(py)value", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC5valueSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)value", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC5valueSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "challenge", + "printedName": "challenge", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(py)challenge", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC9challengeSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)challenge", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC9challengeSSvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.CodeVerifier?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)initWithString:", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC6stringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithString:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)init", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKCodeVerifier", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultAudience", + "printedName": "DefaultAudience", + "children": [ + { + "kind": "Var", + "name": "friends", + "printedName": "friends", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceFriends", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO7friendsyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "onlyMe", + "printedName": "onlyMe", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceOnlyMe", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO6onlyMeyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "everyone", + "printedName": "everyone", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceEveryone", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8everyoneyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DefaultAudience?", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit15DefaultAudienceO8rawValueACSgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueACSgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit15DefaultAudienceO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DefaultAudienceO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDefaultAudience", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "AssociatedType", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP0E12DependenciesQa", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP0E12DependenciesQa", + "moduleName": "FBSDKLoginKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKLoginKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginCodeInfo", + "printedName": "DeviceLoginCodeInfo", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)identifier", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifierSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)identifier", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifierSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loginCode", + "printedName": "loginCode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)loginCode", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC05loginE0SSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)loginCode", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC05loginE0SSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "verificationURL", + "printedName": "verificationURL", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)verificationURL", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15verificationURL10Foundation0H0Vvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)verificationURL", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15verificationURL10Foundation0H0Vvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "expirationDate", + "printedName": "expirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)expirationDate", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC14expirationDate10Foundation0H0Vvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)expirationDate", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC14expirationDate10Foundation0H0Vvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pollingInterval", + "printedName": "pollingInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)pollingInterval", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15pollingIntervalSuvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)pollingInterval", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15pollingIntervalSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(identifier:loginCode:verificationURL:expirationDate:pollingInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)initWithIdentifier:loginCode:verificationURL:expirationDate:pollingInterval:", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifier05loginE015verificationURL14expirationDate15pollingIntervalACSS_SS10Foundation0J0VAI0L0VSutcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)init", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginCodeInfo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginError", + "printedName": "DeviceLoginError", + "children": [ + { + "kind": "Var", + "name": "_nsError", + "printedName": "_nsError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorCode", + "printedName": "errorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "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:13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorUserInfo", + "printedName": "errorUserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_nsError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0ACSo7NSErrorC_tcfc", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0ACSo7NSErrorC_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV_8userInfoAcA0cdE4CodeO_SDySSypGtcfc", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV_8userInfoAcA0cdE4CodeO_SDySSypGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDomain", + "printedName": "errorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "excessivePolling", + "printedName": "excessivePolling", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authorizationDeclined", + "printedName": "authorizationDeclined", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authorizationPending", + "printedName": "authorizationPending", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codeExpired", + "printedName": "codeExpired", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "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:13FBSDKLoginKit16DeviceLoginErrorV4hash4intoys6HasherVz_tF", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginErrorCode", + "printedName": "DeviceLoginErrorCode", + "children": [ + { + "kind": "Var", + "name": "excessivePolling", + "printedName": "excessivePolling", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorExcessivePolling", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO16excessivePollingyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "authorizationDeclined", + "printedName": "authorizationDeclined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorAuthorizationDeclined", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO21authorizationDeclinedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "authorizationPending", + "printedName": "authorizationPending", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorAuthorizationPending", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO20authorizationPendingyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "codeExpired", + "printedName": "codeExpired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorCodeExpired", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO11codeExpiredyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginManager", + "printedName": "DeviceLoginManager", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)delegate", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerDelegate", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)delegate", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerDelegate", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)permissions", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissionsSaySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)permissions", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissionsSaySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redirectURL", + "printedName": "redirectURL", + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)redirectURL", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)redirectURL", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setRedirectURL:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codeInfo", + "printedName": "codeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)codeInfo", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)codeInfo", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setCodeInfo:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:enableSmartLogin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)initWithPermissions:enableSmartLogin:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissions011enableSmartD0ACSaySSG_Sbtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:enableSmartLogin:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)start", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC5startyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)cancel", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC6cancelyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notifyDelegate", + "printedName": "notifyDelegate(token:expirationDate:dataAccessExpirationDate:)", + "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": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)notifyDelegateWithToken:expirationDate:dataAccessExpirationDate:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC14notifyDelegate5token14expirationDate020dataAccessExpirationJ0ySSSg_10Foundation0J0VSgALtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processError", + "printedName": "processError(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)processError:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC12processErroryys0G0_pF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "schedulePoll", + "printedName": "schedulePoll(interval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)schedulePollWithInterval:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC12schedulePoll8intervalySu_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)init", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "netService", + "printedName": "netService(_:didNotPublish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetService", + "printedName": "Foundation.NetService", + "usr": "c:objc(cs)NSNetService" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)netService:didNotPublish:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC10netService_13didNotPublishySo05NSNetG0C_SDySSSo8NSNumberCGtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "netService:didNotPublish:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "devicePoller", + "printedName": "devicePoller", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(devicePoller:errorFactory:graphRequestFactory:internalUtility:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePoller12errorFactory012graphRequestK015internalUtility8settingsAeA0C7Polling_p_So18FBSDKErrorCreating_pSo010FBSDKGraphmK0_pSo013FBSDKInternalO0_p09FBSDKCoreB016SettingsProtocol_ptcfc", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePoller12errorFactory012graphRequestK015internalUtility8settingsAeA0C7Polling_p_So18FBSDKErrorCreating_pSo010FBSDKGraphmK0_pSo013FBSDKInternalO0_p09FBSDKCoreB016SettingsProtocol_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP" + }, + { + "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": "DeviceLoginManagerDelegate", + "printedName": "DeviceLoginManagerDelegate", + "children": [ + { + "kind": "Function", + "name": "deviceLoginManager", + "printedName": "deviceLoginManager(_:startedWith:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate(im)deviceLoginManager:startedWithCodeInfo:", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP06devicedE0_11startedWithyAA0cdE0C_AA0cD8CodeInfoCtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DeviceLoginManagerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "deviceLoginManager:startedWithCodeInfo:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deviceLoginManager", + "printedName": "deviceLoginManager(_:completedWith:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate(im)deviceLoginManager:completedWithResult:error:", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP06devicedE0_13completedWith5erroryAA0cdE0C_AA0cdE6ResultCSgs5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DeviceLoginManagerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "deviceLoginManager:completedWithResult:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKDeviceLoginManagerDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginManagerResult", + "printedName": "DeviceLoginManagerResult", + "children": [ + { + "kind": "Var", + "name": "accessToken", + "printedName": "accessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(py)accessToken", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11accessTokenSo011FBSDKAccessH0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)accessToken", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11accessTokenSo011FBSDKAccessH0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCancelled", + "printedName": "isCancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(py)isCancelled", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11isCancelledSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)isCancelled", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11isCancelledSbvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(token:isCancelled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)initWithToken:isCancelled:", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC5token11isCancelledACSo16FBSDKAccessTokenCSg_Sbtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)init", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginManagerResult", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "DevicePoller", + "printedName": "DevicePoller", + "children": [ + { + "kind": "Function", + "name": "schedule", + "printedName": "schedule(interval:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12DevicePollerV8schedule8interval5blockySu_yyctF", + "mangledName": "$s13FBSDKLoginKit12DevicePollerV8schedule8interval5blockySu_yyctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePoller", + "printedName": "FBSDKLoginKit.DevicePoller", + "usr": "s:13FBSDKLoginKit12DevicePollerV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit12DevicePollerVACycfc", + "mangledName": "$s13FBSDKLoginKit12DevicePollerVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit12DevicePollerV", + "mangledName": "$s13FBSDKLoginKit12DevicePollerV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DevicePolling", + "printedName": "DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DevicePolling", + "printedName": "DevicePolling", + "children": [ + { + "kind": "Function", + "name": "schedule", + "printedName": "schedule(interval:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit13DevicePollingP8schedule8interval5blockySu_yyctF", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP8schedule8interval5blockySu_yyctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DevicePolling>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit13DevicePollingP", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceRequestsHelper", + "printedName": "DeviceRequestsHelper", + "children": [ + { + "kind": "Var", + "name": "mdnsAdvertisementServices", + "printedName": "mdnsAdvertisementServices", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvpZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvgZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getDeviceInfo", + "printedName": "getDeviceInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO03getC4InfoSSyFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO03getC4InfoSSyFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startAdvertisementService", + "printedName": "startAdvertisementService(loginCode:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25startAdvertisementService9loginCode8delegateSbSS_So05NSNetH8Delegate_ptFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25startAdvertisementService9loginCode8delegateSbSS_So05NSNetH8Delegate_ptFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isDelegate", + "printedName": "isDelegate(_:forAdvertisementService:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "NetService", + "printedName": "Foundation.NetService", + "usr": "c:objc(cs)NSNetService" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO10isDelegate_23forAdvertisementServiceSbSo05NSNetjG0_p_So0kJ0CtFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO10isDelegate_23forAdvertisementServiceSbSo05NSNetjG0_p_So0kJ0CtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cleanUpAdvertisementService", + "printedName": "cleanUpAdvertisementService(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO27cleanUpAdvertisementService3forySo05NSNetI8Delegate_p_tFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO27cleanUpAdvertisementService3forySo05NSNetI8Delegate_p_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBLoginButton", + "printedName": "FBLoginButton", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)defaultAudience", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)defaultAudience", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)delegate", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "IBOutlet", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginButtonDelegate", + "printedName": "FBSDKLoginKit.LoginButtonDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)delegate", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginButtonDelegate", + "printedName": "FBSDKLoginKit.LoginButtonDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)permissions", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)permissions", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setPermissions:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tooltipBehavior", + "printedName": "tooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)tooltipBehavior", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)tooltipBehavior", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setTooltipBehavior:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tooltipColorStyle", + "printedName": "tooltipColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)tooltipColorStyle", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)tooltipColorStyle", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setTooltipColorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginTracking", + "printedName": "loginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)loginTracking", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)loginTracking", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setLoginTracking:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)nonce", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)nonce", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setNonce:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "messengerPageId", + "printedName": "messengerPageId", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)messengerPageId", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)messengerPageId", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setMessengerPageId:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authType", + "printedName": "authType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)authType", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)authType", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setAuthType:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codeVerifier", + "printedName": "codeVerifier", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)codeVerifier", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)codeVerifier", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setCodeVerifier:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0CvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0CvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)userID", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)userID", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setUserID:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userName", + "printedName": "userName", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)userName", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)userName", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setUserName:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "elementProvider", + "printedName": "elementProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginProvider", + "printedName": "loginProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)graphRequestFactory", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)graphRequestFactory", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setGraphRequestFactory:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAuthenticated", + "printedName": "isAuthenticated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)isAuthenticated", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15isAuthenticatedSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)isAuthenticated", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15isAuthenticatedSbvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TooltipBehavior", + "printedName": "TooltipBehavior", + "children": [ + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO9automaticyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO9automaticyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "forceDisplay", + "printedName": "forceDisplay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO12forceDisplayyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO12forceDisplayyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "disable", + "printedName": "disable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO7disableyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO7disableyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior?", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginButtonTooltipBehavior", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initWithFrame:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBLoginButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initWithCoder:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:elementProvider:stringProvider:loginProvider:graphRequestFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5frame15elementProvider06stringG005loginG019graphRequestFactoryACSo6CGRectV_AA29UserInterfaceElementProviding_pAA0no6StringQ0_pAA05LoginQ0_pSo010FBSDKGraphkL0_ptcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frame15elementProvider06stringG005loginG019graphRequestFactoryACSo6CGRectV_AA29UserInterfaceElementProviding_pAA0no6StringQ0_pAA05LoginQ0_pSo010FBSDKGraphkL0_ptcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:permissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.Permission]", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5frame11permissionsACSo6CGRectV_Say09FBSDKCoreB010PermissionOGtcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frame11permissionsACSo6CGRectV_Say09FBSDKCoreB010PermissionOGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "didMoveToWindow", + "printedName": "didMoveToWindow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)didMoveToWindow", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15didMoveToWindowyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "didMoveToWindow", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "imageRect", + "printedName": "imageRect(forContentRect:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)imageRectForContentRect:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC9imageRect010forContentF0So6CGRectVAG_tF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "imageRectForContentRect:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "titleRect", + "printedName": "titleRect(forContentRect:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)titleRectForContentRect:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC9titleRect010forContentF0So6CGRectVAG_tF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "titleRectForContentRect:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)layoutSubviews", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14layoutSubviewsyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sizeThatFits", + "printedName": "sizeThatFits(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)sizeThatFits:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12sizeThatFitsySo6CGSizeVAFF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "sizeThatFits:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accessTokenDidChange", + "printedName": "accessTokenDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)accessTokenDidChange:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC20accessTokenDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profileDidChange", + "printedName": "profileDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)profileDidChange:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC16profileDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buttonPressed", + "printedName": "buttonPressed(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)buttonPressed:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13buttonPressedyyypF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeLoginConfiguration", + "printedName": "makeLoginConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)makeLoginConfiguration", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC22makeLoginConfigurationAA0fG0CSgyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initializeContent", + "printedName": "initializeContent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initializeContent", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17initializeContentyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateContentForAccessToken", + "printedName": "updateContentForAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)updateContentForAccessToken", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC27updateContentForAccessTokenyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetContent", + "printedName": "fetchAndSetContent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)fetchAndSetContent", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC18fetchAndSetContentyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateContentForUser", + "printedName": "updateContentForUser(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)updateContentForUser:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC20updateContentForUseryy09FBSDKCoreB07ProfileCSgF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logout", + "printedName": "logout()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)logout", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6logoutyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBLoginTooltipView", + "printedName": "FBLoginTooltipView", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)delegate", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipViewDelegate", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)delegate", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipViewDelegate", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "forceDisplay", + "printedName": "forceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)forceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvp", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)forceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setForceDisplay:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldForceDisplay", + "printedName": "shouldForceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)shouldForceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)shouldForceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setShouldForceDisplay:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvp", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvg", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)init", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tagline:message:colorStyle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "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": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)initWithTagline:message:colorStyle:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC7tagline7message10colorStyleACSSSg_AgA09FBTooltipE0C05ColorI0Otcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithTagline:message:colorStyle:", + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:stringProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProvider06stringH0AcA06ServerG9Providing_p_AA019UserInterfaceStringK0_ptcfc", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProvider06stringH0AcA06ServerG9Providing_p_AA019UserInterfaceStringK0_ptcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(in:arrowPosition:direction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + }, + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)presentInView:withArrowPosition:direction:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC7present2in13arrowPosition9directionySo6UIViewC_So7CGPointVAA09FBTooltipE0C14ArrowDirectionOtF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "presentInView:withArrowPosition:direction:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginTooltipView", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKLoginKit.FBTooltipView", + "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": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBPermission", + "printedName": "FBPermission", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)value", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC5valueSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKPermission(im)value", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC5valueSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)description", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11descriptionSSvp", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)description", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11descriptionSSvg", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)hash", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC4hashSivp", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)hash", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC4hashSivg", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBPermission?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)initWithString:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC6stringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "permissions", + "printedName": "permissions(fromRawPermissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(cm)permissionsFromRawPermissions:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11permissions18fromRawPermissionsShyACGSgShySSG_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "permissionsFromRawPermissions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rawPermissions", + "printedName": "rawPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(cm)rawPermissionsFromPermissions:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC14rawPermissions4fromShySSGShyACG_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "rawPermissionsFromPermissions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)isEqual:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC7isEqualySbypSgF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)init", + "mangledName": "$s13FBSDKLoginKit12FBPermissionCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKPermission", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBTooltipView", + "printedName": "FBTooltipView", + "children": [ + { + "kind": "TypeDecl", + "name": "ArrowDirection", + "printedName": "ArrowDirection", + "children": [ + { + "kind": "Var", + "name": "down", + "printedName": "down", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ArrowDirection.Type) -> FBSDKLoginKit.FBTooltipView.ArrowDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO4downyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO4downyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "up", + "printedName": "up", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ArrowDirection.Type) -> FBSDKLoginKit.FBTooltipView.ArrowDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO2upyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO2upyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKTooltipViewArrowDirection", + "declAttributes": [ + "AccessControl", + "Frozen", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt", + "isEnumExhaustive": true, + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ColorStyle", + "printedName": "ColorStyle", + "children": [ + { + "kind": "Var", + "name": "friendlyBlue", + "printedName": "friendlyBlue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ColorStyle.Type) -> FBSDKLoginKit.FBTooltipView.ColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO12friendlyBlueyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO12friendlyBlueyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "neutralGray", + "printedName": "neutralGray", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ColorStyle.Type) -> FBSDKLoginKit.FBTooltipView.ColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO11neutralGrayyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO11neutralGrayyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle?", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKTooltipColorStyle", + "declAttributes": [ + "AccessControl", + "Frozen", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt", + "isEnumExhaustive": true, + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "displayDuration", + "printedName": "displayDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)displayDuration", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)displayDuration", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setDisplayDuration:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "colorStyle", + "printedName": "colorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)colorStyle", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)colorStyle", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setColorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)message", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)message", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": 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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setMessage:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC7messageSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tagline", + "printedName": "tagline", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)tagline", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)tagline", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": 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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setTagline:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textLabel", + "printedName": "textLabel", + "children": [ + { + "kind": "TypeNominal", + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)textLabel", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC9textLabelSo7UILabelCvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "Final", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)textLabel", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC9textLabelSo7UILabelCvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)init", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tagline:message:colorStyle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + }, + { + "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": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)initWithTagline:message:colorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7tagline7message10colorStyleACSSSg_AgC05ColorH0Otcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithTagline:message:colorStyle:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)presentFromView:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7present4fromySo6UIViewC_tF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "presentFromView:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(in:arrowPosition:direction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + }, + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)presentInView:withArrowPosition:direction:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7present2in13arrowPosition9directionySo6UIViewC_So7CGPointVAC14ArrowDirectionOtF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "presentInView:withArrowPosition:direction:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismiss", + "printedName": "dismiss()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)dismiss", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7dismissyyF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "animateFadeIn", + "printedName": "animateFadeIn()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)animateFadeIn", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC13animateFadeInyyF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "animateFadeIn", + "declAttributes": [ + "Custom", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "draw", + "printedName": "draw(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)drawRect:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC4drawyySo6CGRectVF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "isOpen": true, + "objc_name": "drawRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)layoutSubviews", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14layoutSubviewsyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "isOpen": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)initWithFrame:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "FBSDKTooltipView", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)UIView", + "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": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IdentifiedLoginResultHandler", + "printedName": "IdentifiedLoginResultHandler", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV10identifier33_983F05C521C15D7299B686B606F5D560LL10Foundation4UUIDVvp", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV10identifier33_983F05C521C15D7299B686B606F5D560LL10Foundation4UUIDVvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "closure", + "printedName": "closure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV7closure33_983F05C521C15D7299B686B606F5D560LLyyAA0d7ManagerdE0CSg_s5Error_pSgtcvp", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV7closure33_983F05C521C15D7299B686B606F5D560LLyyAA0d7ManagerdE0CSg_s5Error_pSgtcvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerVyACyAA0d7ManagerdE0CSg_s5Error_pSgtccfc", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerVyACyAA0d7ManagerdE0CSg_s5Error_pSgtccfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "callAsFunction", + "printedName": "callAsFunction(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV14callAsFunctionyyAA0d7ManagerdE0CSg_s5Error_pSgtF", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV14callAsFunctionyyAA0d7ManagerdE0CSg_s5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + }, + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV", + "moduleName": "FBSDKLoginKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginButtonDelegate", + "printedName": "LoginButtonDelegate", + "children": [ + { + "kind": "Function", + "name": "loginButton", + "printedName": "loginButton(_:didCompleteWith:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButton:didCompleteWithResult:error:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05loginD0_15didCompleteWith5erroryAA07FBLoginD0C_AA0c7ManagerC6ResultCSgs5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginButton:didCompleteWithResult:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginButtonDidLogOut", + "printedName": "loginButtonDidLogOut(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButtonDidLogOut:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05loginD9DidLogOutyyAA07FBLoginD0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginButtonWillLogin", + "printedName": "loginButtonWillLogin(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButtonWillLogin:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05logind4WillC0ySbAA07FBLoginD0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", + "sugared_genericSig": "", + "objc_name": "FBSDKLoginButtonDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleterFactory", + "printedName": "LoginCompleterFactory", + "children": [ + { + "kind": "Function", + "name": "createLoginCompleter", + "printedName": "createLoginCompleter(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleting", + "printedName": "FBSDKLoginKit.LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryV06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactory", + "printedName": "FBSDKLoginKit.LoginCompleterFactory", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryVACycfc", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginCompleterFactoryProtocol", + "printedName": "LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleterFactoryProtocol", + "printedName": "LoginCompleterFactoryProtocol", + "children": [ + { + "kind": "Function", + "name": "createLoginCompleter", + "printedName": "createLoginCompleter(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleting", + "printedName": "FBSDKLoginKit.LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleterFactoryProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleting", + "printedName": "LoginCompleting", + "children": [ + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15LoginCompletingP08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15LoginCompletingP08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15LoginCompletingP", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginConfiguration", + "printedName": "LoginConfiguration", + "children": [ + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)nonce", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC5nonceSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)nonce", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC5nonceSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tracking", + "printedName": "tracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)tracking", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingAA0C8TrackingOvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)tracking", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingAA0C8TrackingOvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestedPermissions", + "printedName": "requestedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC20requestedPermissionsShyAA12FBPermissionCGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC20requestedPermissionsShyAA12FBPermissionCGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messengerPageId", + "printedName": "messengerPageId", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)messengerPageId", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC15messengerPageIdSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)messengerPageId", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC15messengerPageIdSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authType", + "printedName": "authType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)authType", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8authTypeSo0a4AuthF0aSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)authType", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8authTypeSo0a4AuthF0aSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codeVerifier", + "printedName": "codeVerifier", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)codeVerifier", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC12codeVerifierAA04CodeF0Cvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)codeVerifier", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC12codeVerifierAA04CodeF0Cvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageIdACSgSaySSG_AA0C8TrackingOS2SSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:authType:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authTypeACSgSaySSG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:authType:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonceACSgSaySSG_AA0C8TrackingOSStcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:messengerPageId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:messengerPageId:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking15messengerPageIdACSgSaySSG_AA0C8TrackingOSSSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:messengerPageId:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:messengerPageId:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "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": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:messengerPageId:authType:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking15messengerPageId8authTypeACSgSaySSG_AA0C8TrackingOSSSgSo0a4AuthK0aSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:messengerPageId:authType:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:codeVerifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgSaySSG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8trackingACSgSaySSG_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithTracking:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingACSgAA0C8TrackingO_tcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithTracking:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:codeVerifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgShy09FBSDKCoreB010PermissionOG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgShy09FBSDKCoreB010PermissionOG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)init", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginConfiguration", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginError", + "printedName": "LoginError", + "children": [ + { + "kind": "Var", + "name": "_nsError", + "printedName": "_nsError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorCode", + "printedName": "errorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV9errorCodeSivp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9errorCodeSivp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "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:13FBSDKLoginKit10LoginErrorV9errorCodeSivg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9errorCodeSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorUserInfo", + "printedName": "errorUserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_nsError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0ACSo7NSErrorC_tcfc", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0ACSo7NSErrorC_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit10LoginErrorV_8userInfoAcA0cD4CodeO_SDySSypGtcfc", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV_8userInfoAcA0cD4CodeO_SDySSypGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDomain", + "printedName": "errorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV11errorDomainSSvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV11errorDomainSSvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV11errorDomainSSvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV11errorDomainSSvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "passwordChanged", + "printedName": "passwordChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userCheckpointed", + "printedName": "userCheckpointed", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userMismatch", + "printedName": "userMismatch", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unconfirmedUser", + "printedName": "unconfirmedUser", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "systemAccountAppDisabled", + "printedName": "systemAccountAppDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "systemAccountUnavailable", + "printedName": "systemAccountUnavailable", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "badChallengeString", + "printedName": "badChallengeString", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidIDToken", + "printedName": "invalidIDToken", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "missingAccessToken", + "printedName": "missingAccessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit10LoginErrorV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "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:13FBSDKLoginKit10LoginErrorV4hash4intoys6HasherVz_tF", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV9hashValueSivp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9hashValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV9hashValueSivg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9hashValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit10LoginErrorV", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginErrorCode", + "printedName": "LoginErrorCode", + "children": [ + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorReserved", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8reservedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUnknown", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO7unknownyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "passwordChanged", + "printedName": "passwordChanged", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorPasswordChanged", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO15passwordChangedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "userCheckpointed", + "printedName": "userCheckpointed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUserCheckpointed", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO16userCheckpointedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "userMismatch", + "printedName": "userMismatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUserMismatch", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO12userMismatchyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "unconfirmedUser", + "printedName": "unconfirmedUser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUnconfirmedUser", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO15unconfirmedUseryA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "systemAccountAppDisabled", + "printedName": "systemAccountAppDisabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorSystemAccountAppDisabled", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO24systemAccountAppDisabledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "systemAccountUnavailable", + "printedName": "systemAccountUnavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorSystemAccountUnavailable", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO24systemAccountUnavailableyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "badChallengeString", + "printedName": "badChallengeString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorBadChallengeString", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO18badChallengeStringyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "invalidIDToken", + "printedName": "invalidIDToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorInvalidIDToken", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO14invalidIDTokenyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "missingAccessToken", + "printedName": "missingAccessToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorMissingAccessToken", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO18missingAccessTokenyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 10 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit14LoginErrorCodeO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit14LoginErrorCodeO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginErrorCodeO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Var", + "name": "LoginErrorDomain", + "printedName": "LoginErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16LoginErrorDomainSSvp", + "mangledName": "$s13FBSDKLoginKit16LoginErrorDomainSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "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:13FBSDKLoginKit16LoginErrorDomainSSvg", + "mangledName": "$s13FBSDKLoginKit16LoginErrorDomainSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginEventLogging", + "printedName": "LoginEventLogging", + "children": [ + { + "kind": "Var", + "name": "flushBehavior", + "printedName": "flushBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "FlushBehavior", + "printedName": "FBSDKCoreKit.AppEvents.FlushBehavior", + "usr": "c:@E@FBSDKAppEventsFlushBehavior" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvp", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FlushBehavior", + "printedName": "FBSDKCoreKit.AppEvents.FlushBehavior", + "usr": "c:@E@FBSDKAppEventsFlushBehavior" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvg", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logInternalEvent", + "printedName": "logInternalEvent(_:parameters:isImplicitlyLogged:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP011logInternalD0_10parameters18isImplicitlyLoggedySo08FBSDKAppD4Namea_SDySo0ld9ParameterM0aypGSgSbtF", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP011logInternalD0_10parameters18isImplicitlyLoggedySo08FBSDKAppD4Namea_SDySo0ld9ParameterM0aypGSgSbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP5flushyyF", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP5flushyyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginManager", + "printedName": "LoginManager", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)defaultAudience", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)defaultAudience", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "handler", + "printedName": "handler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)configuration", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC13configurationAA0C13ConfigurationCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)configuration", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC13configurationAA0C13ConfigurationCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestedPermissions", + "printedName": "requestedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setRequestedPermissions:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "usedSafariSession", + "printedName": "usedSafariSession", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)usedSafariSession", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)usedSafariSession", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setUsedSafariSession:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isPerformingLogin", + "printedName": "isPerformingLogin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)isPerformingLogin", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC012isPerformingC0Sbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)isPerformingLogin", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC012isPerformingC0Sbvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Lazy" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(defaultAudience:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)initWithDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAcA07DefaultF0O_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(viewController:configuration: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" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginManagerC5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:from:handler:)", + "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" + }, + { + "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": "((FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logInWithPermissions:fromViewController:handler:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0cdC6ResultCSg_s5Error_pSgtcSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "logInWithPermissions:fromViewController:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:viewController:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.Permission]", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + }, + { + "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": "((FBSDKLoginKit.LoginResult) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginManagerC5logIn11permissions14viewController10completionySay09FBSDKCoreB010PermissionOG_So06UIViewI0CSgyAA0C6ResultOcSgtF", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn11permissions14viewController10completionySay09FBSDKCoreB010PermissionOG_So06UIViewI0CSgyAA0C6ResultOcSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reauthorizeDataAccess", + "printedName": "reauthorizeDataAccess(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)reauthorizeDataAccess:handler:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC21reauthorizeDataAccess4from7handlerySo16UIViewControllerC_yAA0cdC6ResultCSg_s5Error_pSgtctF", + "moduleName": "FBSDKLoginKit", + "objc_name": "reauthorizeDataAccess:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logOut", + "printedName": "logOut()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logOut", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6logOutyyF", + "moduleName": "FBSDKLoginKit", + "objc_name": "logOut", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeAuthentication", + "printedName": "completeAuthentication(parameters:expectChallenge:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)completeAuthenticationWithParameters:expectChallenge:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22completeAuthentication10parameters15expectChallengeyAA01_C20CompletionParametersC_SbtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logInParameters", + "printedName": "logInParameters(configuration:loggingToken:authenticationMethod:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logInParametersWithConfiguration:loggingToken:authenticationMethod:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15logInParameters13configuration12loggingToken20authenticationMethodSDyS2SGSgAA0C13ConfigurationCSg_SSSgSStF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateReauthentication", + "printedName": "validateReauthentication(accessToken:loginResult:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)validateReauthenticationWithAccessToken:loginResult:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC24validateReauthentication11accessToken11loginResultySo011FBSDKAccessH0C_AA0cdcJ0CSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRecentlyGrantedPermissions", + "printedName": "getRecentlyGrantedPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)getRecentlyGrantedPermissionsFrom:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC29getRecentlyGrantedPermissions4fromShyAA12FBPermissionCGAH_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRecentlyDeclinedPermissions", + "printedName": "getRecentlyDeclinedPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)getRecentlyDeclinedPermissionsFrom:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC30getRecentlyDeclinedPermissions4fromShyAA12FBPermissionCGAH_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "storeExpectedNonce", + "printedName": "storeExpectedNonce(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)storeExpectedNonce:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18storeExpectedNonceyySSSgF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)init", + "mangledName": "$s13FBSDKLoginKit12LoginManagerCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "makeOpener", + "printedName": "makeOpener()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(cm)makeOpener", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC10makeOpenerACyFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "makeOpener", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC11application_4open17sourceApplication10annotationSbSo13UIApplicationCSg_10Foundation3URLVSgSSSgypSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "canOpen", + "printedName": "canOpen(_:for:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)canOpenURL:forApplication:sourceApplication:annotation:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7canOpen_3for17sourceApplication10annotationSb10Foundation3URLV_So13UIApplicationCSgSSSgypSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "canOpenURL:forApplication:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)applicationDidBecomeActive:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC26applicationDidBecomeActiveyySo13UIApplicationCF", + "moduleName": "FBSDKLoginKit", + "objc_name": "applicationDidBecomeActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isAuthenticationURL", + "printedName": "isAuthenticationURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)isAuthenticationURL:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19isAuthenticationURLySb10Foundation0G0VF", + "moduleName": "FBSDKLoginKit", + "objc_name": "isAuthenticationURL:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldStopPropagation", + "printedName": "shouldStopPropagation(of:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)shouldStopPropagationOfURL:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC21shouldStopPropagation2ofSb10Foundation3URLV_tF", + "moduleName": "FBSDKLoginKit", + "objc_name": "shouldStopPropagationOfURL:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenWallet", + "printedName": "authenticationTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "keychainStore", + "printedName": "keychainStore", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginCompleterFactory", + "printedName": "loginCompleterFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profileProvider", + "printedName": "profileProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenWallet:authenticationTokenWallet:errorFactory:graphRequestFactory:internalUtility:keychainStore:loginCompleterFactory:profileProvider:settings:urlOpener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWallet014authenticationhI012errorFactory012graphRequestL015internalUtility13keychainStore014loginCompleterL015profileProvider8settings9urlOpenerAESo011FBSDKAccessH9Providing_pXp_So019FBSDKAuthenticationH9Providing_pXpSo18FBSDKErrorCreating_pSo010FBSDKGraphnL0_pSo27FBSDKAppAvailabilityChecker_So26FBSDKAppURLSchemeProvidingSo15FBSDKURLHostingpSo013FBSDKKeychainR0_pAA0ctL8Protocol_p09FBSDKCoreB016ProfileProviding_pXpAY16SettingsProtocol_pSo14FBSDKURLOpener_ptcfc", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWallet014authenticationhI012errorFactory012graphRequestL015internalUtility13keychainStore014loginCompleterL015profileProvider8settings9urlOpenerAESo011FBSDKAccessH9Providing_pXp_So019FBSDKAuthenticationH9Providing_pXpSo18FBSDKErrorCreating_pSo010FBSDKGraphnL0_pSo27FBSDKAppAvailabilityChecker_So26FBSDKAppURLSchemeProvidingSo15FBSDKURLHostingpSo013FBSDKKeychainR0_pAA0ctL8Protocol_p09FBSDKCoreB016ProfileProviding_pXpAY16SettingsProtocol_pSo14FBSDKURLOpener_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginProviding", + "printedName": "LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginManagerLogger", + "printedName": "LoginManagerLogger", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extras", + "printedName": "extras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastResult", + "printedName": "lastResult", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastError", + "printedName": "lastError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authMethod", + "printedName": "authMethod", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loggingToken", + "printedName": "loggingToken", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 5, + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(parameters:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10parameters8trackingACSgSDySSypGSg_AA0C8TrackingOtcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10parameters8trackingACSgSDySSypGSg_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(loggingToken:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "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": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12loggingToken8trackingACSgSSSg_AA0C8TrackingOtcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingToken8trackingACSgSSSg_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startSession", + "printedName": "startSession(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12startSession3foryAA0cD0C_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12startSession3foryAA0cD0C_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endSession", + "printedName": "endSession()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10endSessionyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10endSessionyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(authenticationMethod:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC5start20authenticationMethodySS_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC5start20authenticationMethodySS_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endLogin", + "printedName": "endLogin(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC03endC06result5erroryAA0cdC6ResultCSg_So7NSErrorCSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC03endC06result5erroryAA0cdC6ResultCSg_So7NSErrorCSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postLoginHeartbeat", + "printedName": "postLoginHeartbeat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC04postC9HeartbeatyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC04postC9HeartbeatyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "heartbeatTimerDidFire", + "printedName": "heartbeatTimerDidFire()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC21heartbeatTimerDidFireyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC21heartbeatTimerDidFireyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "willAttemptAppSwitchingBehavior", + "printedName": "willAttemptAppSwitchingBehavior(urlScheme:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC31willAttemptAppSwitchingBehavior9urlSchemeySS_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC31willAttemptAppSwitchingBehavior9urlSchemeySS_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getClientState", + "printedName": "getClientState(authenticationMethod:existingState:logger:)", + "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": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC14getClientState20authenticationMethod08existingH06loggerSSSgAH_SDySSypGSgACSgtFZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC14getClientState20authenticationMethod08existingH06loggerSSSgAH_SDySSypGSgACSgtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parametersForNewEvent", + "printedName": "parametersForNewEvent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC21parametersForNewEventSDySo08FBSDKAppI13ParameterNameaypGyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC21parametersForNewEventSDySo08FBSDKAppI13ParameterNameaypGyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logEvent", + "printedName": "logEvent(_:params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6paramsySo08FBSDKAppG4Namea_SDySo0ig9ParameterJ0aypGSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6paramsySo08FBSDKAppG4Namea_SDySo0ig9ParameterJ0aypGSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logEvent", + "printedName": "logEvent(_:result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6result5errorySo08FBSDKAppG4Namea_SSSo7NSErrorCSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6result5errorySo08FBSDKAppG4Namea_SSSo7NSErrorCSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventLogger:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AeA0C12EventLogging_p_tcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AeA0C12EventLogging_p_tcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginManagerLoginResult", + "printedName": "LoginManagerLoginResult", + "children": [ + { + "kind": "Var", + "name": "token", + "printedName": "token", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)token", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5tokenSo16FBSDKAccessTokenCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)token", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5tokenSo16FBSDKAccessTokenCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)authenticationToken", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19authenticationTokenSo019FBSDKAuthenticationG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)authenticationToken", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19authenticationTokenSo019FBSDKAuthenticationG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCancelled", + "printedName": "isCancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)isCancelled", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC11isCancelledSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)isCancelled", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC11isCancelledSbvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "grantedPermissions", + "printedName": "grantedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)grantedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC18grantedPermissionsShySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)grantedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC18grantedPermissionsShySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19declinedPermissionsShySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19declinedPermissionsShySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggingExtras", + "printedName": "loggingExtras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)loggingExtras", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC13loggingExtrasSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)loggingExtras", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC13loggingExtrasSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(token:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5token19authenticationToken11isCancelled18grantedPermissions08declinedL0ACSo011FBSDKAccessH0CSg_So019FBSDKAuthenticationH0CSgSbShySSGAOtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addLoggingExtra", + "printedName": "addLoggingExtra(_:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)addLoggingExtra:forKey:", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC15addLoggingExtra_6forKeyyyp_SStF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)init", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginManagerLoginResult", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "LoginManagerState", + "printedName": "LoginManagerState", + "children": [ + { + "kind": "Var", + "name": "idle", + "printedName": "idle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO4idleyA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO4idleyA2CmF", + "moduleName": "FBSDKLoginKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO5startyA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO5startyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "performingLogin", + "printedName": "performingLogin", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO010performingC0yA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO010performingC0yA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerState?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit17LoginManagerStateO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "Int", + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginProviding", + "printedName": "LoginProviding", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovp", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovg", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovs", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(viewController:configuration: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": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:from:handler:)", + "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" + }, + { + "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": "((FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0c7ManagerC6ResultCSg_s5Error_pSgtcSgtF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0c7ManagerC6ResultCSg_s5Error_pSgtcSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logOut", + "printedName": "logOut()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP6logOutyyF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP6logOutyyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit14LoginProvidingP", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginRecoveryAttempter", + "printedName": "LoginRecoveryAttempter", + "children": [ + { + "kind": "Function", + "name": "attemptRecovery", + "printedName": "attemptRecovery(from:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "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": "s:13FBSDKLoginKit22LoginRecoveryAttempterC07attemptD04from10completionys5Error_p_ySbctF", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC07attemptD04from10completionys5Error_p_ySbctF", + "moduleName": "FBSDKLoginKit", + "objc_name": "attemptRecoveryFromError:completionHandler:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginRecoveryAttempter", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterCACycfc", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterCACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "loginProvider", + "printedName": "loginProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvp", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvg", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvs", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvM", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(loginProvider:accessTokenProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProvider011accessTokenI0AeA0C9Providing_p_So011FBSDKAccesskL0_pXptcfc", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProvider011accessTokenI0AeA0C9Providing_p_So011FBSDKAccesskL0_pXptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginResult", + "printedName": "LoginResult", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> (Swift.Set, Swift.Set, FBSDKCoreKit.AccessToken?) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Set, Swift.Set, FBSDKCoreKit.AccessToken?) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(granted: Swift.Set, declined: Swift.Set, token: FBSDKCoreKit.AccessToken?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO7successyACShy09FBSDKCoreB010PermissionOG_AHSo16FBSDKAccessTokenCSgtcACmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO7successyACShy09FBSDKCoreB010PermissionOG_AHSo16FBSDKAccessTokenCSgtcACmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO9cancelledyA2CmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO9cancelledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> (Swift.Error) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO6failedyACs5Error_pcACmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO6failedyACs5Error_pcACmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit11LoginResultO6result5errorAcA0c7ManagercD0CSg_s5Error_pSgtcfc", + "mangledName": "$s13FBSDKLoginKit11LoginResultO6result5errorAcA0c7ManagercD0CSg_s5Error_pSgtcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "loginManagerResult", + "printedName": "loginManagerResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvp", + "mangledName": "$s13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvg", + "mangledName": "$s13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvg", + "moduleName": "FBSDKLoginKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit11LoginResultO5errors5Error_pSgvp", + "mangledName": "$s13FBSDKLoginKit11LoginResultO5errors5Error_pSgvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit11LoginResultO5errors5Error_pSgvg", + "mangledName": "$s13FBSDKLoginKit11LoginResultO5errors5Error_pSgvg", + "moduleName": "FBSDKLoginKit", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit11LoginResultO", + "mangledName": "$s13FBSDKLoginKit11LoginResultO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "Frozen", + "RawDocComment" + ], + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "LoginTooltipViewDelegate", + "printedName": "LoginTooltipViewDelegate", + "children": [ + { + "kind": "Function", + "name": "loginTooltipView", + "printedName": "loginTooltipView(_:shouldAppear:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipView:shouldAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE0_12shouldAppearSbAA07FBLogindE0C_SbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipView:shouldAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginTooltipViewWillAppear", + "printedName": "loginTooltipViewWillAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipViewWillAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE10WillAppearyyAA07FBLogindE0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipViewWillAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginTooltipViewWillNotAppear", + "printedName": "loginTooltipViewWillNotAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipViewWillNotAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE13WillNotAppearyyAA07FBLogindE0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipViewWillNotAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKLoginTooltipViewDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginTracking", + "printedName": "LoginTracking", + "children": [ + { + "kind": "Var", + "name": "enabled", + "printedName": "enabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginTracking.Type) -> FBSDKLoginKit.LoginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginTracking.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking@FBSDKLoginTrackingEnabled", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO7enabledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "limited", + "printedName": "limited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginTracking.Type) -> FBSDKLoginKit.LoginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginTracking.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking@FBSDKLoginTrackingLimited", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO7limitedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTracking?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13LoginTrackingO8rawValueACSgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueACSgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13LoginTrackingO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13LoginTrackingO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginTracking", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginURLCompleter", + "printedName": "LoginURLCompleter", + "children": [ + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginURLCompleter", + "printedName": "FBSDKLoginKit.LoginURLCompleter", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV13urlParameters5appIDACSDySSypG_SStcfc", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV13urlParameters5appIDACSDySSypG_SStcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetPropertiesFor", + "printedName": "fetchAndSetPropertiesFor(parameters:nonce:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV24fetchAndSetPropertiesFor10parameters5nonce7handleryAA01_C20CompletionParametersC_SSyAIctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV24fetchAndSetPropertiesFor10parameters5nonce7handleryAA01_C20CompletionParametersC_SSyAIctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setParameters", + "printedName": "setParameters(values:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV13setParameters6values5appIDySDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV13setParameters6values5appIDySDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exchangeNonceForTokenWith", + "printedName": "exchangeNonceForTokenWith(handler:authenticationNonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV25exchangeNonceForTokenWith7handler014authenticationF0yyAA01_C20CompletionParametersCc_SStF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV25exchangeNonceForTokenWith7handler014authenticationF0yyAA01_C20CompletionParametersCc_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exchangeCodeForTokensWith", + "printedName": "exchangeCodeForTokensWith(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV25exchangeCodeForTokensWith5nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV25exchangeCodeForTokensWith5nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profile", + "printedName": "profile(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV7profile4with09FBSDKCoreB07ProfileCSgAF25AuthenticationTokenClaimsC_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV7profile4with09FBSDKCoreB07ProfileCSgAF25AuthenticationTokenClaimsC_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "expirationDateFrom", + "printedName": "expirationDateFrom(parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV18expirationDateFrom10parameters10Foundation0F0VSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV18expirationDateFrom10parameters10Foundation0F0VSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dataAccessExpirationDateFrom", + "printedName": "dataAccessExpirationDateFrom(parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV28dataAccessExpirationDateFrom10parameters10Foundation0H0VSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV28dataAccessExpirationDateFrom10parameters10Foundation0H0VSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "challenge", + "printedName": "challenge(from:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV9challenge4fromSSSgSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV9challenge4fromSSSgSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV5error4froms5Error_pSgSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV5error4froms5Error_pSgSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "profileFactory", + "printedName": "profileFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenCreator", + "printedName": "authenticationTokenCreator", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profileFactory:authenticationTokenCreator:graphRequestFactory:internalUtility:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactory26authenticationTokenCreator012graphRequestH015internalUtility05errorH0AeA15ProfileCreating_p_AA014AuthenticationjR0_pSo010FBSDKGraphmH0_pSo15FBSDKURLHosting_pSo010FBSDKErrorR0_ptcfc", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactory26authenticationTokenCreator012graphRequestH015internalUtility05errorH0AeA15ProfileCreating_p_AA014AuthenticationjR0_pSo010FBSDKGraphmH0_pSo15FBSDKURLHosting_pSo010FBSDKErrorR0_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginCompleting", + "printedName": "LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginUtility", + "printedName": "LoginUtility", + "children": [ + { + "kind": "Function", + "name": "stringForAudience", + "printedName": "stringForAudience(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO17stringForAudienceySSAA07DefaultG0OFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO17stringForAudienceySSAA07DefaultG0OFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getQueryParameters", + "printedName": "getQueryParameters(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO18getQueryParameters4fromSDySSypGSg10Foundation3URLV_tFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO18getQueryParameters4fromSDySSypGSg10Foundation3URLV_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUserID", + "printedName": "getUserID(from:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO9getUserID4fromSSSgAF_tFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO9getUserID4fromSSSgAF_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit12LoginUtilityO", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO", + "moduleName": "FBSDKLoginKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV13dependentType33_8991E3BB914DA09983850496725CF25BLLxmvp", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV13dependentType33_8991E3BB914DA09983850496725CF25BLLxmvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKLoginKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MonotonicTimer", + "printedName": "MonotonicTimer", + "children": [ + { + "kind": "Function", + "name": "getCurrentSeconds", + "printedName": "getCurrentSeconds()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV17getCurrentSecondsSdyF", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerV17getCurrentSecondsSdyF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MonotonicTimer", + "printedName": "FBSDKLoginKit.MonotonicTimer", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit14MonotonicTimerVACycfc", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerV", + "moduleName": "FBSDKLoginKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NonceValidator", + "printedName": "NonceValidator", + "children": [ + { + "kind": "Function", + "name": "isValid", + "printedName": "isValid(nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14NonceValidatorO7isValid5nonceSbSS_tFZ", + "mangledName": "$s13FBSDKLoginKit14NonceValidatorO7isValid5nonceSbSS_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit14NonceValidatorO", + "mangledName": "$s13FBSDKLoginKit14NonceValidatorO", + "moduleName": "FBSDKLoginKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileCreating", + "printedName": "ProfileCreating", + "children": [ + { + "kind": "Function", + "name": "createProfile", + "printedName": "createProfile(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.ProfileCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileFactory", + "printedName": "ProfileFactory", + "children": [ + { + "kind": "Function", + "name": "createProfile", + "printedName": "createProfile(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14ProfileFactoryC06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryC06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileFactory", + "printedName": "FBSDKLoginKit.ProfileFactory", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory(im)init", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ProfileCreating", + "printedName": "ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConfigurationProviding", + "printedName": "ServerConfigurationProviding", + "children": [ + { + "kind": "Function", + "name": "loadServerConfiguration", + "printedName": "loadServerConfiguration(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKLoginTooltip", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip", + "usr": "c:objc(cs)FBSDKLoginTooltip" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP04loadcD010completionyySo0A7TooltipCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP04loadcD010completionyySo0A7TooltipCSg_s5Error_pSgtcSg_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.ServerConfigurationProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceElementProviding", + "printedName": "UserInterfaceElementProviding", + "children": [ + { + "kind": "Function", + "name": "topMostViewController", + "printedName": "topMostViewController()", + "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": "Func", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP21topMostViewControllerSo06UIViewJ0CSgyF", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP21topMostViewControllerSo06UIViewJ0CSgyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceElementProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewController", + "printedName": "viewController(for:)", + "children": [ + { + "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": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP14viewController3forSo06UIViewH0CSgSo0J0C_tF", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP14viewController3forSo06UIViewH0CSgSo0J0C_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceElementProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "children": [ + { + "kind": "Var", + "name": "bundleForStrings", + "printedName": "bundleForStrings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceStringProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "_LoginCompletionParameters", + "printedName": "_LoginCompletionParameters", + "children": [ + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)authenticationToken", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)authenticationToken", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAuthenticationToken:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profile", + "printedName": "profile", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)profile", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)profile", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setProfile:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenString", + "printedName": "accessTokenString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)accessTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)accessTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAccessTokenString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nonceString", + "printedName": "nonceString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)nonceString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)nonceString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setNonceString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenString", + "printedName": "authenticationTokenString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)authenticationTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)authenticationTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAuthenticationTokenString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)code", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)code", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setCode:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)permissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)permissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setDeclinedPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "expiredPermissions", + "printedName": "expiredPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)expiredPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)expiredPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setExpiredPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)appID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)appID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAppID:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)userID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)userID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setUserID:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)error", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)error", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setError:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "expirationDate", + "printedName": "expirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)expirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)expirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setExpirationDate:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataAccessExpirationDate", + "printedName": "dataAccessExpirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)dataAccessExpirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)dataAccessExpirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setDataAccessExpirationDate:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "challenge", + "printedName": "challenge", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)challenge", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)challenge", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setChallenge:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphDomain", + "printedName": "graphDomain", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)graphDomain", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)graphDomain", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setGraphDomain:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)init", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginCompletionParameters", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEvents", + "printedName": "AppEvents", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAppEvents", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAppEvents", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "LoginEventLogging", + "printedName": "LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InternalUtility", + "printedName": "InternalUtility", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKInternalUtility", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKInternalUtility", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceElementProviding", + "printedName": "UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "loginButtonDidTap", + "printedName": "loginButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "smartLoginService", + "printedName": "smartLoginService", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthStart", + "printedName": "sessionAuthStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthEnd", + "printedName": "sessionAuthEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthMethodStart", + "printedName": "sessionAuthMethodStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthMethodEnd", + "printedName": "sessionAuthMethodEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthHeartbeat", + "printedName": "sessionAuthHeartbeat", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName", + "moduleName": "FBSDKCoreKit", + "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": "ServerConfigurationProvider", + "printedName": "ServerConfigurationProvider", + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ServerConfigurationProviding", + "printedName": "ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP" + }, + { + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/AuthenticationTokenFactory.swift", + "kind": "StringLiteral", + "offset": 731, + "length": 29, + "value": "\"-----BEGIN CERTIFICATE-----\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/AuthenticationTokenFactory.swift", + "kind": "StringLiteral", + "offset": 784, + "length": 27, + "value": "\"-----END CERTIFICATE-----\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1180, + "length": 2, + "value": "72" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1231, + "length": 2, + "value": "43" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1238, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 964, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 8, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 964, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 8, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginCodeInfo.swift", + "kind": "IntegerLiteral", + "offset": 850, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginCodeInfo.swift", + "kind": "StringLiteral", + "offset": 410, + "length": 19, + "value": "\"FBSDKLoginKit.DeviceLoginCodeInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "Dictionary", + "offset": 692, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 1994, + "length": 7, + "value": "1349172" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 7, + "value": "1349173" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 7, + "value": "1349174" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2268, + "length": 7, + "value": "1349152" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 1994, + "length": 7, + "value": "1349172" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 7, + "value": "1349173" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 7, + "value": "1349174" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2268, + "length": 7, + "value": "1349152" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManager.swift", + "kind": "BooleanLiteral", + "offset": 1341, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManager.swift", + "kind": "StringLiteral", + "offset": 803, + "length": 18, + "value": "\"FBSDKLoginKit.DeviceLoginManager\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManagerResult.swift", + "kind": "StringLiteral", + "offset": 411, + "length": 24, + "value": "\"FBSDKLoginKit.DeviceLoginManagerResult\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 908, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 946, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1018, + "length": 7, + "value": "\"fbsdk\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1051, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1171, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1182, + "length": 3, + "value": "\"|\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "IntegerLiteral", + "offset": 1227, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1370, + "length": 5, + "value": "\"dev\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1450, + "length": 11, + "value": "\"_fb._tcp.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "Array", + "offset": 1814, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "BooleanLiteral", + "offset": 3428, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4249, + "length": 12, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4418, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4249, + "length": 12, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4418, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4487, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4524, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4558, + "length": 4, + "value": "28.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4592, + "length": 3, + "value": "8.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4637, + "length": 3, + "value": "8.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 1202, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/FBPermission.swift", + "kind": "StringLiteral", + "offset": 456, + "length": 12, + "value": "\"FBSDKLoginKit.FBPermission\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 752, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 752, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1041, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1041, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1137, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1181, + "length": 5, + "value": "0.001" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1226, + "length": 3, + "value": "1.1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1273, + "length": 4, + "value": "0.98" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1319, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1364, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1425, + "length": 2, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1471, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1519, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1602, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1650, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1731, + "length": 4, + "value": "0x6e" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1738, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1752, + "length": 4, + "value": "0x9c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1759, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1772, + "length": 4, + "value": "0xf5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1779, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1793, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 4, + "value": "0x49" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1833, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1847, + "length": 4, + "value": "0x74" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1854, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1867, + "length": 4, + "value": "0xc6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1874, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1888, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1970, + "length": 4, + "value": "0x51" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1977, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1991, + "length": 4, + "value": "0x50" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1998, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2011, + "length": 4, + "value": "0x4f" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2018, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2032, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2065, + "length": 4, + "value": "0x2d" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2072, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2086, + "length": 4, + "value": "0x2c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2093, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2106, + "length": 4, + "value": "0x2c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2113, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2127, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2425, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 3318, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 3560, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 3936, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 3970, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4074, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4113, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4158, + "length": 3, + "value": "185" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4206, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 4253, + "length": 4, + "value": "2.5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "Array", + "offset": 4300, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "StringLiteral", + "offset": 489, + "length": 13, + "value": "\"FBSDKLoginKit.FBTooltipView\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 307, + "length": 25, + "value": "\"fb_login_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 413, + "length": 24, + "value": "\"fb_smart_login_service\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 605, + "length": 23, + "value": "\"fb_mobile_login_start\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 762, + "length": 26, + "value": "\"fb_mobile_login_complete\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 924, + "length": 30, + "value": "\"fb_mobile_login_method_start\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 1090, + "length": 33, + "value": "\"fb_mobile_login_method_complete\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 1259, + "length": 27, + "value": "\"fb_mobile_login_heartbeat\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginConfiguration.swift", + "kind": "Array", + "offset": 9284, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginConfiguration.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 18, + "value": "\"FBSDKLoginKit.LoginConfiguration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "Dictionary", + "offset": 679, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2931, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2983, + "length": 7, + "value": "301" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3059, + "length": 15, + "value": "302" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3165, + "length": 16, + "value": "303" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3272, + "length": 12, + "value": "304" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3367, + "length": 15, + "value": "305" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3579, + "length": 24, + "value": "306" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 24, + "value": "307" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 18, + "value": "308" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3857, + "length": 14, + "value": "309" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3939, + "length": 18, + "value": "310" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2931, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2983, + "length": 7, + "value": "301" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3059, + "length": 15, + "value": "302" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3165, + "length": 16, + "value": "303" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3272, + "length": 12, + "value": "304" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3367, + "length": 15, + "value": "305" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3579, + "length": 24, + "value": "306" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 24, + "value": "307" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 18, + "value": "308" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3857, + "length": 14, + "value": "309" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3939, + "length": 18, + "value": "310" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "BooleanLiteral", + "offset": 1430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1561, + "length": 26, + "value": "\"expected_login_challenge\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1619, + "length": 22, + "value": "\"expected_login_nonce\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1680, + "length": 30, + "value": "\"expected_login_code_verifier\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "IntegerLiteral", + "offset": 1771, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1808, + "length": 15, + "value": "\"\/dialog\/oauth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1900, + "length": 41, + "value": "\"com.apple.SafariServices.Authentication\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1982, + "length": 59, + "value": "\"com.apple.AuthenticationServices.WebAuthenticationSession\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2245, + "length": 14, + "value": "\"browser_auth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2298, + "length": 11, + "value": "\"sfvc_auth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2562, + "length": 82, + "value": "\"Unable to find main bundle identifier. Cannot create keychain service identifier\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2734, + "length": 51, + "value": "\"com.facebook.sdk.loginmanager.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2784, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 481, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 520, + "length": 31, + "value": "\"com.facebook.sdk_client_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 646, + "length": 18, + "value": "\"0_auth_logger_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 717, + "length": 16, + "value": "\"1_timestamp_ms\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 10, + "value": "\"2_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 10, + "value": "\"3_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 910, + "length": 14, + "value": "\"4_error_code\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 980, + "length": 17, + "value": "\"5_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1047, + "length": 10, + "value": "\"6_extras\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1113, + "length": 17, + "value": "\"7_logging_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1193, + "length": 22, + "value": "\"declined_permissions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1288, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1339, + "length": 21, + "value": "\"inner_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1404, + "length": 52, + "value": "\"com.facebook.sdk:FBSDKErrorLocalizedDescriptionKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 58, + "value": "\"com.facebook.sdk:FBSDKGraphRequestErrorGraphErrorCodeKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1614, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1655, + "length": 24, + "value": "\"com.facebook.sdk.login\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1614, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1655, + "length": 24, + "value": "\"com.facebook.sdk.login\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1758, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1758, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManagerLoginResult.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 23, + "value": "\"FBSDKLoginKit.LoginManagerLoginResult\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginTracking.swift", + "kind": "IntegerLiteral", + "offset": 506, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginTracking.swift", + "kind": "IntegerLiteral", + "offset": 506, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/MonotonicTimer.swift", + "kind": "IntegerLiteral", + "offset": 387, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/MonotonicTimer.swift", + "kind": "StringLiteral", + "offset": 413, + "length": 57, + "value": "\"Unable to get timebase information for monotomic timing\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.private.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.private.swiftinterface new file mode 100644 index 00000000..b79e99e4 --- /dev/null +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -0,0 +1,390 @@ +// 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-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import FBSDKCoreKit +import FBSDKCoreKit_Basics +@_exported import FBSDKLoginKit +import Foundation +import Security +import Swift +import UIKit +import _Concurrency +import _StringProcessing +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKCodeVerifier) final public class CodeVerifier : ObjectiveC.NSObject { + @objc final public let value: Swift.String + @objc final public var challenge: Swift.String { + @objc get + } + @objc(initWithString:) convenience public init?(string: Swift.String) + @objc override convenience dynamic public init() + @objc deinit +} +@objc(FBSDKDefaultAudience) public enum DefaultAudience : Swift.UInt { + case friends + case onlyMe + case everyone + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } +} +@objcMembers @objc(FBSDKDeviceLoginCodeInfo) final public class DeviceLoginCodeInfo : ObjectiveC.NSObject { + @objc final public let identifier: Swift.String + @objc final public let loginCode: Swift.String + @objc final public let verificationURL: Foundation.URL + @objc final public let expirationDate: Foundation.Date + @objc final public let pollingInterval: Swift.UInt + @objc public init(identifier: Swift.String, loginCode: Swift.String, verificationURL: Foundation.URL, expirationDate: Foundation.Date, pollingInterval: Swift.UInt) + @objc deinit +} +public struct DeviceLoginError : Foundation.CustomNSError, Swift.Hashable { + public let errorCode: Swift.Int + public let errorUserInfo: [Swift.String : Any] + public init(_nsError nsError: Foundation.NSError) + public init(_ code: FBSDKLoginKit.DeviceLoginError.Code, userInfo: [Swift.String : Any] = [:]) + public static var errorDomain: Swift.String { + get + } + public typealias Code = FBSDKLoginKit.DeviceLoginErrorCode + public static var excessivePolling: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var authorizationDeclined: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var authorizationPending: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var codeExpired: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static func == (lhs: FBSDKLoginKit.DeviceLoginError, rhs: FBSDKLoginKit.DeviceLoginError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc(FBSDKDeviceLoginError) public enum DeviceLoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { + public typealias _ErrorType = FBSDKLoginKit.DeviceLoginError + case excessivePolling = 1349172 + case authorizationDeclined = 1349173 + case authorizationPending = 1349174 + case codeExpired = 1349152 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@objcMembers @objc(FBSDKDeviceLoginManager) final public class DeviceLoginManager : ObjectiveC.NSObject { + @objc weak final public var delegate: FBSDKLoginKit.DeviceLoginManagerDelegate? + @objc final public let permissions: [Swift.String] + @objc final public var redirectURL: Foundation.URL? + @objc(initWithPermissions:enableSmartLogin:) public init(permissions: [Swift.String], enableSmartLogin: Swift.Bool) + @objc final public func start() + @objc final public func cancel() + @objc deinit +} +extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { + @objc final public func netService(_ service: Foundation.NetService, didNotPublish errorValues: [Swift.String : Foundation.NSNumber]) +} +@objc(FBSDKDeviceLoginManagerDelegate) public protocol DeviceLoginManagerDelegate { + @objc(deviceLoginManager:startedWithCodeInfo:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, startedWith codeInfo: FBSDKLoginKit.DeviceLoginCodeInfo) + @objc(deviceLoginManager:completedWithResult:error:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, completedWith result: FBSDKLoginKit.DeviceLoginManagerResult?, error: Swift.Error?) +} +@objcMembers @objc(FBSDKDeviceLoginManagerResult) final public class DeviceLoginManagerResult : ObjectiveC.NSObject { + @objc final public var accessToken: FBSDKCoreKit.AccessToken? { + get + } + @objc final public var isCancelled: Swift.Bool { + get + } + @objc public init(token: FBSDKCoreKit.AccessToken?, isCancelled cancelled: Swift.Bool) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKLoginButton) @_Concurrency.MainActor(unsafe) final public class FBLoginButton : FBSDKCoreKit.FBButton { + @objc @_Concurrency.MainActor(unsafe) final public var defaultAudience: FBSDKLoginKit.DefaultAudience { + @objc get + @objc set + } + @objc @IBOutlet @_Concurrency.MainActor(unsafe) weak final public var delegate: FBSDKLoginKit.LoginButtonDelegate? + @objc @_Concurrency.MainActor(unsafe) final public var permissions: [Swift.String] + @objc @_Concurrency.MainActor(unsafe) final public var tooltipBehavior: FBSDKLoginKit.FBLoginButton.TooltipBehavior + @objc @_Concurrency.MainActor(unsafe) final public var tooltipColorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle + @objc @_Concurrency.MainActor(unsafe) final public var loginTracking: FBSDKLoginKit.LoginTracking + @objc @_Concurrency.MainActor(unsafe) final public var nonce: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var messengerPageId: Swift.String? + @objc @_Concurrency.MainActor(unsafe) final public var authType: FBSDKLoginKit.LoginAuthType? + @objc @_Concurrency.MainActor(unsafe) final public var codeVerifier: FBSDKLoginKit.CodeVerifier + @objc(FBSDKLoginButtonTooltipBehavior) public enum TooltipBehavior : Swift.UInt { + case automatic = 0 + case forceDisplay + case disable + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override final public func didMoveToWindow() + @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func layoutSubviews() + @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreFoundation.CGSize) -> CoreFoundation.CGSize + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(FBSDKLoginTooltipView) @_Concurrency.MainActor(unsafe) final public class FBLoginTooltipView : FBSDKLoginKit.FBTooltipView { + @objc @_Concurrency.MainActor(unsafe) weak final public var delegate: FBSDKLoginKit.LoginTooltipViewDelegate? + @objc @_Concurrency.MainActor(unsafe) final public var forceDisplay: Swift.Bool + @objc @_Concurrency.MainActor(unsafe) final public var shouldForceDisplay: Swift.Bool { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc convenience dynamic public init() + @objc(initWithTagline:message:colorStyle:) @_Concurrency.MainActor(unsafe) override public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) + @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc deinit +} +@objcMembers @objc(FBSDKPermission) final public class FBPermission : ObjectiveC.NSObject { + @objc override final public var description: Swift.String { + @objc get + } + @objc override final public var hash: Swift.Int { + @objc get + } + @objc public init?(string: Swift.String) + @objc(permissionsFromRawPermissions:) public static func permissions(fromRawPermissions rawPermissions: Swift.Set) -> Swift.Set? + @objc(rawPermissionsFromPermissions:) public static func rawPermissions(from permissions: Swift.Set) -> Swift.Set + @objc override final public func isEqual(_ object: Any?) -> Swift.Bool + @objc deinit +} +@objc(FBSDKTooltipView) @_Concurrency.MainActor(unsafe) open class FBTooltipView : UIKit.UIView { + @objc(FBSDKTooltipViewArrowDirection) @frozen public enum ArrowDirection : Swift.UInt { + case down = 0 + case up = 1 + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc(FBSDKTooltipColorStyle) @frozen public enum ColorStyle : Swift.UInt { + case friendlyBlue = 0 + case neutralGray = 1 + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc @_Concurrency.MainActor(unsafe) public var displayDuration: Swift.Double + @objc @_Concurrency.MainActor(unsafe) public var colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public var message: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public var tagline: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) + @available(*, unavailable) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit + @objc(presentFromView:) @_Concurrency.MainActor(unsafe) public func present(from anchorView: UIKit.UIView) + @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc @_Concurrency.MainActor(unsafe) public func dismiss() + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() +} +@objc(FBSDKLoginButtonDelegate) public protocol LoginButtonDelegate : ObjectiveC.NSObjectProtocol { + @objc(loginButton:didCompleteWithResult:error:) func loginButton(_ loginButton: FBSDKLoginKit.FBLoginButton, didCompleteWith result: FBSDKLoginKit.LoginManagerLoginResult?, error: Swift.Error?) + @objc func loginButtonDidLogOut(_ loginButton: FBSDKLoginKit.FBLoginButton) + @objc optional func loginButtonWillLogin(_ loginButton: FBSDKLoginKit.FBLoginButton) -> Swift.Bool +} +@objcMembers @objc(FBSDKLoginConfiguration) final public class LoginConfiguration : ObjectiveC.NSObject { + @objc final public let nonce: Swift.String + @objc final public let tracking: FBSDKLoginKit.LoginTracking + @objc final public let requestedPermissions: Swift.Set + @objc final public let messengerPageId: Swift.String? + @objc final public let authType: FBSDKLoginKit.LoginAuthType? + @objc final public let codeVerifier: FBSDKLoginKit.CodeVerifier + @objc(initWithPermissions:tracking:nonce:messengerPageId:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?) + @objc(initWithPermissions:tracking:nonce:messengerPageId:authType:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?) + @objc(initWithPermissions:tracking:nonce:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String) + @objc(initWithPermissions:tracking:messengerPageId:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, messengerPageId: Swift.String?) + @objc(initWithPermissions:tracking:messengerPageId:authType:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?) + @objc(initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:) public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?, codeVerifier: FBSDKLoginKit.CodeVerifier) + @objc(initWithPermissions:tracking:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking) + @objc(initWithTracking:) convenience public init?(tracking: FBSDKLoginKit.LoginTracking) + convenience public init?(permissions: Swift.Set = [], tracking: FBSDKLoginKit.LoginTracking = .enabled, nonce: Swift.String = UUID().uuidString, messengerPageId: Swift.String? = nil, authType: FBSDKLoginKit.LoginAuthType? = .rerequest, codeVerifier: FBSDKLoginKit.CodeVerifier = CodeVerifier()) + @objc deinit +} +public struct LoginError : Foundation.CustomNSError, Swift.Hashable { + public let errorCode: Swift.Int + public let errorUserInfo: [Swift.String : Any] + public init(_nsError nsError: Foundation.NSError) + public init(_ code: FBSDKLoginKit.LoginError.Code, userInfo: [Swift.String : Any] = [:]) + public static var errorDomain: Swift.String { + get + } + public typealias Code = FBSDKLoginKit.LoginErrorCode + public static var reserved: FBSDKLoginKit.LoginError.Code { + get + } + public static var unknown: FBSDKLoginKit.LoginError.Code { + get + } + public static var passwordChanged: FBSDKLoginKit.LoginError.Code { + get + } + public static var userCheckpointed: FBSDKLoginKit.LoginError.Code { + get + } + public static var userMismatch: FBSDKLoginKit.LoginError.Code { + get + } + public static var unconfirmedUser: FBSDKLoginKit.LoginError.Code { + get + } + public static var systemAccountAppDisabled: FBSDKLoginKit.LoginError.Code { + get + } + public static var systemAccountUnavailable: FBSDKLoginKit.LoginError.Code { + get + } + public static var badChallengeString: FBSDKLoginKit.LoginError.Code { + get + } + public static var invalidIDToken: FBSDKLoginKit.LoginError.Code { + get + } + public static var missingAccessToken: FBSDKLoginKit.LoginError.Code { + get + } + public static func == (lhs: FBSDKLoginKit.LoginError, rhs: FBSDKLoginKit.LoginError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc(FBSDKLoginError) public enum LoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { + public typealias _ErrorType = FBSDKLoginKit.LoginError + case reserved = 300 + case unknown + case passwordChanged + case userCheckpointed + case userMismatch + case unconfirmedUser + case systemAccountAppDisabled + case systemAccountUnavailable + case badChallengeString + case invalidIDToken + case missingAccessToken + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public let LoginErrorDomain: Swift.String +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLoginManager) final public class LoginManager : ObjectiveC.NSObject { + @objc final public var defaultAudience: FBSDKLoginKit.DefaultAudience + @objc convenience public init(defaultAudience: FBSDKLoginKit.DefaultAudience = .friends) + @available(swift, obsoleted: 0.1) + @objc(logInFromViewController:configuration:completion:) final public func logIn(from viewController: UIKit.UIViewController?, configuration: FBSDKLoginKit.LoginConfiguration?, completion: @escaping FBSDKLoginKit.LoginManagerLoginResultBlock) + @nonobjc final public func logIn(viewController: UIKit.UIViewController? = nil, configuration: FBSDKLoginKit.LoginConfiguration?, completion: @escaping FBSDKLoginKit.LoginResultBlock) + @objc(logInWithPermissions:fromViewController:handler:) final public func logIn(permissions: [Swift.String], from viewController: UIKit.UIViewController?, handler: FBSDKLoginKit.LoginManagerLoginResultBlock?) + @objc(reauthorizeDataAccess:handler:) final public func reauthorizeDataAccess(from viewController: UIKit.UIViewController, handler: @escaping FBSDKLoginKit.LoginManagerLoginResultBlock) + @objc(logOut) final public func logOut() + @objc override dynamic public init() + @objc deinit +} +extension FBSDKLoginKit.LoginManager : FBSDKCoreKit.URLOpening { + @objc public static func makeOpener() -> FBSDKLoginKit.LoginManager + @objc final public func application(_ application: UIKit.UIApplication?, open url: Foundation.URL?, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func canOpen(_ url: Foundation.URL, for application: UIKit.UIApplication?, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func applicationDidBecomeActive(_ application: UIKit.UIApplication) + @objc final public func isAuthenticationURL(_ url: Foundation.URL) -> Swift.Bool + @objc final public func shouldStopPropagation(of url: Foundation.URL) -> Swift.Bool +} +@objcMembers @objc(FBSDKLoginManagerLoginResult) final public class LoginManagerLoginResult : ObjectiveC.NSObject { + @objc final public let token: FBSDKCoreKit.AccessToken? + @objc final public let authenticationToken: FBSDKCoreKit.AuthenticationToken? + @objc final public let isCancelled: Swift.Bool + @objc final public let grantedPermissions: Swift.Set + @objc final public let declinedPermissions: Swift.Set + @objc(initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:) public init(token: FBSDKCoreKit.AccessToken?, authenticationToken: FBSDKCoreKit.AuthenticationToken?, isCancelled: Swift.Bool, grantedPermissions: Swift.Set, declinedPermissions: Swift.Set) + @objc deinit +} +public typealias LoginResultBlock = (FBSDKLoginKit.LoginResult) -> Swift.Void +@frozen public enum LoginResult { + case success(granted: Swift.Set, declined: Swift.Set, token: FBSDKCoreKit.AccessToken?) + case cancelled + case failed(Swift.Error) +} +@objc(FBSDKLoginTooltipViewDelegate) public protocol LoginTooltipViewDelegate { + @objc(loginTooltipView:shouldAppear:) optional func loginTooltipView(_ view: FBSDKLoginKit.FBLoginTooltipView, shouldAppear appIsEligible: Swift.Bool) -> Swift.Bool + @objc(loginTooltipViewWillAppear:) optional func loginTooltipViewWillAppear(_ view: FBSDKLoginKit.FBLoginTooltipView) + @objc(loginTooltipViewWillNotAppear:) optional func loginTooltipViewWillNotAppear(_ view: FBSDKLoginKit.FBLoginTooltipView) +} +@objc(FBSDKLoginTracking) public enum LoginTracking : Swift.UInt { + case enabled + case limited + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLoginCompletionParameters) final public class _LoginCompletionParameters : ObjectiveC.NSObject { + @objc final public var authenticationToken: FBSDKCoreKit.AuthenticationToken? + @objc final public var profile: FBSDKCoreKit.Profile? + @objc final public var accessTokenString: Swift.String? + @objc final public var nonceString: Swift.String? + @objc final public var authenticationTokenString: Swift.String? + @objc final public var code: Swift.String? + @objc final public var permissions: Swift.Set? + @objc final public var declinedPermissions: Swift.Set? + @objc final public var expiredPermissions: Swift.Set? + @objc final public var appID: Swift.String? + @objc final public var userID: Swift.String? + @objc final public var error: Swift.Error? + @objc final public var expirationDate: Foundation.Date? + @objc final public var dataAccessExpirationDate: Foundation.Date? + @objc final public var challenge: Swift.String? + @objc final public var graphDomain: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKLoginKit.DefaultAudience : Swift.Equatable {} +extension FBSDKLoginKit.DefaultAudience : Swift.Hashable {} +extension FBSDKLoginKit.DefaultAudience : Swift.RawRepresentable {} +extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.Hashable {} +extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.Equatable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.Hashable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Equatable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Hashable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Sendable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Equatable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Hashable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Sendable {} +extension FBSDKLoginKit.LoginErrorCode : Swift.Hashable {} +extension FBSDKLoginKit.LoginErrorCode : Swift.RawRepresentable {} +extension FBSDKLoginKit.LoginTracking : Swift.Equatable {} +extension FBSDKLoginKit.LoginTracking : Swift.Hashable {} +extension FBSDKLoginKit.LoginTracking : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.swiftdoc b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.swiftdoc index ace3b6d4..9605e23a 100644 Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.swiftdoc and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.swiftinterface index 47cbbe7c..b79e99e4 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.swiftinterface +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import CommonCrypto import FBSDKCoreKit import FBSDKCoreKit_Basics @@ -10,6 +11,7 @@ import Security import Swift import UIKit import _Concurrency +import _StringProcessing @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKCodeVerifier) final public class CodeVerifier : ObjectiveC.NSObject { @objc final public let value: Swift.String @objc final public var challenge: Swift.String { @@ -130,12 +132,12 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { get } } - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override final public func didMoveToWindow() - @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreGraphics.CGRect) -> CoreGraphics.CGRect - @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreGraphics.CGRect) -> CoreGraphics.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect @_Concurrency.MainActor(unsafe) @objc override final public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreGraphics.CGSize) -> CoreGraphics.CGSize + @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreFoundation.CGSize) -> CoreFoundation.CGSize @objc deinit } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(FBSDKLoginTooltipView) @_Concurrency.MainActor(unsafe) final public class FBLoginTooltipView : FBSDKLoginKit.FBTooltipView { @@ -145,9 +147,9 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { @objc get @objc set } - @objc convenience dynamic public init() + @_Concurrency.MainActor(unsafe) @objc convenience dynamic public init() @objc(initWithTagline:message:colorStyle:) @_Concurrency.MainActor(unsafe) override public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) - @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreGraphics.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) @objc deinit } @objcMembers @objc(FBSDKPermission) final public class FBPermission : ObjectiveC.NSObject { @@ -200,9 +202,9 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit @objc(presentFromView:) @_Concurrency.MainActor(unsafe) public func present(from anchorView: UIKit.UIView) - @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreGraphics.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) @objc @_Concurrency.MainActor(unsafe) public func dismiss() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() } @objc(FBSDKLoginButtonDelegate) public protocol LoginButtonDelegate : ObjectiveC.NSObjectProtocol { diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/module.modulemap b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/module.modulemap index de53eb21..75e58605 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/module.modulemap +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/FBSDKLoginKit.framework/Modules/module.modulemap @@ -6,6 +6,6 @@ framework module FBSDKLoginKit { } module FBSDKLoginKit.Swift { - header "FBSDKLoginKit-Swift.h" - requires objc + header "FBSDKLoginKit-Swift.h" + requires objc } diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 3fc827a5..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKLoginKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit deleted file mode 100644 index fb7419d0..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/FBSDKLoginKit b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/FBSDKLoginKit deleted file mode 120000 index 86a61fbd..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/FBSDKLoginKit +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/FBSDKLoginKit \ No newline at end of file diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/FBSDKLoginKit b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/FBSDKLoginKit new file mode 100644 index 00000000..3e0bf78a Binary files /dev/null and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/FBSDKLoginKit differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers deleted file mode 120000 index a177d2a6..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginAuthType.h b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginAuthType.h similarity index 100% rename from ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginAuthType.h rename to ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginAuthType.h diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginCompletionParametersBlock.h b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginCompletionParametersBlock.h similarity index 100% rename from ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginCompletionParametersBlock.h rename to ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginCompletionParametersBlock.h diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginErrorDomain.h b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginErrorDomain.h similarity index 100% rename from ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginErrorDomain.h rename to ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginErrorDomain.h diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginKit-Swift.h b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h similarity index 98% rename from ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginKit-Swift.h rename to ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h index 7d757cbc..165902d3 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginKit-Swift.h +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBSDKLOGINKIT_SWIFT_H #define FBSDKLOGINKIT_SWIFT_H #pragma clang diagnostic push @@ -23,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -183,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -193,11 +204,33 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif -@import CoreGraphics; +@import CoreFoundation; @import FBSDKCoreKit; @import Foundation; @import ObjectiveC; @@ -206,6 +239,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -213,6 +247,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -221,6 +256,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; @@ -843,6 +879,9 @@ SWIFT_CLASS_NAMED("_LoginCompletionParameters") - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif @@ -850,7 +889,7 @@ SWIFT_CLASS_NAMED("_LoginCompletionParameters") #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBSDKLOGINKIT_SWIFT_H #define FBSDKLOGINKIT_SWIFT_H #pragma clang diagnostic push @@ -873,11 +912,20 @@ SWIFT_CLASS_NAMED("_LoginCompletionParameters") # 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 @@ -1033,9 +1081,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -1043,11 +1093,33 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif -@import CoreGraphics; +@import CoreFoundation; @import FBSDKCoreKit; @import Foundation; @import ObjectiveC; @@ -1056,6 +1128,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -1063,6 +1136,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -1071,6 +1145,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; @@ -1693,10 +1768,15 @@ SWIFT_CLASS_NAMED("_LoginCompletionParameters") - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif #pragma clang diagnostic pop #endif +#else +#error unsupported Swift architecture #endif diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginKit.h b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginKit.h similarity index 100% rename from ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginKit.h rename to ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginKit.h diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginManagerLoginResultBlock.h b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResultBlock.h similarity index 100% rename from ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Headers/FBSDKLoginManagerLoginResultBlock.h rename to ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResultBlock.h diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules deleted file mode 120000 index 5736f318..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.abi.json b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.abi.json new file mode 100644 index 00000000..083190a3 --- /dev/null +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.abi.json @@ -0,0 +1,28830 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenCreating", + "printedName": "AuthenticationTokenCreating", + "children": [ + { + "kind": "Function", + "name": "createToken", + "printedName": "createToken(tokenString:nonce:graphDomain:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationToken?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.AuthenticationTokenCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenFactory", + "printedName": "AuthenticationTokenFactory", + "children": [ + { + "kind": "Var", + "name": "beginCertificate", + "printedName": "beginCertificate", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endCertificate", + "printedName": "endCertificate", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionProvider", + "printedName": "sessionProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvs", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvM", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "certificateEndpoint", + "printedName": "certificateEndpoint", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sessionProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenFactory", + "printedName": "FBSDKLoginKit.AuthenticationTokenFactory", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderACSo24FBSDKURLSessionProviding_p_tcfc", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderACSo24FBSDKURLSessionProviding_p_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "createToken", + "printedName": "createToken(tokenString:nonce:graphDomain:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationToken?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "verifySignature", + "printedName": "verifySignature(_:header:claims:certificateKey:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "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": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15verifySignature_6header6claims14certificateKey10completionySS_S3SySbctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15verifySignature_6header6claims14certificateKey10completionySS_S3SySbctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyWith", + "printedName": "getPublicKeyWith(certificateKey:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Security.SecKey?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Security.SecKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecKey", + "printedName": "Security.SecKey", + "usr": "c:@T@SecKeyRef" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC16getPublicKeyWith011certificateH010completionySS_ySo03SecH3RefaSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16getPublicKeyWith011certificateH010completionySS_ySo03SecH3RefaSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCertificateWith", + "printedName": "getCertificateWith(certificateKey:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Security.SecCertificate?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Security.SecCertificate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecCertificate", + "printedName": "Security.SecCertificate", + "usr": "c:@T@SecCertificateRef" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC18getCertificateWith14certificateKey10completionySS_ySo03SecG3RefaSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC18getCertificateWith14certificateKey10completionySS_ySo03SecG3RefaSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenFactory", + "printedName": "FBSDKLoginKit.AuthenticationTokenFactory", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryCACycfc", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryCACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AuthenticationTokenCreating", + "printedName": "AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenHeader", + "printedName": "AuthenticationTokenHeader", + "children": [ + { + "kind": "Var", + "name": "kid", + "printedName": "kid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvp", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvg", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromEncodedString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.AuthenticationTokenHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenHeader", + "printedName": "FBSDKLoginKit.AuthenticationTokenHeader", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC17fromEncodedStringACSgSS_tcfc", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC17fromEncodedStringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "CodeVerifier", + "printedName": "CodeVerifier", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(py)value", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC5valueSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)value", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC5valueSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "challenge", + "printedName": "challenge", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(py)challenge", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC9challengeSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)challenge", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC9challengeSSvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.CodeVerifier?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)initWithString:", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC6stringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithString:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)init", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKCodeVerifier", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultAudience", + "printedName": "DefaultAudience", + "children": [ + { + "kind": "Var", + "name": "friends", + "printedName": "friends", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceFriends", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO7friendsyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "onlyMe", + "printedName": "onlyMe", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceOnlyMe", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO6onlyMeyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "everyone", + "printedName": "everyone", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceEveryone", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8everyoneyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DefaultAudience?", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit15DefaultAudienceO8rawValueACSgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueACSgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit15DefaultAudienceO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DefaultAudienceO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDefaultAudience", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "AssociatedType", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP0E12DependenciesQa", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP0E12DependenciesQa", + "moduleName": "FBSDKLoginKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKLoginKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginCodeInfo", + "printedName": "DeviceLoginCodeInfo", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)identifier", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifierSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)identifier", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifierSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loginCode", + "printedName": "loginCode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)loginCode", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC05loginE0SSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)loginCode", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC05loginE0SSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "verificationURL", + "printedName": "verificationURL", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)verificationURL", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15verificationURL10Foundation0H0Vvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)verificationURL", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15verificationURL10Foundation0H0Vvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "expirationDate", + "printedName": "expirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)expirationDate", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC14expirationDate10Foundation0H0Vvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)expirationDate", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC14expirationDate10Foundation0H0Vvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pollingInterval", + "printedName": "pollingInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)pollingInterval", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15pollingIntervalSuvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)pollingInterval", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15pollingIntervalSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(identifier:loginCode:verificationURL:expirationDate:pollingInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)initWithIdentifier:loginCode:verificationURL:expirationDate:pollingInterval:", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifier05loginE015verificationURL14expirationDate15pollingIntervalACSS_SS10Foundation0J0VAI0L0VSutcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)init", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginCodeInfo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginError", + "printedName": "DeviceLoginError", + "children": [ + { + "kind": "Var", + "name": "_nsError", + "printedName": "_nsError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorCode", + "printedName": "errorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "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:13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorUserInfo", + "printedName": "errorUserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_nsError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0ACSo7NSErrorC_tcfc", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0ACSo7NSErrorC_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV_8userInfoAcA0cdE4CodeO_SDySSypGtcfc", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV_8userInfoAcA0cdE4CodeO_SDySSypGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDomain", + "printedName": "errorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "excessivePolling", + "printedName": "excessivePolling", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authorizationDeclined", + "printedName": "authorizationDeclined", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authorizationPending", + "printedName": "authorizationPending", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codeExpired", + "printedName": "codeExpired", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "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:13FBSDKLoginKit16DeviceLoginErrorV4hash4intoys6HasherVz_tF", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginErrorCode", + "printedName": "DeviceLoginErrorCode", + "children": [ + { + "kind": "Var", + "name": "excessivePolling", + "printedName": "excessivePolling", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorExcessivePolling", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO16excessivePollingyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "authorizationDeclined", + "printedName": "authorizationDeclined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorAuthorizationDeclined", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO21authorizationDeclinedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "authorizationPending", + "printedName": "authorizationPending", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorAuthorizationPending", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO20authorizationPendingyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "codeExpired", + "printedName": "codeExpired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorCodeExpired", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO11codeExpiredyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginManager", + "printedName": "DeviceLoginManager", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)delegate", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerDelegate", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)delegate", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerDelegate", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)permissions", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissionsSaySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)permissions", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissionsSaySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redirectURL", + "printedName": "redirectURL", + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)redirectURL", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)redirectURL", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setRedirectURL:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codeInfo", + "printedName": "codeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)codeInfo", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)codeInfo", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setCodeInfo:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:enableSmartLogin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)initWithPermissions:enableSmartLogin:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissions011enableSmartD0ACSaySSG_Sbtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:enableSmartLogin:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)start", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC5startyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)cancel", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC6cancelyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notifyDelegate", + "printedName": "notifyDelegate(token:expirationDate:dataAccessExpirationDate:)", + "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": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)notifyDelegateWithToken:expirationDate:dataAccessExpirationDate:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC14notifyDelegate5token14expirationDate020dataAccessExpirationJ0ySSSg_10Foundation0J0VSgALtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processError", + "printedName": "processError(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)processError:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC12processErroryys0G0_pF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "schedulePoll", + "printedName": "schedulePoll(interval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)schedulePollWithInterval:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC12schedulePoll8intervalySu_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)init", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "netService", + "printedName": "netService(_:didNotPublish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetService", + "printedName": "Foundation.NetService", + "usr": "c:objc(cs)NSNetService" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)netService:didNotPublish:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC10netService_13didNotPublishySo05NSNetG0C_SDySSSo8NSNumberCGtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "netService:didNotPublish:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "devicePoller", + "printedName": "devicePoller", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(devicePoller:errorFactory:graphRequestFactory:internalUtility:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePoller12errorFactory012graphRequestK015internalUtility8settingsAeA0C7Polling_p_So18FBSDKErrorCreating_pSo010FBSDKGraphmK0_pSo013FBSDKInternalO0_p09FBSDKCoreB016SettingsProtocol_ptcfc", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePoller12errorFactory012graphRequestK015internalUtility8settingsAeA0C7Polling_p_So18FBSDKErrorCreating_pSo010FBSDKGraphmK0_pSo013FBSDKInternalO0_p09FBSDKCoreB016SettingsProtocol_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP" + }, + { + "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": "DeviceLoginManagerDelegate", + "printedName": "DeviceLoginManagerDelegate", + "children": [ + { + "kind": "Function", + "name": "deviceLoginManager", + "printedName": "deviceLoginManager(_:startedWith:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate(im)deviceLoginManager:startedWithCodeInfo:", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP06devicedE0_11startedWithyAA0cdE0C_AA0cD8CodeInfoCtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DeviceLoginManagerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "deviceLoginManager:startedWithCodeInfo:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deviceLoginManager", + "printedName": "deviceLoginManager(_:completedWith:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate(im)deviceLoginManager:completedWithResult:error:", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP06devicedE0_13completedWith5erroryAA0cdE0C_AA0cdE6ResultCSgs5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DeviceLoginManagerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "deviceLoginManager:completedWithResult:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKDeviceLoginManagerDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginManagerResult", + "printedName": "DeviceLoginManagerResult", + "children": [ + { + "kind": "Var", + "name": "accessToken", + "printedName": "accessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(py)accessToken", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11accessTokenSo011FBSDKAccessH0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)accessToken", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11accessTokenSo011FBSDKAccessH0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCancelled", + "printedName": "isCancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(py)isCancelled", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11isCancelledSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)isCancelled", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11isCancelledSbvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(token:isCancelled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)initWithToken:isCancelled:", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC5token11isCancelledACSo16FBSDKAccessTokenCSg_Sbtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)init", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginManagerResult", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "DevicePoller", + "printedName": "DevicePoller", + "children": [ + { + "kind": "Function", + "name": "schedule", + "printedName": "schedule(interval:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12DevicePollerV8schedule8interval5blockySu_yyctF", + "mangledName": "$s13FBSDKLoginKit12DevicePollerV8schedule8interval5blockySu_yyctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePoller", + "printedName": "FBSDKLoginKit.DevicePoller", + "usr": "s:13FBSDKLoginKit12DevicePollerV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit12DevicePollerVACycfc", + "mangledName": "$s13FBSDKLoginKit12DevicePollerVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit12DevicePollerV", + "mangledName": "$s13FBSDKLoginKit12DevicePollerV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DevicePolling", + "printedName": "DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DevicePolling", + "printedName": "DevicePolling", + "children": [ + { + "kind": "Function", + "name": "schedule", + "printedName": "schedule(interval:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit13DevicePollingP8schedule8interval5blockySu_yyctF", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP8schedule8interval5blockySu_yyctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DevicePolling>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit13DevicePollingP", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceRequestsHelper", + "printedName": "DeviceRequestsHelper", + "children": [ + { + "kind": "Var", + "name": "mdnsAdvertisementServices", + "printedName": "mdnsAdvertisementServices", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvpZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvgZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getDeviceInfo", + "printedName": "getDeviceInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO03getC4InfoSSyFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO03getC4InfoSSyFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startAdvertisementService", + "printedName": "startAdvertisementService(loginCode:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25startAdvertisementService9loginCode8delegateSbSS_So05NSNetH8Delegate_ptFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25startAdvertisementService9loginCode8delegateSbSS_So05NSNetH8Delegate_ptFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isDelegate", + "printedName": "isDelegate(_:forAdvertisementService:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "NetService", + "printedName": "Foundation.NetService", + "usr": "c:objc(cs)NSNetService" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO10isDelegate_23forAdvertisementServiceSbSo05NSNetjG0_p_So0kJ0CtFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO10isDelegate_23forAdvertisementServiceSbSo05NSNetjG0_p_So0kJ0CtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cleanUpAdvertisementService", + "printedName": "cleanUpAdvertisementService(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO27cleanUpAdvertisementService3forySo05NSNetI8Delegate_p_tFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO27cleanUpAdvertisementService3forySo05NSNetI8Delegate_p_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBLoginButton", + "printedName": "FBLoginButton", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)defaultAudience", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)defaultAudience", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)delegate", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "IBOutlet", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginButtonDelegate", + "printedName": "FBSDKLoginKit.LoginButtonDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)delegate", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginButtonDelegate", + "printedName": "FBSDKLoginKit.LoginButtonDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)permissions", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)permissions", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setPermissions:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tooltipBehavior", + "printedName": "tooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)tooltipBehavior", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)tooltipBehavior", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setTooltipBehavior:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tooltipColorStyle", + "printedName": "tooltipColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)tooltipColorStyle", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)tooltipColorStyle", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setTooltipColorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginTracking", + "printedName": "loginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)loginTracking", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)loginTracking", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setLoginTracking:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)nonce", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)nonce", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setNonce:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "messengerPageId", + "printedName": "messengerPageId", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)messengerPageId", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)messengerPageId", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setMessengerPageId:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authType", + "printedName": "authType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)authType", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)authType", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setAuthType:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codeVerifier", + "printedName": "codeVerifier", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)codeVerifier", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)codeVerifier", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setCodeVerifier:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0CvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0CvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)userID", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)userID", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setUserID:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userName", + "printedName": "userName", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)userName", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)userName", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setUserName:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "elementProvider", + "printedName": "elementProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginProvider", + "printedName": "loginProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)graphRequestFactory", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)graphRequestFactory", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setGraphRequestFactory:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAuthenticated", + "printedName": "isAuthenticated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)isAuthenticated", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15isAuthenticatedSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)isAuthenticated", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15isAuthenticatedSbvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TooltipBehavior", + "printedName": "TooltipBehavior", + "children": [ + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO9automaticyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO9automaticyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "forceDisplay", + "printedName": "forceDisplay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO12forceDisplayyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO12forceDisplayyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "disable", + "printedName": "disable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO7disableyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO7disableyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior?", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginButtonTooltipBehavior", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initWithFrame:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBLoginButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initWithCoder:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:elementProvider:stringProvider:loginProvider:graphRequestFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5frame15elementProvider06stringG005loginG019graphRequestFactoryACSo6CGRectV_AA29UserInterfaceElementProviding_pAA0no6StringQ0_pAA05LoginQ0_pSo010FBSDKGraphkL0_ptcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frame15elementProvider06stringG005loginG019graphRequestFactoryACSo6CGRectV_AA29UserInterfaceElementProviding_pAA0no6StringQ0_pAA05LoginQ0_pSo010FBSDKGraphkL0_ptcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:permissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.Permission]", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5frame11permissionsACSo6CGRectV_Say09FBSDKCoreB010PermissionOGtcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frame11permissionsACSo6CGRectV_Say09FBSDKCoreB010PermissionOGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "didMoveToWindow", + "printedName": "didMoveToWindow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)didMoveToWindow", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15didMoveToWindowyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "didMoveToWindow", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "imageRect", + "printedName": "imageRect(forContentRect:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)imageRectForContentRect:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC9imageRect010forContentF0So6CGRectVAG_tF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "imageRectForContentRect:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "titleRect", + "printedName": "titleRect(forContentRect:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)titleRectForContentRect:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC9titleRect010forContentF0So6CGRectVAG_tF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "titleRectForContentRect:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)layoutSubviews", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14layoutSubviewsyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sizeThatFits", + "printedName": "sizeThatFits(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)sizeThatFits:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12sizeThatFitsySo6CGSizeVAFF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "sizeThatFits:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accessTokenDidChange", + "printedName": "accessTokenDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)accessTokenDidChange:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC20accessTokenDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profileDidChange", + "printedName": "profileDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)profileDidChange:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC16profileDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buttonPressed", + "printedName": "buttonPressed(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)buttonPressed:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13buttonPressedyyypF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeLoginConfiguration", + "printedName": "makeLoginConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)makeLoginConfiguration", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC22makeLoginConfigurationAA0fG0CSgyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initializeContent", + "printedName": "initializeContent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initializeContent", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17initializeContentyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateContentForAccessToken", + "printedName": "updateContentForAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)updateContentForAccessToken", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC27updateContentForAccessTokenyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetContent", + "printedName": "fetchAndSetContent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)fetchAndSetContent", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC18fetchAndSetContentyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateContentForUser", + "printedName": "updateContentForUser(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)updateContentForUser:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC20updateContentForUseryy09FBSDKCoreB07ProfileCSgF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logout", + "printedName": "logout()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)logout", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6logoutyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBLoginTooltipView", + "printedName": "FBLoginTooltipView", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)delegate", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipViewDelegate", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)delegate", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipViewDelegate", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "forceDisplay", + "printedName": "forceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)forceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvp", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)forceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setForceDisplay:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldForceDisplay", + "printedName": "shouldForceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)shouldForceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)shouldForceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setShouldForceDisplay:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvp", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvg", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)init", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tagline:message:colorStyle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "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": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)initWithTagline:message:colorStyle:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC7tagline7message10colorStyleACSSSg_AgA09FBTooltipE0C05ColorI0Otcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithTagline:message:colorStyle:", + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:stringProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProvider06stringH0AcA06ServerG9Providing_p_AA019UserInterfaceStringK0_ptcfc", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProvider06stringH0AcA06ServerG9Providing_p_AA019UserInterfaceStringK0_ptcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(in:arrowPosition:direction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + }, + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)presentInView:withArrowPosition:direction:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC7present2in13arrowPosition9directionySo6UIViewC_So7CGPointVAA09FBTooltipE0C14ArrowDirectionOtF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "presentInView:withArrowPosition:direction:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginTooltipView", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKLoginKit.FBTooltipView", + "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": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBPermission", + "printedName": "FBPermission", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)value", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC5valueSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKPermission(im)value", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC5valueSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)description", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11descriptionSSvp", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)description", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11descriptionSSvg", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)hash", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC4hashSivp", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)hash", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC4hashSivg", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBPermission?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)initWithString:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC6stringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "permissions", + "printedName": "permissions(fromRawPermissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(cm)permissionsFromRawPermissions:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11permissions18fromRawPermissionsShyACGSgShySSG_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "permissionsFromRawPermissions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rawPermissions", + "printedName": "rawPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(cm)rawPermissionsFromPermissions:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC14rawPermissions4fromShySSGShyACG_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "rawPermissionsFromPermissions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)isEqual:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC7isEqualySbypSgF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)init", + "mangledName": "$s13FBSDKLoginKit12FBPermissionCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKPermission", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBTooltipView", + "printedName": "FBTooltipView", + "children": [ + { + "kind": "TypeDecl", + "name": "ArrowDirection", + "printedName": "ArrowDirection", + "children": [ + { + "kind": "Var", + "name": "down", + "printedName": "down", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ArrowDirection.Type) -> FBSDKLoginKit.FBTooltipView.ArrowDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO4downyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO4downyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "up", + "printedName": "up", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ArrowDirection.Type) -> FBSDKLoginKit.FBTooltipView.ArrowDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO2upyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO2upyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKTooltipViewArrowDirection", + "declAttributes": [ + "AccessControl", + "Frozen", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt", + "isEnumExhaustive": true, + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ColorStyle", + "printedName": "ColorStyle", + "children": [ + { + "kind": "Var", + "name": "friendlyBlue", + "printedName": "friendlyBlue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ColorStyle.Type) -> FBSDKLoginKit.FBTooltipView.ColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO12friendlyBlueyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO12friendlyBlueyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "neutralGray", + "printedName": "neutralGray", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ColorStyle.Type) -> FBSDKLoginKit.FBTooltipView.ColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO11neutralGrayyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO11neutralGrayyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle?", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKTooltipColorStyle", + "declAttributes": [ + "AccessControl", + "Frozen", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt", + "isEnumExhaustive": true, + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "displayDuration", + "printedName": "displayDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)displayDuration", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)displayDuration", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setDisplayDuration:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "colorStyle", + "printedName": "colorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)colorStyle", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)colorStyle", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setColorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)message", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)message", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": 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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setMessage:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC7messageSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tagline", + "printedName": "tagline", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)tagline", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)tagline", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": 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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setTagline:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textLabel", + "printedName": "textLabel", + "children": [ + { + "kind": "TypeNominal", + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)textLabel", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC9textLabelSo7UILabelCvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "Final", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)textLabel", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC9textLabelSo7UILabelCvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)init", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tagline:message:colorStyle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + }, + { + "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": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)initWithTagline:message:colorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7tagline7message10colorStyleACSSSg_AgC05ColorH0Otcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithTagline:message:colorStyle:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)presentFromView:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7present4fromySo6UIViewC_tF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "presentFromView:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(in:arrowPosition:direction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + }, + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)presentInView:withArrowPosition:direction:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7present2in13arrowPosition9directionySo6UIViewC_So7CGPointVAC14ArrowDirectionOtF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "presentInView:withArrowPosition:direction:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismiss", + "printedName": "dismiss()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)dismiss", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7dismissyyF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "animateFadeIn", + "printedName": "animateFadeIn()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)animateFadeIn", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC13animateFadeInyyF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "animateFadeIn", + "declAttributes": [ + "Custom", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "draw", + "printedName": "draw(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)drawRect:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC4drawyySo6CGRectVF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "isOpen": true, + "objc_name": "drawRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)layoutSubviews", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14layoutSubviewsyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "isOpen": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)initWithFrame:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "FBSDKTooltipView", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)UIView", + "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": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IdentifiedLoginResultHandler", + "printedName": "IdentifiedLoginResultHandler", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV10identifier33_983F05C521C15D7299B686B606F5D560LL10Foundation4UUIDVvp", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV10identifier33_983F05C521C15D7299B686B606F5D560LL10Foundation4UUIDVvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "closure", + "printedName": "closure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV7closure33_983F05C521C15D7299B686B606F5D560LLyyAA0d7ManagerdE0CSg_s5Error_pSgtcvp", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV7closure33_983F05C521C15D7299B686B606F5D560LLyyAA0d7ManagerdE0CSg_s5Error_pSgtcvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerVyACyAA0d7ManagerdE0CSg_s5Error_pSgtccfc", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerVyACyAA0d7ManagerdE0CSg_s5Error_pSgtccfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "callAsFunction", + "printedName": "callAsFunction(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV14callAsFunctionyyAA0d7ManagerdE0CSg_s5Error_pSgtF", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV14callAsFunctionyyAA0d7ManagerdE0CSg_s5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + }, + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV", + "moduleName": "FBSDKLoginKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginButtonDelegate", + "printedName": "LoginButtonDelegate", + "children": [ + { + "kind": "Function", + "name": "loginButton", + "printedName": "loginButton(_:didCompleteWith:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButton:didCompleteWithResult:error:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05loginD0_15didCompleteWith5erroryAA07FBLoginD0C_AA0c7ManagerC6ResultCSgs5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginButton:didCompleteWithResult:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginButtonDidLogOut", + "printedName": "loginButtonDidLogOut(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButtonDidLogOut:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05loginD9DidLogOutyyAA07FBLoginD0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginButtonWillLogin", + "printedName": "loginButtonWillLogin(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButtonWillLogin:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05logind4WillC0ySbAA07FBLoginD0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", + "sugared_genericSig": "", + "objc_name": "FBSDKLoginButtonDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleterFactory", + "printedName": "LoginCompleterFactory", + "children": [ + { + "kind": "Function", + "name": "createLoginCompleter", + "printedName": "createLoginCompleter(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleting", + "printedName": "FBSDKLoginKit.LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryV06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactory", + "printedName": "FBSDKLoginKit.LoginCompleterFactory", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryVACycfc", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginCompleterFactoryProtocol", + "printedName": "LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleterFactoryProtocol", + "printedName": "LoginCompleterFactoryProtocol", + "children": [ + { + "kind": "Function", + "name": "createLoginCompleter", + "printedName": "createLoginCompleter(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleting", + "printedName": "FBSDKLoginKit.LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleterFactoryProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleting", + "printedName": "LoginCompleting", + "children": [ + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15LoginCompletingP08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15LoginCompletingP08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15LoginCompletingP", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginConfiguration", + "printedName": "LoginConfiguration", + "children": [ + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)nonce", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC5nonceSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)nonce", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC5nonceSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tracking", + "printedName": "tracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)tracking", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingAA0C8TrackingOvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)tracking", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingAA0C8TrackingOvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestedPermissions", + "printedName": "requestedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC20requestedPermissionsShyAA12FBPermissionCGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC20requestedPermissionsShyAA12FBPermissionCGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messengerPageId", + "printedName": "messengerPageId", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)messengerPageId", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC15messengerPageIdSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)messengerPageId", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC15messengerPageIdSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authType", + "printedName": "authType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)authType", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8authTypeSo0a4AuthF0aSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)authType", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8authTypeSo0a4AuthF0aSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codeVerifier", + "printedName": "codeVerifier", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)codeVerifier", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC12codeVerifierAA04CodeF0Cvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)codeVerifier", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC12codeVerifierAA04CodeF0Cvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageIdACSgSaySSG_AA0C8TrackingOS2SSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:authType:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authTypeACSgSaySSG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:authType:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonceACSgSaySSG_AA0C8TrackingOSStcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:messengerPageId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:messengerPageId:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking15messengerPageIdACSgSaySSG_AA0C8TrackingOSSSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:messengerPageId:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:messengerPageId:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "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": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:messengerPageId:authType:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking15messengerPageId8authTypeACSgSaySSG_AA0C8TrackingOSSSgSo0a4AuthK0aSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:messengerPageId:authType:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:codeVerifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgSaySSG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8trackingACSgSaySSG_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithTracking:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingACSgAA0C8TrackingO_tcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithTracking:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:codeVerifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgShy09FBSDKCoreB010PermissionOG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgShy09FBSDKCoreB010PermissionOG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)init", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginConfiguration", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginError", + "printedName": "LoginError", + "children": [ + { + "kind": "Var", + "name": "_nsError", + "printedName": "_nsError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorCode", + "printedName": "errorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV9errorCodeSivp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9errorCodeSivp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "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:13FBSDKLoginKit10LoginErrorV9errorCodeSivg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9errorCodeSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorUserInfo", + "printedName": "errorUserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_nsError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0ACSo7NSErrorC_tcfc", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0ACSo7NSErrorC_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit10LoginErrorV_8userInfoAcA0cD4CodeO_SDySSypGtcfc", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV_8userInfoAcA0cD4CodeO_SDySSypGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDomain", + "printedName": "errorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV11errorDomainSSvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV11errorDomainSSvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV11errorDomainSSvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV11errorDomainSSvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "passwordChanged", + "printedName": "passwordChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userCheckpointed", + "printedName": "userCheckpointed", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userMismatch", + "printedName": "userMismatch", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unconfirmedUser", + "printedName": "unconfirmedUser", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "systemAccountAppDisabled", + "printedName": "systemAccountAppDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "systemAccountUnavailable", + "printedName": "systemAccountUnavailable", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "badChallengeString", + "printedName": "badChallengeString", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidIDToken", + "printedName": "invalidIDToken", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "missingAccessToken", + "printedName": "missingAccessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit10LoginErrorV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "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:13FBSDKLoginKit10LoginErrorV4hash4intoys6HasherVz_tF", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV9hashValueSivp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9hashValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV9hashValueSivg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9hashValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit10LoginErrorV", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginErrorCode", + "printedName": "LoginErrorCode", + "children": [ + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorReserved", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8reservedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUnknown", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO7unknownyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "passwordChanged", + "printedName": "passwordChanged", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorPasswordChanged", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO15passwordChangedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "userCheckpointed", + "printedName": "userCheckpointed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUserCheckpointed", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO16userCheckpointedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "userMismatch", + "printedName": "userMismatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUserMismatch", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO12userMismatchyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "unconfirmedUser", + "printedName": "unconfirmedUser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUnconfirmedUser", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO15unconfirmedUseryA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "systemAccountAppDisabled", + "printedName": "systemAccountAppDisabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorSystemAccountAppDisabled", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO24systemAccountAppDisabledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "systemAccountUnavailable", + "printedName": "systemAccountUnavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorSystemAccountUnavailable", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO24systemAccountUnavailableyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "badChallengeString", + "printedName": "badChallengeString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorBadChallengeString", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO18badChallengeStringyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "invalidIDToken", + "printedName": "invalidIDToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorInvalidIDToken", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO14invalidIDTokenyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "missingAccessToken", + "printedName": "missingAccessToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorMissingAccessToken", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO18missingAccessTokenyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 10 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit14LoginErrorCodeO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit14LoginErrorCodeO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginErrorCodeO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Var", + "name": "LoginErrorDomain", + "printedName": "LoginErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16LoginErrorDomainSSvp", + "mangledName": "$s13FBSDKLoginKit16LoginErrorDomainSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "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:13FBSDKLoginKit16LoginErrorDomainSSvg", + "mangledName": "$s13FBSDKLoginKit16LoginErrorDomainSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginEventLogging", + "printedName": "LoginEventLogging", + "children": [ + { + "kind": "Var", + "name": "flushBehavior", + "printedName": "flushBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "FlushBehavior", + "printedName": "FBSDKCoreKit.AppEvents.FlushBehavior", + "usr": "c:@E@FBSDKAppEventsFlushBehavior" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvp", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FlushBehavior", + "printedName": "FBSDKCoreKit.AppEvents.FlushBehavior", + "usr": "c:@E@FBSDKAppEventsFlushBehavior" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvg", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logInternalEvent", + "printedName": "logInternalEvent(_:parameters:isImplicitlyLogged:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP011logInternalD0_10parameters18isImplicitlyLoggedySo08FBSDKAppD4Namea_SDySo0ld9ParameterM0aypGSgSbtF", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP011logInternalD0_10parameters18isImplicitlyLoggedySo08FBSDKAppD4Namea_SDySo0ld9ParameterM0aypGSgSbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP5flushyyF", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP5flushyyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginManager", + "printedName": "LoginManager", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)defaultAudience", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)defaultAudience", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "handler", + "printedName": "handler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)configuration", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC13configurationAA0C13ConfigurationCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)configuration", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC13configurationAA0C13ConfigurationCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestedPermissions", + "printedName": "requestedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setRequestedPermissions:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "usedSafariSession", + "printedName": "usedSafariSession", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)usedSafariSession", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)usedSafariSession", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setUsedSafariSession:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isPerformingLogin", + "printedName": "isPerformingLogin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)isPerformingLogin", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC012isPerformingC0Sbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)isPerformingLogin", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC012isPerformingC0Sbvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Lazy" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(defaultAudience:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)initWithDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAcA07DefaultF0O_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(viewController:configuration: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" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginManagerC5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:from:handler:)", + "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" + }, + { + "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": "((FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logInWithPermissions:fromViewController:handler:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0cdC6ResultCSg_s5Error_pSgtcSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "logInWithPermissions:fromViewController:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:viewController:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.Permission]", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + }, + { + "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": "((FBSDKLoginKit.LoginResult) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginManagerC5logIn11permissions14viewController10completionySay09FBSDKCoreB010PermissionOG_So06UIViewI0CSgyAA0C6ResultOcSgtF", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn11permissions14viewController10completionySay09FBSDKCoreB010PermissionOG_So06UIViewI0CSgyAA0C6ResultOcSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reauthorizeDataAccess", + "printedName": "reauthorizeDataAccess(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)reauthorizeDataAccess:handler:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC21reauthorizeDataAccess4from7handlerySo16UIViewControllerC_yAA0cdC6ResultCSg_s5Error_pSgtctF", + "moduleName": "FBSDKLoginKit", + "objc_name": "reauthorizeDataAccess:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logOut", + "printedName": "logOut()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logOut", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6logOutyyF", + "moduleName": "FBSDKLoginKit", + "objc_name": "logOut", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeAuthentication", + "printedName": "completeAuthentication(parameters:expectChallenge:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)completeAuthenticationWithParameters:expectChallenge:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22completeAuthentication10parameters15expectChallengeyAA01_C20CompletionParametersC_SbtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logInParameters", + "printedName": "logInParameters(configuration:loggingToken:authenticationMethod:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logInParametersWithConfiguration:loggingToken:authenticationMethod:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15logInParameters13configuration12loggingToken20authenticationMethodSDyS2SGSgAA0C13ConfigurationCSg_SSSgSStF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateReauthentication", + "printedName": "validateReauthentication(accessToken:loginResult:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)validateReauthenticationWithAccessToken:loginResult:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC24validateReauthentication11accessToken11loginResultySo011FBSDKAccessH0C_AA0cdcJ0CSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRecentlyGrantedPermissions", + "printedName": "getRecentlyGrantedPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)getRecentlyGrantedPermissionsFrom:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC29getRecentlyGrantedPermissions4fromShyAA12FBPermissionCGAH_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRecentlyDeclinedPermissions", + "printedName": "getRecentlyDeclinedPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)getRecentlyDeclinedPermissionsFrom:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC30getRecentlyDeclinedPermissions4fromShyAA12FBPermissionCGAH_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "storeExpectedNonce", + "printedName": "storeExpectedNonce(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)storeExpectedNonce:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18storeExpectedNonceyySSSgF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)init", + "mangledName": "$s13FBSDKLoginKit12LoginManagerCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "makeOpener", + "printedName": "makeOpener()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(cm)makeOpener", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC10makeOpenerACyFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "makeOpener", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC11application_4open17sourceApplication10annotationSbSo13UIApplicationCSg_10Foundation3URLVSgSSSgypSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "canOpen", + "printedName": "canOpen(_:for:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)canOpenURL:forApplication:sourceApplication:annotation:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7canOpen_3for17sourceApplication10annotationSb10Foundation3URLV_So13UIApplicationCSgSSSgypSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "canOpenURL:forApplication:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)applicationDidBecomeActive:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC26applicationDidBecomeActiveyySo13UIApplicationCF", + "moduleName": "FBSDKLoginKit", + "objc_name": "applicationDidBecomeActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isAuthenticationURL", + "printedName": "isAuthenticationURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)isAuthenticationURL:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19isAuthenticationURLySb10Foundation0G0VF", + "moduleName": "FBSDKLoginKit", + "objc_name": "isAuthenticationURL:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldStopPropagation", + "printedName": "shouldStopPropagation(of:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)shouldStopPropagationOfURL:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC21shouldStopPropagation2ofSb10Foundation3URLV_tF", + "moduleName": "FBSDKLoginKit", + "objc_name": "shouldStopPropagationOfURL:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenWallet", + "printedName": "authenticationTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "keychainStore", + "printedName": "keychainStore", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginCompleterFactory", + "printedName": "loginCompleterFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profileProvider", + "printedName": "profileProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenWallet:authenticationTokenWallet:errorFactory:graphRequestFactory:internalUtility:keychainStore:loginCompleterFactory:profileProvider:settings:urlOpener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWallet014authenticationhI012errorFactory012graphRequestL015internalUtility13keychainStore014loginCompleterL015profileProvider8settings9urlOpenerAESo011FBSDKAccessH9Providing_pXp_So019FBSDKAuthenticationH9Providing_pXpSo18FBSDKErrorCreating_pSo010FBSDKGraphnL0_pSo27FBSDKAppAvailabilityChecker_So26FBSDKAppURLSchemeProvidingSo15FBSDKURLHostingpSo013FBSDKKeychainR0_pAA0ctL8Protocol_p09FBSDKCoreB016ProfileProviding_pXpAY16SettingsProtocol_pSo14FBSDKURLOpener_ptcfc", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWallet014authenticationhI012errorFactory012graphRequestL015internalUtility13keychainStore014loginCompleterL015profileProvider8settings9urlOpenerAESo011FBSDKAccessH9Providing_pXp_So019FBSDKAuthenticationH9Providing_pXpSo18FBSDKErrorCreating_pSo010FBSDKGraphnL0_pSo27FBSDKAppAvailabilityChecker_So26FBSDKAppURLSchemeProvidingSo15FBSDKURLHostingpSo013FBSDKKeychainR0_pAA0ctL8Protocol_p09FBSDKCoreB016ProfileProviding_pXpAY16SettingsProtocol_pSo14FBSDKURLOpener_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginProviding", + "printedName": "LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginManagerLogger", + "printedName": "LoginManagerLogger", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extras", + "printedName": "extras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastResult", + "printedName": "lastResult", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastError", + "printedName": "lastError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authMethod", + "printedName": "authMethod", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loggingToken", + "printedName": "loggingToken", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 5, + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(parameters:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10parameters8trackingACSgSDySSypGSg_AA0C8TrackingOtcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10parameters8trackingACSgSDySSypGSg_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(loggingToken:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "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": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12loggingToken8trackingACSgSSSg_AA0C8TrackingOtcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingToken8trackingACSgSSSg_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startSession", + "printedName": "startSession(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12startSession3foryAA0cD0C_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12startSession3foryAA0cD0C_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endSession", + "printedName": "endSession()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10endSessionyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10endSessionyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(authenticationMethod:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC5start20authenticationMethodySS_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC5start20authenticationMethodySS_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endLogin", + "printedName": "endLogin(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC03endC06result5erroryAA0cdC6ResultCSg_So7NSErrorCSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC03endC06result5erroryAA0cdC6ResultCSg_So7NSErrorCSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postLoginHeartbeat", + "printedName": "postLoginHeartbeat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC04postC9HeartbeatyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC04postC9HeartbeatyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "heartbeatTimerDidFire", + "printedName": "heartbeatTimerDidFire()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC21heartbeatTimerDidFireyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC21heartbeatTimerDidFireyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "willAttemptAppSwitchingBehavior", + "printedName": "willAttemptAppSwitchingBehavior(urlScheme:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC31willAttemptAppSwitchingBehavior9urlSchemeySS_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC31willAttemptAppSwitchingBehavior9urlSchemeySS_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getClientState", + "printedName": "getClientState(authenticationMethod:existingState:logger:)", + "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": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC14getClientState20authenticationMethod08existingH06loggerSSSgAH_SDySSypGSgACSgtFZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC14getClientState20authenticationMethod08existingH06loggerSSSgAH_SDySSypGSgACSgtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parametersForNewEvent", + "printedName": "parametersForNewEvent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC21parametersForNewEventSDySo08FBSDKAppI13ParameterNameaypGyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC21parametersForNewEventSDySo08FBSDKAppI13ParameterNameaypGyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logEvent", + "printedName": "logEvent(_:params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6paramsySo08FBSDKAppG4Namea_SDySo0ig9ParameterJ0aypGSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6paramsySo08FBSDKAppG4Namea_SDySo0ig9ParameterJ0aypGSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logEvent", + "printedName": "logEvent(_:result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6result5errorySo08FBSDKAppG4Namea_SSSo7NSErrorCSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6result5errorySo08FBSDKAppG4Namea_SSSo7NSErrorCSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventLogger:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AeA0C12EventLogging_p_tcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AeA0C12EventLogging_p_tcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginManagerLoginResult", + "printedName": "LoginManagerLoginResult", + "children": [ + { + "kind": "Var", + "name": "token", + "printedName": "token", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)token", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5tokenSo16FBSDKAccessTokenCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)token", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5tokenSo16FBSDKAccessTokenCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)authenticationToken", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19authenticationTokenSo019FBSDKAuthenticationG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)authenticationToken", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19authenticationTokenSo019FBSDKAuthenticationG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCancelled", + "printedName": "isCancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)isCancelled", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC11isCancelledSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)isCancelled", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC11isCancelledSbvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "grantedPermissions", + "printedName": "grantedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)grantedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC18grantedPermissionsShySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)grantedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC18grantedPermissionsShySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19declinedPermissionsShySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19declinedPermissionsShySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggingExtras", + "printedName": "loggingExtras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)loggingExtras", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC13loggingExtrasSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)loggingExtras", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC13loggingExtrasSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(token:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5token19authenticationToken11isCancelled18grantedPermissions08declinedL0ACSo011FBSDKAccessH0CSg_So019FBSDKAuthenticationH0CSgSbShySSGAOtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addLoggingExtra", + "printedName": "addLoggingExtra(_:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)addLoggingExtra:forKey:", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC15addLoggingExtra_6forKeyyyp_SStF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)init", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginManagerLoginResult", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "LoginManagerState", + "printedName": "LoginManagerState", + "children": [ + { + "kind": "Var", + "name": "idle", + "printedName": "idle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO4idleyA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO4idleyA2CmF", + "moduleName": "FBSDKLoginKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO5startyA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO5startyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "performingLogin", + "printedName": "performingLogin", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO010performingC0yA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO010performingC0yA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerState?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit17LoginManagerStateO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "Int", + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginProviding", + "printedName": "LoginProviding", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovp", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovg", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovs", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(viewController:configuration: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": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:from:handler:)", + "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" + }, + { + "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": "((FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0c7ManagerC6ResultCSg_s5Error_pSgtcSgtF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0c7ManagerC6ResultCSg_s5Error_pSgtcSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logOut", + "printedName": "logOut()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP6logOutyyF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP6logOutyyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit14LoginProvidingP", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginRecoveryAttempter", + "printedName": "LoginRecoveryAttempter", + "children": [ + { + "kind": "Function", + "name": "attemptRecovery", + "printedName": "attemptRecovery(from:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "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": "s:13FBSDKLoginKit22LoginRecoveryAttempterC07attemptD04from10completionys5Error_p_ySbctF", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC07attemptD04from10completionys5Error_p_ySbctF", + "moduleName": "FBSDKLoginKit", + "objc_name": "attemptRecoveryFromError:completionHandler:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginRecoveryAttempter", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterCACycfc", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterCACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "loginProvider", + "printedName": "loginProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvp", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvg", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvs", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvM", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(loginProvider:accessTokenProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProvider011accessTokenI0AeA0C9Providing_p_So011FBSDKAccesskL0_pXptcfc", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProvider011accessTokenI0AeA0C9Providing_p_So011FBSDKAccesskL0_pXptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginResult", + "printedName": "LoginResult", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> (Swift.Set, Swift.Set, FBSDKCoreKit.AccessToken?) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Set, Swift.Set, FBSDKCoreKit.AccessToken?) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(granted: Swift.Set, declined: Swift.Set, token: FBSDKCoreKit.AccessToken?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO7successyACShy09FBSDKCoreB010PermissionOG_AHSo16FBSDKAccessTokenCSgtcACmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO7successyACShy09FBSDKCoreB010PermissionOG_AHSo16FBSDKAccessTokenCSgtcACmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO9cancelledyA2CmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO9cancelledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> (Swift.Error) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO6failedyACs5Error_pcACmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO6failedyACs5Error_pcACmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit11LoginResultO6result5errorAcA0c7ManagercD0CSg_s5Error_pSgtcfc", + "mangledName": "$s13FBSDKLoginKit11LoginResultO6result5errorAcA0c7ManagercD0CSg_s5Error_pSgtcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "loginManagerResult", + "printedName": "loginManagerResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvp", + "mangledName": "$s13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvg", + "mangledName": "$s13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvg", + "moduleName": "FBSDKLoginKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit11LoginResultO5errors5Error_pSgvp", + "mangledName": "$s13FBSDKLoginKit11LoginResultO5errors5Error_pSgvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit11LoginResultO5errors5Error_pSgvg", + "mangledName": "$s13FBSDKLoginKit11LoginResultO5errors5Error_pSgvg", + "moduleName": "FBSDKLoginKit", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit11LoginResultO", + "mangledName": "$s13FBSDKLoginKit11LoginResultO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "Frozen", + "RawDocComment" + ], + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "LoginTooltipViewDelegate", + "printedName": "LoginTooltipViewDelegate", + "children": [ + { + "kind": "Function", + "name": "loginTooltipView", + "printedName": "loginTooltipView(_:shouldAppear:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipView:shouldAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE0_12shouldAppearSbAA07FBLogindE0C_SbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipView:shouldAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginTooltipViewWillAppear", + "printedName": "loginTooltipViewWillAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipViewWillAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE10WillAppearyyAA07FBLogindE0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipViewWillAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginTooltipViewWillNotAppear", + "printedName": "loginTooltipViewWillNotAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipViewWillNotAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE13WillNotAppearyyAA07FBLogindE0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipViewWillNotAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKLoginTooltipViewDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginTracking", + "printedName": "LoginTracking", + "children": [ + { + "kind": "Var", + "name": "enabled", + "printedName": "enabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginTracking.Type) -> FBSDKLoginKit.LoginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginTracking.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking@FBSDKLoginTrackingEnabled", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO7enabledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "limited", + "printedName": "limited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginTracking.Type) -> FBSDKLoginKit.LoginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginTracking.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking@FBSDKLoginTrackingLimited", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO7limitedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTracking?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13LoginTrackingO8rawValueACSgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueACSgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13LoginTrackingO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13LoginTrackingO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginTracking", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginURLCompleter", + "printedName": "LoginURLCompleter", + "children": [ + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginURLCompleter", + "printedName": "FBSDKLoginKit.LoginURLCompleter", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV13urlParameters5appIDACSDySSypG_SStcfc", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV13urlParameters5appIDACSDySSypG_SStcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetPropertiesFor", + "printedName": "fetchAndSetPropertiesFor(parameters:nonce:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV24fetchAndSetPropertiesFor10parameters5nonce7handleryAA01_C20CompletionParametersC_SSyAIctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV24fetchAndSetPropertiesFor10parameters5nonce7handleryAA01_C20CompletionParametersC_SSyAIctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setParameters", + "printedName": "setParameters(values:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV13setParameters6values5appIDySDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV13setParameters6values5appIDySDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exchangeNonceForTokenWith", + "printedName": "exchangeNonceForTokenWith(handler:authenticationNonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV25exchangeNonceForTokenWith7handler014authenticationF0yyAA01_C20CompletionParametersCc_SStF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV25exchangeNonceForTokenWith7handler014authenticationF0yyAA01_C20CompletionParametersCc_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exchangeCodeForTokensWith", + "printedName": "exchangeCodeForTokensWith(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV25exchangeCodeForTokensWith5nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV25exchangeCodeForTokensWith5nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profile", + "printedName": "profile(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV7profile4with09FBSDKCoreB07ProfileCSgAF25AuthenticationTokenClaimsC_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV7profile4with09FBSDKCoreB07ProfileCSgAF25AuthenticationTokenClaimsC_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "expirationDateFrom", + "printedName": "expirationDateFrom(parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV18expirationDateFrom10parameters10Foundation0F0VSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV18expirationDateFrom10parameters10Foundation0F0VSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dataAccessExpirationDateFrom", + "printedName": "dataAccessExpirationDateFrom(parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV28dataAccessExpirationDateFrom10parameters10Foundation0H0VSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV28dataAccessExpirationDateFrom10parameters10Foundation0H0VSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "challenge", + "printedName": "challenge(from:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV9challenge4fromSSSgSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV9challenge4fromSSSgSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV5error4froms5Error_pSgSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV5error4froms5Error_pSgSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "profileFactory", + "printedName": "profileFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenCreator", + "printedName": "authenticationTokenCreator", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profileFactory:authenticationTokenCreator:graphRequestFactory:internalUtility:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactory26authenticationTokenCreator012graphRequestH015internalUtility05errorH0AeA15ProfileCreating_p_AA014AuthenticationjR0_pSo010FBSDKGraphmH0_pSo15FBSDKURLHosting_pSo010FBSDKErrorR0_ptcfc", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactory26authenticationTokenCreator012graphRequestH015internalUtility05errorH0AeA15ProfileCreating_p_AA014AuthenticationjR0_pSo010FBSDKGraphmH0_pSo15FBSDKURLHosting_pSo010FBSDKErrorR0_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginCompleting", + "printedName": "LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginUtility", + "printedName": "LoginUtility", + "children": [ + { + "kind": "Function", + "name": "stringForAudience", + "printedName": "stringForAudience(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO17stringForAudienceySSAA07DefaultG0OFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO17stringForAudienceySSAA07DefaultG0OFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getQueryParameters", + "printedName": "getQueryParameters(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO18getQueryParameters4fromSDySSypGSg10Foundation3URLV_tFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO18getQueryParameters4fromSDySSypGSg10Foundation3URLV_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUserID", + "printedName": "getUserID(from:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO9getUserID4fromSSSgAF_tFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO9getUserID4fromSSSgAF_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit12LoginUtilityO", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO", + "moduleName": "FBSDKLoginKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV13dependentType33_8991E3BB914DA09983850496725CF25BLLxmvp", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV13dependentType33_8991E3BB914DA09983850496725CF25BLLxmvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKLoginKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MonotonicTimer", + "printedName": "MonotonicTimer", + "children": [ + { + "kind": "Function", + "name": "getCurrentSeconds", + "printedName": "getCurrentSeconds()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV17getCurrentSecondsSdyF", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerV17getCurrentSecondsSdyF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MonotonicTimer", + "printedName": "FBSDKLoginKit.MonotonicTimer", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit14MonotonicTimerVACycfc", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerV", + "moduleName": "FBSDKLoginKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NonceValidator", + "printedName": "NonceValidator", + "children": [ + { + "kind": "Function", + "name": "isValid", + "printedName": "isValid(nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14NonceValidatorO7isValid5nonceSbSS_tFZ", + "mangledName": "$s13FBSDKLoginKit14NonceValidatorO7isValid5nonceSbSS_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit14NonceValidatorO", + "mangledName": "$s13FBSDKLoginKit14NonceValidatorO", + "moduleName": "FBSDKLoginKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileCreating", + "printedName": "ProfileCreating", + "children": [ + { + "kind": "Function", + "name": "createProfile", + "printedName": "createProfile(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.ProfileCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileFactory", + "printedName": "ProfileFactory", + "children": [ + { + "kind": "Function", + "name": "createProfile", + "printedName": "createProfile(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14ProfileFactoryC06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryC06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileFactory", + "printedName": "FBSDKLoginKit.ProfileFactory", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory(im)init", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ProfileCreating", + "printedName": "ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConfigurationProviding", + "printedName": "ServerConfigurationProviding", + "children": [ + { + "kind": "Function", + "name": "loadServerConfiguration", + "printedName": "loadServerConfiguration(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKLoginTooltip", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip", + "usr": "c:objc(cs)FBSDKLoginTooltip" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP04loadcD010completionyySo0A7TooltipCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP04loadcD010completionyySo0A7TooltipCSg_s5Error_pSgtcSg_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.ServerConfigurationProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceElementProviding", + "printedName": "UserInterfaceElementProviding", + "children": [ + { + "kind": "Function", + "name": "topMostViewController", + "printedName": "topMostViewController()", + "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": "Func", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP21topMostViewControllerSo06UIViewJ0CSgyF", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP21topMostViewControllerSo06UIViewJ0CSgyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceElementProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewController", + "printedName": "viewController(for:)", + "children": [ + { + "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": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP14viewController3forSo06UIViewH0CSgSo0J0C_tF", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP14viewController3forSo06UIViewH0CSgSo0J0C_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceElementProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "children": [ + { + "kind": "Var", + "name": "bundleForStrings", + "printedName": "bundleForStrings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceStringProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "_LoginCompletionParameters", + "printedName": "_LoginCompletionParameters", + "children": [ + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)authenticationToken", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)authenticationToken", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAuthenticationToken:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profile", + "printedName": "profile", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)profile", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)profile", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setProfile:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenString", + "printedName": "accessTokenString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)accessTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)accessTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAccessTokenString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nonceString", + "printedName": "nonceString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)nonceString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)nonceString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setNonceString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenString", + "printedName": "authenticationTokenString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)authenticationTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)authenticationTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAuthenticationTokenString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)code", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)code", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setCode:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)permissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)permissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setDeclinedPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "expiredPermissions", + "printedName": "expiredPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)expiredPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)expiredPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setExpiredPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)appID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)appID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAppID:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)userID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)userID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setUserID:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)error", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)error", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setError:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "expirationDate", + "printedName": "expirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)expirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)expirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setExpirationDate:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataAccessExpirationDate", + "printedName": "dataAccessExpirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)dataAccessExpirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)dataAccessExpirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setDataAccessExpirationDate:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "challenge", + "printedName": "challenge", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)challenge", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)challenge", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setChallenge:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphDomain", + "printedName": "graphDomain", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)graphDomain", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)graphDomain", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setGraphDomain:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)init", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginCompletionParameters", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEvents", + "printedName": "AppEvents", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAppEvents", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAppEvents", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "LoginEventLogging", + "printedName": "LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InternalUtility", + "printedName": "InternalUtility", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKInternalUtility", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKInternalUtility", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceElementProviding", + "printedName": "UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "loginButtonDidTap", + "printedName": "loginButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "smartLoginService", + "printedName": "smartLoginService", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthStart", + "printedName": "sessionAuthStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthEnd", + "printedName": "sessionAuthEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthMethodStart", + "printedName": "sessionAuthMethodStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthMethodEnd", + "printedName": "sessionAuthMethodEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthHeartbeat", + "printedName": "sessionAuthHeartbeat", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName", + "moduleName": "FBSDKCoreKit", + "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": "ServerConfigurationProvider", + "printedName": "ServerConfigurationProvider", + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ServerConfigurationProviding", + "printedName": "ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP" + }, + { + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/AuthenticationTokenFactory.swift", + "kind": "StringLiteral", + "offset": 731, + "length": 29, + "value": "\"-----BEGIN CERTIFICATE-----\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/AuthenticationTokenFactory.swift", + "kind": "StringLiteral", + "offset": 784, + "length": 27, + "value": "\"-----END CERTIFICATE-----\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1180, + "length": 2, + "value": "72" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1231, + "length": 2, + "value": "43" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1238, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 964, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 8, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 964, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 8, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginCodeInfo.swift", + "kind": "IntegerLiteral", + "offset": 850, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginCodeInfo.swift", + "kind": "StringLiteral", + "offset": 410, + "length": 19, + "value": "\"FBSDKLoginKit.DeviceLoginCodeInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "Dictionary", + "offset": 692, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 1994, + "length": 7, + "value": "1349172" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 7, + "value": "1349173" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 7, + "value": "1349174" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2268, + "length": 7, + "value": "1349152" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 1994, + "length": 7, + "value": "1349172" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 7, + "value": "1349173" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 7, + "value": "1349174" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2268, + "length": 7, + "value": "1349152" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManager.swift", + "kind": "BooleanLiteral", + "offset": 1341, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManager.swift", + "kind": "StringLiteral", + "offset": 803, + "length": 18, + "value": "\"FBSDKLoginKit.DeviceLoginManager\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManagerResult.swift", + "kind": "StringLiteral", + "offset": 411, + "length": 24, + "value": "\"FBSDKLoginKit.DeviceLoginManagerResult\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 908, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 946, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1018, + "length": 7, + "value": "\"fbsdk\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1051, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1171, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1182, + "length": 3, + "value": "\"|\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "IntegerLiteral", + "offset": 1227, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1370, + "length": 5, + "value": "\"dev\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1450, + "length": 11, + "value": "\"_fb._tcp.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "Array", + "offset": 1814, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "BooleanLiteral", + "offset": 3428, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4249, + "length": 12, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4418, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4249, + "length": 12, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4418, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4487, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4524, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4558, + "length": 4, + "value": "28.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4592, + "length": 3, + "value": "8.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4637, + "length": 3, + "value": "8.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 1202, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/FBPermission.swift", + "kind": "StringLiteral", + "offset": 456, + "length": 12, + "value": "\"FBSDKLoginKit.FBPermission\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 752, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 752, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1041, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1041, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1137, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1181, + "length": 5, + "value": "0.001" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1226, + "length": 3, + "value": "1.1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1273, + "length": 4, + "value": "0.98" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1319, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1364, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1425, + "length": 2, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1471, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1519, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1602, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1650, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1731, + "length": 4, + "value": "0x6e" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1738, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1752, + "length": 4, + "value": "0x9c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1759, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1772, + "length": 4, + "value": "0xf5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1779, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1793, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 4, + "value": "0x49" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1833, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1847, + "length": 4, + "value": "0x74" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1854, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1867, + "length": 4, + "value": "0xc6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1874, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1888, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1970, + "length": 4, + "value": "0x51" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1977, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1991, + "length": 4, + "value": "0x50" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1998, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2011, + "length": 4, + "value": "0x4f" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2018, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2032, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2065, + "length": 4, + "value": "0x2d" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2072, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2086, + "length": 4, + "value": "0x2c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2093, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2106, + "length": 4, + "value": "0x2c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2113, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2127, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2425, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 3318, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 3560, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 3936, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 3970, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4074, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4113, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4158, + "length": 3, + "value": "185" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4206, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 4253, + "length": 4, + "value": "2.5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "Array", + "offset": 4300, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "StringLiteral", + "offset": 489, + "length": 13, + "value": "\"FBSDKLoginKit.FBTooltipView\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 307, + "length": 25, + "value": "\"fb_login_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 413, + "length": 24, + "value": "\"fb_smart_login_service\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 605, + "length": 23, + "value": "\"fb_mobile_login_start\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 762, + "length": 26, + "value": "\"fb_mobile_login_complete\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 924, + "length": 30, + "value": "\"fb_mobile_login_method_start\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 1090, + "length": 33, + "value": "\"fb_mobile_login_method_complete\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 1259, + "length": 27, + "value": "\"fb_mobile_login_heartbeat\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginConfiguration.swift", + "kind": "Array", + "offset": 9284, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginConfiguration.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 18, + "value": "\"FBSDKLoginKit.LoginConfiguration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "Dictionary", + "offset": 679, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2931, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2983, + "length": 7, + "value": "301" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3059, + "length": 15, + "value": "302" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3165, + "length": 16, + "value": "303" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3272, + "length": 12, + "value": "304" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3367, + "length": 15, + "value": "305" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3579, + "length": 24, + "value": "306" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 24, + "value": "307" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 18, + "value": "308" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3857, + "length": 14, + "value": "309" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3939, + "length": 18, + "value": "310" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2931, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2983, + "length": 7, + "value": "301" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3059, + "length": 15, + "value": "302" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3165, + "length": 16, + "value": "303" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3272, + "length": 12, + "value": "304" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3367, + "length": 15, + "value": "305" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3579, + "length": 24, + "value": "306" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 24, + "value": "307" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 18, + "value": "308" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3857, + "length": 14, + "value": "309" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3939, + "length": 18, + "value": "310" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "BooleanLiteral", + "offset": 1430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1561, + "length": 26, + "value": "\"expected_login_challenge\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1619, + "length": 22, + "value": "\"expected_login_nonce\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1680, + "length": 30, + "value": "\"expected_login_code_verifier\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "IntegerLiteral", + "offset": 1771, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1808, + "length": 15, + "value": "\"\/dialog\/oauth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1900, + "length": 41, + "value": "\"com.apple.SafariServices.Authentication\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1982, + "length": 59, + "value": "\"com.apple.AuthenticationServices.WebAuthenticationSession\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2245, + "length": 14, + "value": "\"browser_auth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2298, + "length": 11, + "value": "\"sfvc_auth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2562, + "length": 82, + "value": "\"Unable to find main bundle identifier. Cannot create keychain service identifier\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2734, + "length": 51, + "value": "\"com.facebook.sdk.loginmanager.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2784, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 481, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 520, + "length": 31, + "value": "\"com.facebook.sdk_client_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 646, + "length": 18, + "value": "\"0_auth_logger_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 717, + "length": 16, + "value": "\"1_timestamp_ms\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 10, + "value": "\"2_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 10, + "value": "\"3_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 910, + "length": 14, + "value": "\"4_error_code\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 980, + "length": 17, + "value": "\"5_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1047, + "length": 10, + "value": "\"6_extras\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1113, + "length": 17, + "value": "\"7_logging_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1193, + "length": 22, + "value": "\"declined_permissions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1288, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1339, + "length": 21, + "value": "\"inner_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1404, + "length": 52, + "value": "\"com.facebook.sdk:FBSDKErrorLocalizedDescriptionKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 58, + "value": "\"com.facebook.sdk:FBSDKGraphRequestErrorGraphErrorCodeKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1614, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1655, + "length": 24, + "value": "\"com.facebook.sdk.login\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1614, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1655, + "length": 24, + "value": "\"com.facebook.sdk.login\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1758, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1758, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManagerLoginResult.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 23, + "value": "\"FBSDKLoginKit.LoginManagerLoginResult\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginTracking.swift", + "kind": "IntegerLiteral", + "offset": 506, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginTracking.swift", + "kind": "IntegerLiteral", + "offset": 506, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/MonotonicTimer.swift", + "kind": "IntegerLiteral", + "offset": 387, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/MonotonicTimer.swift", + "kind": "StringLiteral", + "offset": 413, + "length": 57, + "value": "\"Unable to get timebase information for monotomic timing\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface new file mode 100644 index 00000000..861beedc --- /dev/null +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface @@ -0,0 +1,390 @@ +// 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-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import FBSDKCoreKit +import FBSDKCoreKit_Basics +@_exported import FBSDKLoginKit +import Foundation +import Security +import Swift +import UIKit +import _Concurrency +import _StringProcessing +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKCodeVerifier) final public class CodeVerifier : ObjectiveC.NSObject { + @objc final public let value: Swift.String + @objc final public var challenge: Swift.String { + @objc get + } + @objc(initWithString:) convenience public init?(string: Swift.String) + @objc override convenience dynamic public init() + @objc deinit +} +@objc(FBSDKDefaultAudience) public enum DefaultAudience : Swift.UInt { + case friends + case onlyMe + case everyone + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } +} +@objcMembers @objc(FBSDKDeviceLoginCodeInfo) final public class DeviceLoginCodeInfo : ObjectiveC.NSObject { + @objc final public let identifier: Swift.String + @objc final public let loginCode: Swift.String + @objc final public let verificationURL: Foundation.URL + @objc final public let expirationDate: Foundation.Date + @objc final public let pollingInterval: Swift.UInt + @objc public init(identifier: Swift.String, loginCode: Swift.String, verificationURL: Foundation.URL, expirationDate: Foundation.Date, pollingInterval: Swift.UInt) + @objc deinit +} +public struct DeviceLoginError : Foundation.CustomNSError, Swift.Hashable { + public let errorCode: Swift.Int + public let errorUserInfo: [Swift.String : Any] + public init(_nsError nsError: Foundation.NSError) + public init(_ code: FBSDKLoginKit.DeviceLoginError.Code, userInfo: [Swift.String : Any] = [:]) + public static var errorDomain: Swift.String { + get + } + public typealias Code = FBSDKLoginKit.DeviceLoginErrorCode + public static var excessivePolling: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var authorizationDeclined: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var authorizationPending: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var codeExpired: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static func == (lhs: FBSDKLoginKit.DeviceLoginError, rhs: FBSDKLoginKit.DeviceLoginError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc(FBSDKDeviceLoginError) public enum DeviceLoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { + public typealias _ErrorType = FBSDKLoginKit.DeviceLoginError + case excessivePolling = 1349172 + case authorizationDeclined = 1349173 + case authorizationPending = 1349174 + case codeExpired = 1349152 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@objcMembers @objc(FBSDKDeviceLoginManager) final public class DeviceLoginManager : ObjectiveC.NSObject { + @objc weak final public var delegate: FBSDKLoginKit.DeviceLoginManagerDelegate? + @objc final public let permissions: [Swift.String] + @objc final public var redirectURL: Foundation.URL? + @objc(initWithPermissions:enableSmartLogin:) public init(permissions: [Swift.String], enableSmartLogin: Swift.Bool) + @objc final public func start() + @objc final public func cancel() + @objc deinit +} +extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { + @objc final public func netService(_ service: Foundation.NetService, didNotPublish errorValues: [Swift.String : Foundation.NSNumber]) +} +@objc(FBSDKDeviceLoginManagerDelegate) public protocol DeviceLoginManagerDelegate { + @objc(deviceLoginManager:startedWithCodeInfo:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, startedWith codeInfo: FBSDKLoginKit.DeviceLoginCodeInfo) + @objc(deviceLoginManager:completedWithResult:error:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, completedWith result: FBSDKLoginKit.DeviceLoginManagerResult?, error: Swift.Error?) +} +@objcMembers @objc(FBSDKDeviceLoginManagerResult) final public class DeviceLoginManagerResult : ObjectiveC.NSObject { + @objc final public var accessToken: FBSDKCoreKit.AccessToken? { + get + } + @objc final public var isCancelled: Swift.Bool { + get + } + @objc public init(token: FBSDKCoreKit.AccessToken?, isCancelled cancelled: Swift.Bool) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKLoginButton) @_Concurrency.MainActor(unsafe) final public class FBLoginButton : FBSDKCoreKit.FBButton { + @objc @_Concurrency.MainActor(unsafe) final public var defaultAudience: FBSDKLoginKit.DefaultAudience { + @objc get + @objc set + } + @objc @IBOutlet @_Concurrency.MainActor(unsafe) weak final public var delegate: FBSDKLoginKit.LoginButtonDelegate? + @objc @_Concurrency.MainActor(unsafe) final public var permissions: [Swift.String] + @objc @_Concurrency.MainActor(unsafe) final public var tooltipBehavior: FBSDKLoginKit.FBLoginButton.TooltipBehavior + @objc @_Concurrency.MainActor(unsafe) final public var tooltipColorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle + @objc @_Concurrency.MainActor(unsafe) final public var loginTracking: FBSDKLoginKit.LoginTracking + @objc @_Concurrency.MainActor(unsafe) final public var nonce: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var messengerPageId: Swift.String? + @objc @_Concurrency.MainActor(unsafe) final public var authType: FBSDKLoginKit.LoginAuthType? + @objc @_Concurrency.MainActor(unsafe) final public var codeVerifier: FBSDKLoginKit.CodeVerifier + @objc(FBSDKLoginButtonTooltipBehavior) public enum TooltipBehavior : Swift.UInt { + case automatic = 0 + case forceDisplay + case disable + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override final public func didMoveToWindow() + @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func layoutSubviews() + @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreFoundation.CGSize) -> CoreFoundation.CGSize + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(FBSDKLoginTooltipView) @_Concurrency.MainActor(unsafe) final public class FBLoginTooltipView : FBSDKLoginKit.FBTooltipView { + @objc @_Concurrency.MainActor(unsafe) weak final public var delegate: FBSDKLoginKit.LoginTooltipViewDelegate? + @objc @_Concurrency.MainActor(unsafe) final public var forceDisplay: Swift.Bool + @objc @_Concurrency.MainActor(unsafe) final public var shouldForceDisplay: Swift.Bool { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc convenience dynamic public init() + @objc(initWithTagline:message:colorStyle:) @_Concurrency.MainActor(unsafe) override public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) + @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc deinit +} +@objcMembers @objc(FBSDKPermission) final public class FBPermission : ObjectiveC.NSObject { + @objc override final public var description: Swift.String { + @objc get + } + @objc override final public var hash: Swift.Int { + @objc get + } + @objc public init?(string: Swift.String) + @objc(permissionsFromRawPermissions:) public static func permissions(fromRawPermissions rawPermissions: Swift.Set) -> Swift.Set? + @objc(rawPermissionsFromPermissions:) public static func rawPermissions(from permissions: Swift.Set) -> Swift.Set + @objc override final public func isEqual(_ object: Any?) -> Swift.Bool + @objc deinit +} +@objc(FBSDKTooltipView) @_Concurrency.MainActor(unsafe) open class FBTooltipView : UIKit.UIView { + @objc(FBSDKTooltipViewArrowDirection) @frozen public enum ArrowDirection : Swift.UInt { + case down = 0 + case up = 1 + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc(FBSDKTooltipColorStyle) @frozen public enum ColorStyle : Swift.UInt { + case friendlyBlue = 0 + case neutralGray = 1 + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc @_Concurrency.MainActor(unsafe) public var displayDuration: Swift.Double + @objc @_Concurrency.MainActor(unsafe) public var colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public var message: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public var tagline: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) + @available(*, unavailable) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit + @objc(presentFromView:) @_Concurrency.MainActor(unsafe) public func present(from anchorView: UIKit.UIView) + @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc @_Concurrency.MainActor(unsafe) public func dismiss() + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() +} +@objc(FBSDKLoginButtonDelegate) public protocol LoginButtonDelegate : ObjectiveC.NSObjectProtocol { + @objc(loginButton:didCompleteWithResult:error:) func loginButton(_ loginButton: FBSDKLoginKit.FBLoginButton, didCompleteWith result: FBSDKLoginKit.LoginManagerLoginResult?, error: Swift.Error?) + @objc func loginButtonDidLogOut(_ loginButton: FBSDKLoginKit.FBLoginButton) + @objc optional func loginButtonWillLogin(_ loginButton: FBSDKLoginKit.FBLoginButton) -> Swift.Bool +} +@objcMembers @objc(FBSDKLoginConfiguration) final public class LoginConfiguration : ObjectiveC.NSObject { + @objc final public let nonce: Swift.String + @objc final public let tracking: FBSDKLoginKit.LoginTracking + @objc final public let requestedPermissions: Swift.Set + @objc final public let messengerPageId: Swift.String? + @objc final public let authType: FBSDKLoginKit.LoginAuthType? + @objc final public let codeVerifier: FBSDKLoginKit.CodeVerifier + @objc(initWithPermissions:tracking:nonce:messengerPageId:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?) + @objc(initWithPermissions:tracking:nonce:messengerPageId:authType:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?) + @objc(initWithPermissions:tracking:nonce:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String) + @objc(initWithPermissions:tracking:messengerPageId:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, messengerPageId: Swift.String?) + @objc(initWithPermissions:tracking:messengerPageId:authType:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?) + @objc(initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:) public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?, codeVerifier: FBSDKLoginKit.CodeVerifier) + @objc(initWithPermissions:tracking:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking) + @objc(initWithTracking:) convenience public init?(tracking: FBSDKLoginKit.LoginTracking) + convenience public init?(permissions: Swift.Set = [], tracking: FBSDKLoginKit.LoginTracking = .enabled, nonce: Swift.String = UUID().uuidString, messengerPageId: Swift.String? = nil, authType: FBSDKLoginKit.LoginAuthType? = .rerequest, codeVerifier: FBSDKLoginKit.CodeVerifier = CodeVerifier()) + @objc deinit +} +public struct LoginError : Foundation.CustomNSError, Swift.Hashable { + public let errorCode: Swift.Int + public let errorUserInfo: [Swift.String : Any] + public init(_nsError nsError: Foundation.NSError) + public init(_ code: FBSDKLoginKit.LoginError.Code, userInfo: [Swift.String : Any] = [:]) + public static var errorDomain: Swift.String { + get + } + public typealias Code = FBSDKLoginKit.LoginErrorCode + public static var reserved: FBSDKLoginKit.LoginError.Code { + get + } + public static var unknown: FBSDKLoginKit.LoginError.Code { + get + } + public static var passwordChanged: FBSDKLoginKit.LoginError.Code { + get + } + public static var userCheckpointed: FBSDKLoginKit.LoginError.Code { + get + } + public static var userMismatch: FBSDKLoginKit.LoginError.Code { + get + } + public static var unconfirmedUser: FBSDKLoginKit.LoginError.Code { + get + } + public static var systemAccountAppDisabled: FBSDKLoginKit.LoginError.Code { + get + } + public static var systemAccountUnavailable: FBSDKLoginKit.LoginError.Code { + get + } + public static var badChallengeString: FBSDKLoginKit.LoginError.Code { + get + } + public static var invalidIDToken: FBSDKLoginKit.LoginError.Code { + get + } + public static var missingAccessToken: FBSDKLoginKit.LoginError.Code { + get + } + public static func == (lhs: FBSDKLoginKit.LoginError, rhs: FBSDKLoginKit.LoginError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc(FBSDKLoginError) public enum LoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { + public typealias _ErrorType = FBSDKLoginKit.LoginError + case reserved = 300 + case unknown + case passwordChanged + case userCheckpointed + case userMismatch + case unconfirmedUser + case systemAccountAppDisabled + case systemAccountUnavailable + case badChallengeString + case invalidIDToken + case missingAccessToken + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public let LoginErrorDomain: Swift.String +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLoginManager) final public class LoginManager : ObjectiveC.NSObject { + @objc final public var defaultAudience: FBSDKLoginKit.DefaultAudience + @objc convenience public init(defaultAudience: FBSDKLoginKit.DefaultAudience = .friends) + @available(swift, obsoleted: 0.1) + @objc(logInFromViewController:configuration:completion:) final public func logIn(from viewController: UIKit.UIViewController?, configuration: FBSDKLoginKit.LoginConfiguration?, completion: @escaping FBSDKLoginKit.LoginManagerLoginResultBlock) + @nonobjc final public func logIn(viewController: UIKit.UIViewController? = nil, configuration: FBSDKLoginKit.LoginConfiguration?, completion: @escaping FBSDKLoginKit.LoginResultBlock) + @objc(logInWithPermissions:fromViewController:handler:) final public func logIn(permissions: [Swift.String], from viewController: UIKit.UIViewController?, handler: FBSDKLoginKit.LoginManagerLoginResultBlock?) + @objc(reauthorizeDataAccess:handler:) final public func reauthorizeDataAccess(from viewController: UIKit.UIViewController, handler: @escaping FBSDKLoginKit.LoginManagerLoginResultBlock) + @objc(logOut) final public func logOut() + @objc override dynamic public init() + @objc deinit +} +extension FBSDKLoginKit.LoginManager : FBSDKCoreKit.URLOpening { + @objc public static func makeOpener() -> FBSDKLoginKit.LoginManager + @objc final public func application(_ application: UIKit.UIApplication?, open url: Foundation.URL?, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func canOpen(_ url: Foundation.URL, for application: UIKit.UIApplication?, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func applicationDidBecomeActive(_ application: UIKit.UIApplication) + @objc final public func isAuthenticationURL(_ url: Foundation.URL) -> Swift.Bool + @objc final public func shouldStopPropagation(of url: Foundation.URL) -> Swift.Bool +} +@objcMembers @objc(FBSDKLoginManagerLoginResult) final public class LoginManagerLoginResult : ObjectiveC.NSObject { + @objc final public let token: FBSDKCoreKit.AccessToken? + @objc final public let authenticationToken: FBSDKCoreKit.AuthenticationToken? + @objc final public let isCancelled: Swift.Bool + @objc final public let grantedPermissions: Swift.Set + @objc final public let declinedPermissions: Swift.Set + @objc(initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:) public init(token: FBSDKCoreKit.AccessToken?, authenticationToken: FBSDKCoreKit.AuthenticationToken?, isCancelled: Swift.Bool, grantedPermissions: Swift.Set, declinedPermissions: Swift.Set) + @objc deinit +} +public typealias LoginResultBlock = (FBSDKLoginKit.LoginResult) -> Swift.Void +@frozen public enum LoginResult { + case success(granted: Swift.Set, declined: Swift.Set, token: FBSDKCoreKit.AccessToken?) + case cancelled + case failed(Swift.Error) +} +@objc(FBSDKLoginTooltipViewDelegate) public protocol LoginTooltipViewDelegate { + @objc(loginTooltipView:shouldAppear:) optional func loginTooltipView(_ view: FBSDKLoginKit.FBLoginTooltipView, shouldAppear appIsEligible: Swift.Bool) -> Swift.Bool + @objc(loginTooltipViewWillAppear:) optional func loginTooltipViewWillAppear(_ view: FBSDKLoginKit.FBLoginTooltipView) + @objc(loginTooltipViewWillNotAppear:) optional func loginTooltipViewWillNotAppear(_ view: FBSDKLoginKit.FBLoginTooltipView) +} +@objc(FBSDKLoginTracking) public enum LoginTracking : Swift.UInt { + case enabled + case limited + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLoginCompletionParameters) final public class _LoginCompletionParameters : ObjectiveC.NSObject { + @objc final public var authenticationToken: FBSDKCoreKit.AuthenticationToken? + @objc final public var profile: FBSDKCoreKit.Profile? + @objc final public var accessTokenString: Swift.String? + @objc final public var nonceString: Swift.String? + @objc final public var authenticationTokenString: Swift.String? + @objc final public var code: Swift.String? + @objc final public var permissions: Swift.Set? + @objc final public var declinedPermissions: Swift.Set? + @objc final public var expiredPermissions: Swift.Set? + @objc final public var appID: Swift.String? + @objc final public var userID: Swift.String? + @objc final public var error: Swift.Error? + @objc final public var expirationDate: Foundation.Date? + @objc final public var dataAccessExpirationDate: Foundation.Date? + @objc final public var challenge: Swift.String? + @objc final public var graphDomain: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKLoginKit.DefaultAudience : Swift.Equatable {} +extension FBSDKLoginKit.DefaultAudience : Swift.Hashable {} +extension FBSDKLoginKit.DefaultAudience : Swift.RawRepresentable {} +extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.Hashable {} +extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.Equatable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.Hashable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Equatable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Hashable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Sendable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Equatable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Hashable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Sendable {} +extension FBSDKLoginKit.LoginErrorCode : Swift.Hashable {} +extension FBSDKLoginKit.LoginErrorCode : Swift.RawRepresentable {} +extension FBSDKLoginKit.LoginTracking : Swift.Equatable {} +extension FBSDKLoginKit.LoginTracking : Swift.Hashable {} +extension FBSDKLoginKit.LoginTracking : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc similarity index 99% rename from ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc rename to ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc index 97766279..f5c7e801 100644 Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface similarity index 96% rename from ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface rename to ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface index f3a6d514..861beedc 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import CommonCrypto import FBSDKCoreKit import FBSDKCoreKit_Basics @@ -10,6 +11,7 @@ import Security import Swift import UIKit import _Concurrency +import _StringProcessing @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKCodeVerifier) final public class CodeVerifier : ObjectiveC.NSObject { @objc final public let value: Swift.String @objc final public var challenge: Swift.String { @@ -130,12 +132,12 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { get } } - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override final public func didMoveToWindow() - @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreGraphics.CGRect) -> CoreGraphics.CGRect - @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreGraphics.CGRect) -> CoreGraphics.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect @_Concurrency.MainActor(unsafe) @objc override final public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreGraphics.CGSize) -> CoreGraphics.CGSize + @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreFoundation.CGSize) -> CoreFoundation.CGSize @objc deinit } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(FBSDKLoginTooltipView) @_Concurrency.MainActor(unsafe) final public class FBLoginTooltipView : FBSDKLoginKit.FBTooltipView { @@ -145,9 +147,9 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { @objc get @objc set } - @objc convenience dynamic public init() + @_Concurrency.MainActor(unsafe) @objc convenience dynamic public init() @objc(initWithTagline:message:colorStyle:) @_Concurrency.MainActor(unsafe) override public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) - @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreGraphics.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) @objc deinit } @objcMembers @objc(FBSDKPermission) final public class FBPermission : ObjectiveC.NSObject { @@ -200,9 +202,9 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit @objc(presentFromView:) @_Concurrency.MainActor(unsafe) public func present(from anchorView: UIKit.UIView) - @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreGraphics.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) @objc @_Concurrency.MainActor(unsafe) public func dismiss() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() } @objc(FBSDKLoginButtonDelegate) public protocol LoginButtonDelegate : ObjectiveC.NSObjectProtocol { diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.abi.json b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.abi.json new file mode 100644 index 00000000..083190a3 --- /dev/null +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.abi.json @@ -0,0 +1,28830 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenCreating", + "printedName": "AuthenticationTokenCreating", + "children": [ + { + "kind": "Function", + "name": "createToken", + "printedName": "createToken(tokenString:nonce:graphDomain:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationToken?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.AuthenticationTokenCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenFactory", + "printedName": "AuthenticationTokenFactory", + "children": [ + { + "kind": "Var", + "name": "beginCertificate", + "printedName": "beginCertificate", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endCertificate", + "printedName": "endCertificate", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionProvider", + "printedName": "sessionProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvs", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvM", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "certificateEndpoint", + "printedName": "certificateEndpoint", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sessionProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenFactory", + "printedName": "FBSDKLoginKit.AuthenticationTokenFactory", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderACSo24FBSDKURLSessionProviding_p_tcfc", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderACSo24FBSDKURLSessionProviding_p_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "createToken", + "printedName": "createToken(tokenString:nonce:graphDomain:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationToken?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "verifySignature", + "printedName": "verifySignature(_:header:claims:certificateKey:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "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": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15verifySignature_6header6claims14certificateKey10completionySS_S3SySbctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15verifySignature_6header6claims14certificateKey10completionySS_S3SySbctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyWith", + "printedName": "getPublicKeyWith(certificateKey:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Security.SecKey?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Security.SecKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecKey", + "printedName": "Security.SecKey", + "usr": "c:@T@SecKeyRef" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC16getPublicKeyWith011certificateH010completionySS_ySo03SecH3RefaSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16getPublicKeyWith011certificateH010completionySS_ySo03SecH3RefaSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCertificateWith", + "printedName": "getCertificateWith(certificateKey:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Security.SecCertificate?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Security.SecCertificate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecCertificate", + "printedName": "Security.SecCertificate", + "usr": "c:@T@SecCertificateRef" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC18getCertificateWith14certificateKey10completionySS_ySo03SecG3RefaSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC18getCertificateWith14certificateKey10completionySS_ySo03SecG3RefaSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenFactory", + "printedName": "FBSDKLoginKit.AuthenticationTokenFactory", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryCACycfc", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryCACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AuthenticationTokenCreating", + "printedName": "AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenHeader", + "printedName": "AuthenticationTokenHeader", + "children": [ + { + "kind": "Var", + "name": "kid", + "printedName": "kid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvp", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvg", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromEncodedString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.AuthenticationTokenHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenHeader", + "printedName": "FBSDKLoginKit.AuthenticationTokenHeader", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC17fromEncodedStringACSgSS_tcfc", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC17fromEncodedStringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "CodeVerifier", + "printedName": "CodeVerifier", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(py)value", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC5valueSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)value", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC5valueSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "challenge", + "printedName": "challenge", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(py)challenge", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC9challengeSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)challenge", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC9challengeSSvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.CodeVerifier?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)initWithString:", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC6stringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithString:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)init", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKCodeVerifier", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultAudience", + "printedName": "DefaultAudience", + "children": [ + { + "kind": "Var", + "name": "friends", + "printedName": "friends", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceFriends", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO7friendsyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "onlyMe", + "printedName": "onlyMe", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceOnlyMe", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO6onlyMeyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "everyone", + "printedName": "everyone", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceEveryone", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8everyoneyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DefaultAudience?", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit15DefaultAudienceO8rawValueACSgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueACSgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit15DefaultAudienceO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DefaultAudienceO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDefaultAudience", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "AssociatedType", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP0E12DependenciesQa", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP0E12DependenciesQa", + "moduleName": "FBSDKLoginKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKLoginKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginCodeInfo", + "printedName": "DeviceLoginCodeInfo", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)identifier", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifierSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)identifier", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifierSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loginCode", + "printedName": "loginCode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)loginCode", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC05loginE0SSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)loginCode", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC05loginE0SSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "verificationURL", + "printedName": "verificationURL", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)verificationURL", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15verificationURL10Foundation0H0Vvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)verificationURL", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15verificationURL10Foundation0H0Vvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "expirationDate", + "printedName": "expirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)expirationDate", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC14expirationDate10Foundation0H0Vvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)expirationDate", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC14expirationDate10Foundation0H0Vvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pollingInterval", + "printedName": "pollingInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)pollingInterval", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15pollingIntervalSuvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)pollingInterval", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15pollingIntervalSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(identifier:loginCode:verificationURL:expirationDate:pollingInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)initWithIdentifier:loginCode:verificationURL:expirationDate:pollingInterval:", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifier05loginE015verificationURL14expirationDate15pollingIntervalACSS_SS10Foundation0J0VAI0L0VSutcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)init", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginCodeInfo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginError", + "printedName": "DeviceLoginError", + "children": [ + { + "kind": "Var", + "name": "_nsError", + "printedName": "_nsError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorCode", + "printedName": "errorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "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:13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorUserInfo", + "printedName": "errorUserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_nsError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0ACSo7NSErrorC_tcfc", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0ACSo7NSErrorC_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV_8userInfoAcA0cdE4CodeO_SDySSypGtcfc", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV_8userInfoAcA0cdE4CodeO_SDySSypGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDomain", + "printedName": "errorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "excessivePolling", + "printedName": "excessivePolling", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authorizationDeclined", + "printedName": "authorizationDeclined", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authorizationPending", + "printedName": "authorizationPending", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codeExpired", + "printedName": "codeExpired", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "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:13FBSDKLoginKit16DeviceLoginErrorV4hash4intoys6HasherVz_tF", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginErrorCode", + "printedName": "DeviceLoginErrorCode", + "children": [ + { + "kind": "Var", + "name": "excessivePolling", + "printedName": "excessivePolling", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorExcessivePolling", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO16excessivePollingyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "authorizationDeclined", + "printedName": "authorizationDeclined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorAuthorizationDeclined", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO21authorizationDeclinedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "authorizationPending", + "printedName": "authorizationPending", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorAuthorizationPending", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO20authorizationPendingyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "codeExpired", + "printedName": "codeExpired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorCodeExpired", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO11codeExpiredyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginManager", + "printedName": "DeviceLoginManager", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)delegate", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerDelegate", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)delegate", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerDelegate", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)permissions", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissionsSaySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)permissions", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissionsSaySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redirectURL", + "printedName": "redirectURL", + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)redirectURL", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)redirectURL", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setRedirectURL:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codeInfo", + "printedName": "codeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)codeInfo", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)codeInfo", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setCodeInfo:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:enableSmartLogin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)initWithPermissions:enableSmartLogin:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissions011enableSmartD0ACSaySSG_Sbtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:enableSmartLogin:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)start", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC5startyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)cancel", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC6cancelyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notifyDelegate", + "printedName": "notifyDelegate(token:expirationDate:dataAccessExpirationDate:)", + "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": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)notifyDelegateWithToken:expirationDate:dataAccessExpirationDate:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC14notifyDelegate5token14expirationDate020dataAccessExpirationJ0ySSSg_10Foundation0J0VSgALtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processError", + "printedName": "processError(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)processError:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC12processErroryys0G0_pF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "schedulePoll", + "printedName": "schedulePoll(interval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)schedulePollWithInterval:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC12schedulePoll8intervalySu_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)init", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "netService", + "printedName": "netService(_:didNotPublish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetService", + "printedName": "Foundation.NetService", + "usr": "c:objc(cs)NSNetService" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)netService:didNotPublish:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC10netService_13didNotPublishySo05NSNetG0C_SDySSSo8NSNumberCGtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "netService:didNotPublish:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "devicePoller", + "printedName": "devicePoller", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(devicePoller:errorFactory:graphRequestFactory:internalUtility:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePoller12errorFactory012graphRequestK015internalUtility8settingsAeA0C7Polling_p_So18FBSDKErrorCreating_pSo010FBSDKGraphmK0_pSo013FBSDKInternalO0_p09FBSDKCoreB016SettingsProtocol_ptcfc", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePoller12errorFactory012graphRequestK015internalUtility8settingsAeA0C7Polling_p_So18FBSDKErrorCreating_pSo010FBSDKGraphmK0_pSo013FBSDKInternalO0_p09FBSDKCoreB016SettingsProtocol_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP" + }, + { + "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": "DeviceLoginManagerDelegate", + "printedName": "DeviceLoginManagerDelegate", + "children": [ + { + "kind": "Function", + "name": "deviceLoginManager", + "printedName": "deviceLoginManager(_:startedWith:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate(im)deviceLoginManager:startedWithCodeInfo:", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP06devicedE0_11startedWithyAA0cdE0C_AA0cD8CodeInfoCtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DeviceLoginManagerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "deviceLoginManager:startedWithCodeInfo:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deviceLoginManager", + "printedName": "deviceLoginManager(_:completedWith:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate(im)deviceLoginManager:completedWithResult:error:", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP06devicedE0_13completedWith5erroryAA0cdE0C_AA0cdE6ResultCSgs5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DeviceLoginManagerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "deviceLoginManager:completedWithResult:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKDeviceLoginManagerDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginManagerResult", + "printedName": "DeviceLoginManagerResult", + "children": [ + { + "kind": "Var", + "name": "accessToken", + "printedName": "accessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(py)accessToken", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11accessTokenSo011FBSDKAccessH0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)accessToken", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11accessTokenSo011FBSDKAccessH0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCancelled", + "printedName": "isCancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(py)isCancelled", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11isCancelledSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)isCancelled", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11isCancelledSbvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(token:isCancelled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)initWithToken:isCancelled:", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC5token11isCancelledACSo16FBSDKAccessTokenCSg_Sbtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)init", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginManagerResult", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "DevicePoller", + "printedName": "DevicePoller", + "children": [ + { + "kind": "Function", + "name": "schedule", + "printedName": "schedule(interval:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12DevicePollerV8schedule8interval5blockySu_yyctF", + "mangledName": "$s13FBSDKLoginKit12DevicePollerV8schedule8interval5blockySu_yyctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePoller", + "printedName": "FBSDKLoginKit.DevicePoller", + "usr": "s:13FBSDKLoginKit12DevicePollerV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit12DevicePollerVACycfc", + "mangledName": "$s13FBSDKLoginKit12DevicePollerVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit12DevicePollerV", + "mangledName": "$s13FBSDKLoginKit12DevicePollerV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DevicePolling", + "printedName": "DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DevicePolling", + "printedName": "DevicePolling", + "children": [ + { + "kind": "Function", + "name": "schedule", + "printedName": "schedule(interval:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit13DevicePollingP8schedule8interval5blockySu_yyctF", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP8schedule8interval5blockySu_yyctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DevicePolling>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit13DevicePollingP", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceRequestsHelper", + "printedName": "DeviceRequestsHelper", + "children": [ + { + "kind": "Var", + "name": "mdnsAdvertisementServices", + "printedName": "mdnsAdvertisementServices", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvpZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvgZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getDeviceInfo", + "printedName": "getDeviceInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO03getC4InfoSSyFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO03getC4InfoSSyFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startAdvertisementService", + "printedName": "startAdvertisementService(loginCode:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25startAdvertisementService9loginCode8delegateSbSS_So05NSNetH8Delegate_ptFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25startAdvertisementService9loginCode8delegateSbSS_So05NSNetH8Delegate_ptFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isDelegate", + "printedName": "isDelegate(_:forAdvertisementService:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "NetService", + "printedName": "Foundation.NetService", + "usr": "c:objc(cs)NSNetService" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO10isDelegate_23forAdvertisementServiceSbSo05NSNetjG0_p_So0kJ0CtFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO10isDelegate_23forAdvertisementServiceSbSo05NSNetjG0_p_So0kJ0CtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cleanUpAdvertisementService", + "printedName": "cleanUpAdvertisementService(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO27cleanUpAdvertisementService3forySo05NSNetI8Delegate_p_tFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO27cleanUpAdvertisementService3forySo05NSNetI8Delegate_p_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBLoginButton", + "printedName": "FBLoginButton", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)defaultAudience", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)defaultAudience", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)delegate", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "IBOutlet", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginButtonDelegate", + "printedName": "FBSDKLoginKit.LoginButtonDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)delegate", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginButtonDelegate", + "printedName": "FBSDKLoginKit.LoginButtonDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)permissions", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)permissions", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setPermissions:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tooltipBehavior", + "printedName": "tooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)tooltipBehavior", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)tooltipBehavior", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setTooltipBehavior:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tooltipColorStyle", + "printedName": "tooltipColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)tooltipColorStyle", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)tooltipColorStyle", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setTooltipColorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginTracking", + "printedName": "loginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)loginTracking", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)loginTracking", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setLoginTracking:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)nonce", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)nonce", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setNonce:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "messengerPageId", + "printedName": "messengerPageId", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)messengerPageId", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)messengerPageId", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setMessengerPageId:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authType", + "printedName": "authType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)authType", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)authType", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setAuthType:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codeVerifier", + "printedName": "codeVerifier", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)codeVerifier", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)codeVerifier", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setCodeVerifier:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0CvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0CvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)userID", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)userID", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setUserID:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userName", + "printedName": "userName", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)userName", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)userName", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setUserName:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "elementProvider", + "printedName": "elementProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginProvider", + "printedName": "loginProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)graphRequestFactory", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)graphRequestFactory", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setGraphRequestFactory:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAuthenticated", + "printedName": "isAuthenticated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)isAuthenticated", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15isAuthenticatedSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)isAuthenticated", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15isAuthenticatedSbvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TooltipBehavior", + "printedName": "TooltipBehavior", + "children": [ + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO9automaticyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO9automaticyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "forceDisplay", + "printedName": "forceDisplay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO12forceDisplayyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO12forceDisplayyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "disable", + "printedName": "disable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO7disableyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO7disableyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior?", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginButtonTooltipBehavior", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initWithFrame:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBLoginButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initWithCoder:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:elementProvider:stringProvider:loginProvider:graphRequestFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5frame15elementProvider06stringG005loginG019graphRequestFactoryACSo6CGRectV_AA29UserInterfaceElementProviding_pAA0no6StringQ0_pAA05LoginQ0_pSo010FBSDKGraphkL0_ptcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frame15elementProvider06stringG005loginG019graphRequestFactoryACSo6CGRectV_AA29UserInterfaceElementProviding_pAA0no6StringQ0_pAA05LoginQ0_pSo010FBSDKGraphkL0_ptcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:permissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.Permission]", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5frame11permissionsACSo6CGRectV_Say09FBSDKCoreB010PermissionOGtcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frame11permissionsACSo6CGRectV_Say09FBSDKCoreB010PermissionOGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "didMoveToWindow", + "printedName": "didMoveToWindow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)didMoveToWindow", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15didMoveToWindowyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "didMoveToWindow", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "imageRect", + "printedName": "imageRect(forContentRect:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)imageRectForContentRect:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC9imageRect010forContentF0So6CGRectVAG_tF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "imageRectForContentRect:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "titleRect", + "printedName": "titleRect(forContentRect:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)titleRectForContentRect:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC9titleRect010forContentF0So6CGRectVAG_tF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "titleRectForContentRect:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)layoutSubviews", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14layoutSubviewsyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sizeThatFits", + "printedName": "sizeThatFits(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)sizeThatFits:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12sizeThatFitsySo6CGSizeVAFF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "sizeThatFits:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accessTokenDidChange", + "printedName": "accessTokenDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)accessTokenDidChange:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC20accessTokenDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profileDidChange", + "printedName": "profileDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)profileDidChange:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC16profileDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buttonPressed", + "printedName": "buttonPressed(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)buttonPressed:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13buttonPressedyyypF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeLoginConfiguration", + "printedName": "makeLoginConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)makeLoginConfiguration", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC22makeLoginConfigurationAA0fG0CSgyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initializeContent", + "printedName": "initializeContent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initializeContent", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17initializeContentyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateContentForAccessToken", + "printedName": "updateContentForAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)updateContentForAccessToken", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC27updateContentForAccessTokenyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetContent", + "printedName": "fetchAndSetContent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)fetchAndSetContent", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC18fetchAndSetContentyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateContentForUser", + "printedName": "updateContentForUser(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)updateContentForUser:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC20updateContentForUseryy09FBSDKCoreB07ProfileCSgF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logout", + "printedName": "logout()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)logout", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6logoutyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBLoginTooltipView", + "printedName": "FBLoginTooltipView", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)delegate", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipViewDelegate", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)delegate", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipViewDelegate", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "forceDisplay", + "printedName": "forceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)forceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvp", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)forceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setForceDisplay:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldForceDisplay", + "printedName": "shouldForceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)shouldForceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)shouldForceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setShouldForceDisplay:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvp", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvg", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)init", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tagline:message:colorStyle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "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": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)initWithTagline:message:colorStyle:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC7tagline7message10colorStyleACSSSg_AgA09FBTooltipE0C05ColorI0Otcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithTagline:message:colorStyle:", + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:stringProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProvider06stringH0AcA06ServerG9Providing_p_AA019UserInterfaceStringK0_ptcfc", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProvider06stringH0AcA06ServerG9Providing_p_AA019UserInterfaceStringK0_ptcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(in:arrowPosition:direction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + }, + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)presentInView:withArrowPosition:direction:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC7present2in13arrowPosition9directionySo6UIViewC_So7CGPointVAA09FBTooltipE0C14ArrowDirectionOtF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "presentInView:withArrowPosition:direction:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginTooltipView", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKLoginKit.FBTooltipView", + "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": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBPermission", + "printedName": "FBPermission", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)value", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC5valueSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKPermission(im)value", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC5valueSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)description", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11descriptionSSvp", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)description", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11descriptionSSvg", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)hash", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC4hashSivp", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)hash", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC4hashSivg", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBPermission?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)initWithString:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC6stringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "permissions", + "printedName": "permissions(fromRawPermissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(cm)permissionsFromRawPermissions:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11permissions18fromRawPermissionsShyACGSgShySSG_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "permissionsFromRawPermissions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rawPermissions", + "printedName": "rawPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(cm)rawPermissionsFromPermissions:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC14rawPermissions4fromShySSGShyACG_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "rawPermissionsFromPermissions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)isEqual:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC7isEqualySbypSgF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)init", + "mangledName": "$s13FBSDKLoginKit12FBPermissionCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKPermission", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBTooltipView", + "printedName": "FBTooltipView", + "children": [ + { + "kind": "TypeDecl", + "name": "ArrowDirection", + "printedName": "ArrowDirection", + "children": [ + { + "kind": "Var", + "name": "down", + "printedName": "down", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ArrowDirection.Type) -> FBSDKLoginKit.FBTooltipView.ArrowDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO4downyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO4downyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "up", + "printedName": "up", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ArrowDirection.Type) -> FBSDKLoginKit.FBTooltipView.ArrowDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO2upyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO2upyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKTooltipViewArrowDirection", + "declAttributes": [ + "AccessControl", + "Frozen", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt", + "isEnumExhaustive": true, + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ColorStyle", + "printedName": "ColorStyle", + "children": [ + { + "kind": "Var", + "name": "friendlyBlue", + "printedName": "friendlyBlue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ColorStyle.Type) -> FBSDKLoginKit.FBTooltipView.ColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO12friendlyBlueyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO12friendlyBlueyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "neutralGray", + "printedName": "neutralGray", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ColorStyle.Type) -> FBSDKLoginKit.FBTooltipView.ColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO11neutralGrayyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO11neutralGrayyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle?", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKTooltipColorStyle", + "declAttributes": [ + "AccessControl", + "Frozen", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt", + "isEnumExhaustive": true, + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "displayDuration", + "printedName": "displayDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)displayDuration", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)displayDuration", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setDisplayDuration:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "colorStyle", + "printedName": "colorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)colorStyle", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)colorStyle", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setColorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)message", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)message", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": 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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setMessage:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC7messageSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tagline", + "printedName": "tagline", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)tagline", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)tagline", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": 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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setTagline:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textLabel", + "printedName": "textLabel", + "children": [ + { + "kind": "TypeNominal", + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)textLabel", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC9textLabelSo7UILabelCvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "Final", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)textLabel", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC9textLabelSo7UILabelCvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)init", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tagline:message:colorStyle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + }, + { + "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": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)initWithTagline:message:colorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7tagline7message10colorStyleACSSSg_AgC05ColorH0Otcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithTagline:message:colorStyle:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)presentFromView:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7present4fromySo6UIViewC_tF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "presentFromView:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(in:arrowPosition:direction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + }, + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)presentInView:withArrowPosition:direction:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7present2in13arrowPosition9directionySo6UIViewC_So7CGPointVAC14ArrowDirectionOtF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "presentInView:withArrowPosition:direction:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismiss", + "printedName": "dismiss()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)dismiss", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7dismissyyF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "animateFadeIn", + "printedName": "animateFadeIn()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)animateFadeIn", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC13animateFadeInyyF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "animateFadeIn", + "declAttributes": [ + "Custom", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "draw", + "printedName": "draw(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)drawRect:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC4drawyySo6CGRectVF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "isOpen": true, + "objc_name": "drawRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)layoutSubviews", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14layoutSubviewsyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "isOpen": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)initWithFrame:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "FBSDKTooltipView", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)UIView", + "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": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IdentifiedLoginResultHandler", + "printedName": "IdentifiedLoginResultHandler", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV10identifier33_983F05C521C15D7299B686B606F5D560LL10Foundation4UUIDVvp", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV10identifier33_983F05C521C15D7299B686B606F5D560LL10Foundation4UUIDVvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "closure", + "printedName": "closure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV7closure33_983F05C521C15D7299B686B606F5D560LLyyAA0d7ManagerdE0CSg_s5Error_pSgtcvp", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV7closure33_983F05C521C15D7299B686B606F5D560LLyyAA0d7ManagerdE0CSg_s5Error_pSgtcvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerVyACyAA0d7ManagerdE0CSg_s5Error_pSgtccfc", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerVyACyAA0d7ManagerdE0CSg_s5Error_pSgtccfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "callAsFunction", + "printedName": "callAsFunction(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV14callAsFunctionyyAA0d7ManagerdE0CSg_s5Error_pSgtF", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV14callAsFunctionyyAA0d7ManagerdE0CSg_s5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + }, + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV", + "moduleName": "FBSDKLoginKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginButtonDelegate", + "printedName": "LoginButtonDelegate", + "children": [ + { + "kind": "Function", + "name": "loginButton", + "printedName": "loginButton(_:didCompleteWith:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButton:didCompleteWithResult:error:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05loginD0_15didCompleteWith5erroryAA07FBLoginD0C_AA0c7ManagerC6ResultCSgs5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginButton:didCompleteWithResult:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginButtonDidLogOut", + "printedName": "loginButtonDidLogOut(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButtonDidLogOut:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05loginD9DidLogOutyyAA07FBLoginD0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginButtonWillLogin", + "printedName": "loginButtonWillLogin(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButtonWillLogin:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05logind4WillC0ySbAA07FBLoginD0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", + "sugared_genericSig": "", + "objc_name": "FBSDKLoginButtonDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleterFactory", + "printedName": "LoginCompleterFactory", + "children": [ + { + "kind": "Function", + "name": "createLoginCompleter", + "printedName": "createLoginCompleter(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleting", + "printedName": "FBSDKLoginKit.LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryV06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactory", + "printedName": "FBSDKLoginKit.LoginCompleterFactory", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryVACycfc", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginCompleterFactoryProtocol", + "printedName": "LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleterFactoryProtocol", + "printedName": "LoginCompleterFactoryProtocol", + "children": [ + { + "kind": "Function", + "name": "createLoginCompleter", + "printedName": "createLoginCompleter(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleting", + "printedName": "FBSDKLoginKit.LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleterFactoryProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleting", + "printedName": "LoginCompleting", + "children": [ + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15LoginCompletingP08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15LoginCompletingP08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15LoginCompletingP", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginConfiguration", + "printedName": "LoginConfiguration", + "children": [ + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)nonce", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC5nonceSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)nonce", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC5nonceSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tracking", + "printedName": "tracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)tracking", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingAA0C8TrackingOvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)tracking", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingAA0C8TrackingOvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestedPermissions", + "printedName": "requestedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC20requestedPermissionsShyAA12FBPermissionCGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC20requestedPermissionsShyAA12FBPermissionCGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messengerPageId", + "printedName": "messengerPageId", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)messengerPageId", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC15messengerPageIdSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)messengerPageId", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC15messengerPageIdSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authType", + "printedName": "authType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)authType", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8authTypeSo0a4AuthF0aSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)authType", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8authTypeSo0a4AuthF0aSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codeVerifier", + "printedName": "codeVerifier", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)codeVerifier", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC12codeVerifierAA04CodeF0Cvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)codeVerifier", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC12codeVerifierAA04CodeF0Cvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageIdACSgSaySSG_AA0C8TrackingOS2SSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:authType:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authTypeACSgSaySSG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:authType:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonceACSgSaySSG_AA0C8TrackingOSStcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:messengerPageId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:messengerPageId:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking15messengerPageIdACSgSaySSG_AA0C8TrackingOSSSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:messengerPageId:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:messengerPageId:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "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": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:messengerPageId:authType:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking15messengerPageId8authTypeACSgSaySSG_AA0C8TrackingOSSSgSo0a4AuthK0aSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:messengerPageId:authType:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:codeVerifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgSaySSG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8trackingACSgSaySSG_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithTracking:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingACSgAA0C8TrackingO_tcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithTracking:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:codeVerifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgShy09FBSDKCoreB010PermissionOG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgShy09FBSDKCoreB010PermissionOG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)init", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginConfiguration", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginError", + "printedName": "LoginError", + "children": [ + { + "kind": "Var", + "name": "_nsError", + "printedName": "_nsError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorCode", + "printedName": "errorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV9errorCodeSivp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9errorCodeSivp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "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:13FBSDKLoginKit10LoginErrorV9errorCodeSivg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9errorCodeSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorUserInfo", + "printedName": "errorUserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_nsError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0ACSo7NSErrorC_tcfc", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0ACSo7NSErrorC_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit10LoginErrorV_8userInfoAcA0cD4CodeO_SDySSypGtcfc", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV_8userInfoAcA0cD4CodeO_SDySSypGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDomain", + "printedName": "errorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV11errorDomainSSvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV11errorDomainSSvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV11errorDomainSSvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV11errorDomainSSvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "passwordChanged", + "printedName": "passwordChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userCheckpointed", + "printedName": "userCheckpointed", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userMismatch", + "printedName": "userMismatch", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unconfirmedUser", + "printedName": "unconfirmedUser", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "systemAccountAppDisabled", + "printedName": "systemAccountAppDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "systemAccountUnavailable", + "printedName": "systemAccountUnavailable", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "badChallengeString", + "printedName": "badChallengeString", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidIDToken", + "printedName": "invalidIDToken", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "missingAccessToken", + "printedName": "missingAccessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit10LoginErrorV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "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:13FBSDKLoginKit10LoginErrorV4hash4intoys6HasherVz_tF", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV9hashValueSivp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9hashValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV9hashValueSivg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9hashValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit10LoginErrorV", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginErrorCode", + "printedName": "LoginErrorCode", + "children": [ + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorReserved", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8reservedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUnknown", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO7unknownyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "passwordChanged", + "printedName": "passwordChanged", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorPasswordChanged", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO15passwordChangedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "userCheckpointed", + "printedName": "userCheckpointed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUserCheckpointed", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO16userCheckpointedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "userMismatch", + "printedName": "userMismatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUserMismatch", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO12userMismatchyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "unconfirmedUser", + "printedName": "unconfirmedUser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUnconfirmedUser", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO15unconfirmedUseryA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "systemAccountAppDisabled", + "printedName": "systemAccountAppDisabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorSystemAccountAppDisabled", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO24systemAccountAppDisabledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "systemAccountUnavailable", + "printedName": "systemAccountUnavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorSystemAccountUnavailable", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO24systemAccountUnavailableyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "badChallengeString", + "printedName": "badChallengeString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorBadChallengeString", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO18badChallengeStringyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "invalidIDToken", + "printedName": "invalidIDToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorInvalidIDToken", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO14invalidIDTokenyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "missingAccessToken", + "printedName": "missingAccessToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorMissingAccessToken", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO18missingAccessTokenyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 10 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit14LoginErrorCodeO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit14LoginErrorCodeO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginErrorCodeO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Var", + "name": "LoginErrorDomain", + "printedName": "LoginErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16LoginErrorDomainSSvp", + "mangledName": "$s13FBSDKLoginKit16LoginErrorDomainSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "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:13FBSDKLoginKit16LoginErrorDomainSSvg", + "mangledName": "$s13FBSDKLoginKit16LoginErrorDomainSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginEventLogging", + "printedName": "LoginEventLogging", + "children": [ + { + "kind": "Var", + "name": "flushBehavior", + "printedName": "flushBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "FlushBehavior", + "printedName": "FBSDKCoreKit.AppEvents.FlushBehavior", + "usr": "c:@E@FBSDKAppEventsFlushBehavior" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvp", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FlushBehavior", + "printedName": "FBSDKCoreKit.AppEvents.FlushBehavior", + "usr": "c:@E@FBSDKAppEventsFlushBehavior" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvg", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logInternalEvent", + "printedName": "logInternalEvent(_:parameters:isImplicitlyLogged:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP011logInternalD0_10parameters18isImplicitlyLoggedySo08FBSDKAppD4Namea_SDySo0ld9ParameterM0aypGSgSbtF", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP011logInternalD0_10parameters18isImplicitlyLoggedySo08FBSDKAppD4Namea_SDySo0ld9ParameterM0aypGSgSbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP5flushyyF", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP5flushyyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginManager", + "printedName": "LoginManager", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)defaultAudience", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)defaultAudience", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "handler", + "printedName": "handler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)configuration", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC13configurationAA0C13ConfigurationCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)configuration", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC13configurationAA0C13ConfigurationCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestedPermissions", + "printedName": "requestedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setRequestedPermissions:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "usedSafariSession", + "printedName": "usedSafariSession", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)usedSafariSession", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)usedSafariSession", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setUsedSafariSession:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isPerformingLogin", + "printedName": "isPerformingLogin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)isPerformingLogin", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC012isPerformingC0Sbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)isPerformingLogin", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC012isPerformingC0Sbvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Lazy" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(defaultAudience:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)initWithDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAcA07DefaultF0O_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(viewController:configuration: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" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginManagerC5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:from:handler:)", + "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" + }, + { + "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": "((FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logInWithPermissions:fromViewController:handler:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0cdC6ResultCSg_s5Error_pSgtcSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "logInWithPermissions:fromViewController:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:viewController:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.Permission]", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + }, + { + "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": "((FBSDKLoginKit.LoginResult) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginManagerC5logIn11permissions14viewController10completionySay09FBSDKCoreB010PermissionOG_So06UIViewI0CSgyAA0C6ResultOcSgtF", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn11permissions14viewController10completionySay09FBSDKCoreB010PermissionOG_So06UIViewI0CSgyAA0C6ResultOcSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reauthorizeDataAccess", + "printedName": "reauthorizeDataAccess(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)reauthorizeDataAccess:handler:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC21reauthorizeDataAccess4from7handlerySo16UIViewControllerC_yAA0cdC6ResultCSg_s5Error_pSgtctF", + "moduleName": "FBSDKLoginKit", + "objc_name": "reauthorizeDataAccess:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logOut", + "printedName": "logOut()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logOut", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6logOutyyF", + "moduleName": "FBSDKLoginKit", + "objc_name": "logOut", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeAuthentication", + "printedName": "completeAuthentication(parameters:expectChallenge:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)completeAuthenticationWithParameters:expectChallenge:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22completeAuthentication10parameters15expectChallengeyAA01_C20CompletionParametersC_SbtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logInParameters", + "printedName": "logInParameters(configuration:loggingToken:authenticationMethod:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logInParametersWithConfiguration:loggingToken:authenticationMethod:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15logInParameters13configuration12loggingToken20authenticationMethodSDyS2SGSgAA0C13ConfigurationCSg_SSSgSStF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateReauthentication", + "printedName": "validateReauthentication(accessToken:loginResult:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)validateReauthenticationWithAccessToken:loginResult:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC24validateReauthentication11accessToken11loginResultySo011FBSDKAccessH0C_AA0cdcJ0CSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRecentlyGrantedPermissions", + "printedName": "getRecentlyGrantedPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)getRecentlyGrantedPermissionsFrom:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC29getRecentlyGrantedPermissions4fromShyAA12FBPermissionCGAH_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRecentlyDeclinedPermissions", + "printedName": "getRecentlyDeclinedPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)getRecentlyDeclinedPermissionsFrom:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC30getRecentlyDeclinedPermissions4fromShyAA12FBPermissionCGAH_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "storeExpectedNonce", + "printedName": "storeExpectedNonce(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)storeExpectedNonce:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18storeExpectedNonceyySSSgF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)init", + "mangledName": "$s13FBSDKLoginKit12LoginManagerCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "makeOpener", + "printedName": "makeOpener()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(cm)makeOpener", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC10makeOpenerACyFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "makeOpener", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC11application_4open17sourceApplication10annotationSbSo13UIApplicationCSg_10Foundation3URLVSgSSSgypSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "canOpen", + "printedName": "canOpen(_:for:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)canOpenURL:forApplication:sourceApplication:annotation:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7canOpen_3for17sourceApplication10annotationSb10Foundation3URLV_So13UIApplicationCSgSSSgypSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "canOpenURL:forApplication:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)applicationDidBecomeActive:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC26applicationDidBecomeActiveyySo13UIApplicationCF", + "moduleName": "FBSDKLoginKit", + "objc_name": "applicationDidBecomeActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isAuthenticationURL", + "printedName": "isAuthenticationURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)isAuthenticationURL:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19isAuthenticationURLySb10Foundation0G0VF", + "moduleName": "FBSDKLoginKit", + "objc_name": "isAuthenticationURL:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldStopPropagation", + "printedName": "shouldStopPropagation(of:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)shouldStopPropagationOfURL:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC21shouldStopPropagation2ofSb10Foundation3URLV_tF", + "moduleName": "FBSDKLoginKit", + "objc_name": "shouldStopPropagationOfURL:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenWallet", + "printedName": "authenticationTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "keychainStore", + "printedName": "keychainStore", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginCompleterFactory", + "printedName": "loginCompleterFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profileProvider", + "printedName": "profileProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenWallet:authenticationTokenWallet:errorFactory:graphRequestFactory:internalUtility:keychainStore:loginCompleterFactory:profileProvider:settings:urlOpener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWallet014authenticationhI012errorFactory012graphRequestL015internalUtility13keychainStore014loginCompleterL015profileProvider8settings9urlOpenerAESo011FBSDKAccessH9Providing_pXp_So019FBSDKAuthenticationH9Providing_pXpSo18FBSDKErrorCreating_pSo010FBSDKGraphnL0_pSo27FBSDKAppAvailabilityChecker_So26FBSDKAppURLSchemeProvidingSo15FBSDKURLHostingpSo013FBSDKKeychainR0_pAA0ctL8Protocol_p09FBSDKCoreB016ProfileProviding_pXpAY16SettingsProtocol_pSo14FBSDKURLOpener_ptcfc", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWallet014authenticationhI012errorFactory012graphRequestL015internalUtility13keychainStore014loginCompleterL015profileProvider8settings9urlOpenerAESo011FBSDKAccessH9Providing_pXp_So019FBSDKAuthenticationH9Providing_pXpSo18FBSDKErrorCreating_pSo010FBSDKGraphnL0_pSo27FBSDKAppAvailabilityChecker_So26FBSDKAppURLSchemeProvidingSo15FBSDKURLHostingpSo013FBSDKKeychainR0_pAA0ctL8Protocol_p09FBSDKCoreB016ProfileProviding_pXpAY16SettingsProtocol_pSo14FBSDKURLOpener_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginProviding", + "printedName": "LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginManagerLogger", + "printedName": "LoginManagerLogger", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extras", + "printedName": "extras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastResult", + "printedName": "lastResult", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastError", + "printedName": "lastError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authMethod", + "printedName": "authMethod", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loggingToken", + "printedName": "loggingToken", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 5, + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(parameters:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10parameters8trackingACSgSDySSypGSg_AA0C8TrackingOtcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10parameters8trackingACSgSDySSypGSg_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(loggingToken:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "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": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12loggingToken8trackingACSgSSSg_AA0C8TrackingOtcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingToken8trackingACSgSSSg_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startSession", + "printedName": "startSession(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12startSession3foryAA0cD0C_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12startSession3foryAA0cD0C_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endSession", + "printedName": "endSession()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10endSessionyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10endSessionyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(authenticationMethod:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC5start20authenticationMethodySS_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC5start20authenticationMethodySS_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endLogin", + "printedName": "endLogin(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC03endC06result5erroryAA0cdC6ResultCSg_So7NSErrorCSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC03endC06result5erroryAA0cdC6ResultCSg_So7NSErrorCSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postLoginHeartbeat", + "printedName": "postLoginHeartbeat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC04postC9HeartbeatyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC04postC9HeartbeatyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "heartbeatTimerDidFire", + "printedName": "heartbeatTimerDidFire()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC21heartbeatTimerDidFireyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC21heartbeatTimerDidFireyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "willAttemptAppSwitchingBehavior", + "printedName": "willAttemptAppSwitchingBehavior(urlScheme:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC31willAttemptAppSwitchingBehavior9urlSchemeySS_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC31willAttemptAppSwitchingBehavior9urlSchemeySS_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getClientState", + "printedName": "getClientState(authenticationMethod:existingState:logger:)", + "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": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC14getClientState20authenticationMethod08existingH06loggerSSSgAH_SDySSypGSgACSgtFZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC14getClientState20authenticationMethod08existingH06loggerSSSgAH_SDySSypGSgACSgtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parametersForNewEvent", + "printedName": "parametersForNewEvent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC21parametersForNewEventSDySo08FBSDKAppI13ParameterNameaypGyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC21parametersForNewEventSDySo08FBSDKAppI13ParameterNameaypGyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logEvent", + "printedName": "logEvent(_:params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6paramsySo08FBSDKAppG4Namea_SDySo0ig9ParameterJ0aypGSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6paramsySo08FBSDKAppG4Namea_SDySo0ig9ParameterJ0aypGSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logEvent", + "printedName": "logEvent(_:result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6result5errorySo08FBSDKAppG4Namea_SSSo7NSErrorCSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6result5errorySo08FBSDKAppG4Namea_SSSo7NSErrorCSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventLogger:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AeA0C12EventLogging_p_tcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AeA0C12EventLogging_p_tcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginManagerLoginResult", + "printedName": "LoginManagerLoginResult", + "children": [ + { + "kind": "Var", + "name": "token", + "printedName": "token", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)token", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5tokenSo16FBSDKAccessTokenCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)token", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5tokenSo16FBSDKAccessTokenCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)authenticationToken", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19authenticationTokenSo019FBSDKAuthenticationG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)authenticationToken", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19authenticationTokenSo019FBSDKAuthenticationG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCancelled", + "printedName": "isCancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)isCancelled", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC11isCancelledSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)isCancelled", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC11isCancelledSbvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "grantedPermissions", + "printedName": "grantedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)grantedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC18grantedPermissionsShySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)grantedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC18grantedPermissionsShySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19declinedPermissionsShySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19declinedPermissionsShySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggingExtras", + "printedName": "loggingExtras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)loggingExtras", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC13loggingExtrasSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)loggingExtras", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC13loggingExtrasSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(token:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5token19authenticationToken11isCancelled18grantedPermissions08declinedL0ACSo011FBSDKAccessH0CSg_So019FBSDKAuthenticationH0CSgSbShySSGAOtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addLoggingExtra", + "printedName": "addLoggingExtra(_:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)addLoggingExtra:forKey:", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC15addLoggingExtra_6forKeyyyp_SStF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)init", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginManagerLoginResult", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "LoginManagerState", + "printedName": "LoginManagerState", + "children": [ + { + "kind": "Var", + "name": "idle", + "printedName": "idle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO4idleyA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO4idleyA2CmF", + "moduleName": "FBSDKLoginKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO5startyA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO5startyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "performingLogin", + "printedName": "performingLogin", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO010performingC0yA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO010performingC0yA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerState?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit17LoginManagerStateO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "Int", + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginProviding", + "printedName": "LoginProviding", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovp", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovg", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovs", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(viewController:configuration: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": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:from:handler:)", + "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" + }, + { + "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": "((FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0c7ManagerC6ResultCSg_s5Error_pSgtcSgtF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0c7ManagerC6ResultCSg_s5Error_pSgtcSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logOut", + "printedName": "logOut()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP6logOutyyF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP6logOutyyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit14LoginProvidingP", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginRecoveryAttempter", + "printedName": "LoginRecoveryAttempter", + "children": [ + { + "kind": "Function", + "name": "attemptRecovery", + "printedName": "attemptRecovery(from:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "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": "s:13FBSDKLoginKit22LoginRecoveryAttempterC07attemptD04from10completionys5Error_p_ySbctF", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC07attemptD04from10completionys5Error_p_ySbctF", + "moduleName": "FBSDKLoginKit", + "objc_name": "attemptRecoveryFromError:completionHandler:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginRecoveryAttempter", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterCACycfc", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterCACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "loginProvider", + "printedName": "loginProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvp", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvg", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvs", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvM", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(loginProvider:accessTokenProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProvider011accessTokenI0AeA0C9Providing_p_So011FBSDKAccesskL0_pXptcfc", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProvider011accessTokenI0AeA0C9Providing_p_So011FBSDKAccesskL0_pXptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginResult", + "printedName": "LoginResult", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> (Swift.Set, Swift.Set, FBSDKCoreKit.AccessToken?) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Set, Swift.Set, FBSDKCoreKit.AccessToken?) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(granted: Swift.Set, declined: Swift.Set, token: FBSDKCoreKit.AccessToken?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO7successyACShy09FBSDKCoreB010PermissionOG_AHSo16FBSDKAccessTokenCSgtcACmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO7successyACShy09FBSDKCoreB010PermissionOG_AHSo16FBSDKAccessTokenCSgtcACmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO9cancelledyA2CmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO9cancelledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> (Swift.Error) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO6failedyACs5Error_pcACmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO6failedyACs5Error_pcACmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit11LoginResultO6result5errorAcA0c7ManagercD0CSg_s5Error_pSgtcfc", + "mangledName": "$s13FBSDKLoginKit11LoginResultO6result5errorAcA0c7ManagercD0CSg_s5Error_pSgtcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "loginManagerResult", + "printedName": "loginManagerResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvp", + "mangledName": "$s13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvg", + "mangledName": "$s13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvg", + "moduleName": "FBSDKLoginKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit11LoginResultO5errors5Error_pSgvp", + "mangledName": "$s13FBSDKLoginKit11LoginResultO5errors5Error_pSgvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit11LoginResultO5errors5Error_pSgvg", + "mangledName": "$s13FBSDKLoginKit11LoginResultO5errors5Error_pSgvg", + "moduleName": "FBSDKLoginKit", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit11LoginResultO", + "mangledName": "$s13FBSDKLoginKit11LoginResultO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "Frozen", + "RawDocComment" + ], + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "LoginTooltipViewDelegate", + "printedName": "LoginTooltipViewDelegate", + "children": [ + { + "kind": "Function", + "name": "loginTooltipView", + "printedName": "loginTooltipView(_:shouldAppear:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipView:shouldAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE0_12shouldAppearSbAA07FBLogindE0C_SbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipView:shouldAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginTooltipViewWillAppear", + "printedName": "loginTooltipViewWillAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipViewWillAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE10WillAppearyyAA07FBLogindE0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipViewWillAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginTooltipViewWillNotAppear", + "printedName": "loginTooltipViewWillNotAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipViewWillNotAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE13WillNotAppearyyAA07FBLogindE0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipViewWillNotAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKLoginTooltipViewDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginTracking", + "printedName": "LoginTracking", + "children": [ + { + "kind": "Var", + "name": "enabled", + "printedName": "enabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginTracking.Type) -> FBSDKLoginKit.LoginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginTracking.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking@FBSDKLoginTrackingEnabled", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO7enabledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "limited", + "printedName": "limited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginTracking.Type) -> FBSDKLoginKit.LoginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginTracking.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking@FBSDKLoginTrackingLimited", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO7limitedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTracking?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13LoginTrackingO8rawValueACSgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueACSgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13LoginTrackingO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13LoginTrackingO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginTracking", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginURLCompleter", + "printedName": "LoginURLCompleter", + "children": [ + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginURLCompleter", + "printedName": "FBSDKLoginKit.LoginURLCompleter", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV13urlParameters5appIDACSDySSypG_SStcfc", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV13urlParameters5appIDACSDySSypG_SStcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetPropertiesFor", + "printedName": "fetchAndSetPropertiesFor(parameters:nonce:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV24fetchAndSetPropertiesFor10parameters5nonce7handleryAA01_C20CompletionParametersC_SSyAIctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV24fetchAndSetPropertiesFor10parameters5nonce7handleryAA01_C20CompletionParametersC_SSyAIctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setParameters", + "printedName": "setParameters(values:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV13setParameters6values5appIDySDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV13setParameters6values5appIDySDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exchangeNonceForTokenWith", + "printedName": "exchangeNonceForTokenWith(handler:authenticationNonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV25exchangeNonceForTokenWith7handler014authenticationF0yyAA01_C20CompletionParametersCc_SStF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV25exchangeNonceForTokenWith7handler014authenticationF0yyAA01_C20CompletionParametersCc_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exchangeCodeForTokensWith", + "printedName": "exchangeCodeForTokensWith(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV25exchangeCodeForTokensWith5nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV25exchangeCodeForTokensWith5nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profile", + "printedName": "profile(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV7profile4with09FBSDKCoreB07ProfileCSgAF25AuthenticationTokenClaimsC_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV7profile4with09FBSDKCoreB07ProfileCSgAF25AuthenticationTokenClaimsC_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "expirationDateFrom", + "printedName": "expirationDateFrom(parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV18expirationDateFrom10parameters10Foundation0F0VSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV18expirationDateFrom10parameters10Foundation0F0VSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dataAccessExpirationDateFrom", + "printedName": "dataAccessExpirationDateFrom(parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV28dataAccessExpirationDateFrom10parameters10Foundation0H0VSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV28dataAccessExpirationDateFrom10parameters10Foundation0H0VSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "challenge", + "printedName": "challenge(from:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV9challenge4fromSSSgSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV9challenge4fromSSSgSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV5error4froms5Error_pSgSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV5error4froms5Error_pSgSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "profileFactory", + "printedName": "profileFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenCreator", + "printedName": "authenticationTokenCreator", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profileFactory:authenticationTokenCreator:graphRequestFactory:internalUtility:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactory26authenticationTokenCreator012graphRequestH015internalUtility05errorH0AeA15ProfileCreating_p_AA014AuthenticationjR0_pSo010FBSDKGraphmH0_pSo15FBSDKURLHosting_pSo010FBSDKErrorR0_ptcfc", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactory26authenticationTokenCreator012graphRequestH015internalUtility05errorH0AeA15ProfileCreating_p_AA014AuthenticationjR0_pSo010FBSDKGraphmH0_pSo15FBSDKURLHosting_pSo010FBSDKErrorR0_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginCompleting", + "printedName": "LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginUtility", + "printedName": "LoginUtility", + "children": [ + { + "kind": "Function", + "name": "stringForAudience", + "printedName": "stringForAudience(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO17stringForAudienceySSAA07DefaultG0OFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO17stringForAudienceySSAA07DefaultG0OFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getQueryParameters", + "printedName": "getQueryParameters(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO18getQueryParameters4fromSDySSypGSg10Foundation3URLV_tFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO18getQueryParameters4fromSDySSypGSg10Foundation3URLV_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUserID", + "printedName": "getUserID(from:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO9getUserID4fromSSSgAF_tFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO9getUserID4fromSSSgAF_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit12LoginUtilityO", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO", + "moduleName": "FBSDKLoginKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV13dependentType33_8991E3BB914DA09983850496725CF25BLLxmvp", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV13dependentType33_8991E3BB914DA09983850496725CF25BLLxmvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKLoginKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MonotonicTimer", + "printedName": "MonotonicTimer", + "children": [ + { + "kind": "Function", + "name": "getCurrentSeconds", + "printedName": "getCurrentSeconds()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV17getCurrentSecondsSdyF", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerV17getCurrentSecondsSdyF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MonotonicTimer", + "printedName": "FBSDKLoginKit.MonotonicTimer", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit14MonotonicTimerVACycfc", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerV", + "moduleName": "FBSDKLoginKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NonceValidator", + "printedName": "NonceValidator", + "children": [ + { + "kind": "Function", + "name": "isValid", + "printedName": "isValid(nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14NonceValidatorO7isValid5nonceSbSS_tFZ", + "mangledName": "$s13FBSDKLoginKit14NonceValidatorO7isValid5nonceSbSS_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit14NonceValidatorO", + "mangledName": "$s13FBSDKLoginKit14NonceValidatorO", + "moduleName": "FBSDKLoginKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileCreating", + "printedName": "ProfileCreating", + "children": [ + { + "kind": "Function", + "name": "createProfile", + "printedName": "createProfile(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.ProfileCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileFactory", + "printedName": "ProfileFactory", + "children": [ + { + "kind": "Function", + "name": "createProfile", + "printedName": "createProfile(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14ProfileFactoryC06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryC06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileFactory", + "printedName": "FBSDKLoginKit.ProfileFactory", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory(im)init", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ProfileCreating", + "printedName": "ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConfigurationProviding", + "printedName": "ServerConfigurationProviding", + "children": [ + { + "kind": "Function", + "name": "loadServerConfiguration", + "printedName": "loadServerConfiguration(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKLoginTooltip", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip", + "usr": "c:objc(cs)FBSDKLoginTooltip" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP04loadcD010completionyySo0A7TooltipCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP04loadcD010completionyySo0A7TooltipCSg_s5Error_pSgtcSg_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.ServerConfigurationProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceElementProviding", + "printedName": "UserInterfaceElementProviding", + "children": [ + { + "kind": "Function", + "name": "topMostViewController", + "printedName": "topMostViewController()", + "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": "Func", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP21topMostViewControllerSo06UIViewJ0CSgyF", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP21topMostViewControllerSo06UIViewJ0CSgyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceElementProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewController", + "printedName": "viewController(for:)", + "children": [ + { + "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": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP14viewController3forSo06UIViewH0CSgSo0J0C_tF", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP14viewController3forSo06UIViewH0CSgSo0J0C_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceElementProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "children": [ + { + "kind": "Var", + "name": "bundleForStrings", + "printedName": "bundleForStrings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceStringProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "_LoginCompletionParameters", + "printedName": "_LoginCompletionParameters", + "children": [ + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)authenticationToken", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)authenticationToken", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAuthenticationToken:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profile", + "printedName": "profile", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)profile", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)profile", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setProfile:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenString", + "printedName": "accessTokenString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)accessTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)accessTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAccessTokenString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nonceString", + "printedName": "nonceString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)nonceString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)nonceString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setNonceString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenString", + "printedName": "authenticationTokenString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)authenticationTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)authenticationTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAuthenticationTokenString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)code", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)code", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setCode:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)permissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)permissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setDeclinedPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "expiredPermissions", + "printedName": "expiredPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)expiredPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)expiredPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setExpiredPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)appID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)appID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAppID:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)userID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)userID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setUserID:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)error", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)error", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setError:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "expirationDate", + "printedName": "expirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)expirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)expirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setExpirationDate:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataAccessExpirationDate", + "printedName": "dataAccessExpirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)dataAccessExpirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)dataAccessExpirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setDataAccessExpirationDate:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "challenge", + "printedName": "challenge", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)challenge", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)challenge", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setChallenge:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphDomain", + "printedName": "graphDomain", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)graphDomain", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)graphDomain", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setGraphDomain:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)init", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginCompletionParameters", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEvents", + "printedName": "AppEvents", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAppEvents", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAppEvents", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "LoginEventLogging", + "printedName": "LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InternalUtility", + "printedName": "InternalUtility", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKInternalUtility", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKInternalUtility", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceElementProviding", + "printedName": "UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "loginButtonDidTap", + "printedName": "loginButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "smartLoginService", + "printedName": "smartLoginService", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthStart", + "printedName": "sessionAuthStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthEnd", + "printedName": "sessionAuthEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthMethodStart", + "printedName": "sessionAuthMethodStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthMethodEnd", + "printedName": "sessionAuthMethodEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthHeartbeat", + "printedName": "sessionAuthHeartbeat", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName", + "moduleName": "FBSDKCoreKit", + "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": "ServerConfigurationProvider", + "printedName": "ServerConfigurationProvider", + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ServerConfigurationProviding", + "printedName": "ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP" + }, + { + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/AuthenticationTokenFactory.swift", + "kind": "StringLiteral", + "offset": 731, + "length": 29, + "value": "\"-----BEGIN CERTIFICATE-----\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/AuthenticationTokenFactory.swift", + "kind": "StringLiteral", + "offset": 784, + "length": 27, + "value": "\"-----END CERTIFICATE-----\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1180, + "length": 2, + "value": "72" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1231, + "length": 2, + "value": "43" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1238, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 964, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 8, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 964, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 8, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginCodeInfo.swift", + "kind": "IntegerLiteral", + "offset": 850, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginCodeInfo.swift", + "kind": "StringLiteral", + "offset": 410, + "length": 19, + "value": "\"FBSDKLoginKit.DeviceLoginCodeInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "Dictionary", + "offset": 692, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 1994, + "length": 7, + "value": "1349172" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 7, + "value": "1349173" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 7, + "value": "1349174" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2268, + "length": 7, + "value": "1349152" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 1994, + "length": 7, + "value": "1349172" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 7, + "value": "1349173" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 7, + "value": "1349174" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2268, + "length": 7, + "value": "1349152" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManager.swift", + "kind": "BooleanLiteral", + "offset": 1341, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManager.swift", + "kind": "StringLiteral", + "offset": 803, + "length": 18, + "value": "\"FBSDKLoginKit.DeviceLoginManager\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManagerResult.swift", + "kind": "StringLiteral", + "offset": 411, + "length": 24, + "value": "\"FBSDKLoginKit.DeviceLoginManagerResult\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 908, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 946, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1018, + "length": 7, + "value": "\"fbsdk\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1051, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1171, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1182, + "length": 3, + "value": "\"|\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "IntegerLiteral", + "offset": 1227, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1370, + "length": 5, + "value": "\"dev\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1450, + "length": 11, + "value": "\"_fb._tcp.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "Array", + "offset": 1814, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "BooleanLiteral", + "offset": 3428, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4249, + "length": 12, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4418, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4249, + "length": 12, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4418, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4487, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4524, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4558, + "length": 4, + "value": "28.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4592, + "length": 3, + "value": "8.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4637, + "length": 3, + "value": "8.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 1202, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/FBPermission.swift", + "kind": "StringLiteral", + "offset": 456, + "length": 12, + "value": "\"FBSDKLoginKit.FBPermission\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 752, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 752, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1041, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1041, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1137, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1181, + "length": 5, + "value": "0.001" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1226, + "length": 3, + "value": "1.1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1273, + "length": 4, + "value": "0.98" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1319, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1364, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1425, + "length": 2, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1471, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1519, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1602, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1650, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1731, + "length": 4, + "value": "0x6e" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1738, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1752, + "length": 4, + "value": "0x9c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1759, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1772, + "length": 4, + "value": "0xf5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1779, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1793, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 4, + "value": "0x49" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1833, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1847, + "length": 4, + "value": "0x74" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1854, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1867, + "length": 4, + "value": "0xc6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1874, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1888, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1970, + "length": 4, + "value": "0x51" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1977, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1991, + "length": 4, + "value": "0x50" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1998, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2011, + "length": 4, + "value": "0x4f" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2018, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2032, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2065, + "length": 4, + "value": "0x2d" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2072, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2086, + "length": 4, + "value": "0x2c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2093, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2106, + "length": 4, + "value": "0x2c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2113, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2127, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2425, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 3318, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 3560, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 3936, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 3970, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4074, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4113, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4158, + "length": 3, + "value": "185" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4206, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 4253, + "length": 4, + "value": "2.5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "Array", + "offset": 4300, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "StringLiteral", + "offset": 489, + "length": 13, + "value": "\"FBSDKLoginKit.FBTooltipView\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 307, + "length": 25, + "value": "\"fb_login_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 413, + "length": 24, + "value": "\"fb_smart_login_service\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 605, + "length": 23, + "value": "\"fb_mobile_login_start\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 762, + "length": 26, + "value": "\"fb_mobile_login_complete\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 924, + "length": 30, + "value": "\"fb_mobile_login_method_start\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 1090, + "length": 33, + "value": "\"fb_mobile_login_method_complete\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 1259, + "length": 27, + "value": "\"fb_mobile_login_heartbeat\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginConfiguration.swift", + "kind": "Array", + "offset": 9284, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginConfiguration.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 18, + "value": "\"FBSDKLoginKit.LoginConfiguration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "Dictionary", + "offset": 679, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2931, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2983, + "length": 7, + "value": "301" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3059, + "length": 15, + "value": "302" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3165, + "length": 16, + "value": "303" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3272, + "length": 12, + "value": "304" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3367, + "length": 15, + "value": "305" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3579, + "length": 24, + "value": "306" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 24, + "value": "307" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 18, + "value": "308" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3857, + "length": 14, + "value": "309" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3939, + "length": 18, + "value": "310" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2931, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2983, + "length": 7, + "value": "301" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3059, + "length": 15, + "value": "302" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3165, + "length": 16, + "value": "303" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3272, + "length": 12, + "value": "304" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3367, + "length": 15, + "value": "305" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3579, + "length": 24, + "value": "306" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 24, + "value": "307" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 18, + "value": "308" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3857, + "length": 14, + "value": "309" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3939, + "length": 18, + "value": "310" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "BooleanLiteral", + "offset": 1430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1561, + "length": 26, + "value": "\"expected_login_challenge\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1619, + "length": 22, + "value": "\"expected_login_nonce\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1680, + "length": 30, + "value": "\"expected_login_code_verifier\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "IntegerLiteral", + "offset": 1771, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1808, + "length": 15, + "value": "\"\/dialog\/oauth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1900, + "length": 41, + "value": "\"com.apple.SafariServices.Authentication\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1982, + "length": 59, + "value": "\"com.apple.AuthenticationServices.WebAuthenticationSession\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2245, + "length": 14, + "value": "\"browser_auth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2298, + "length": 11, + "value": "\"sfvc_auth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2562, + "length": 82, + "value": "\"Unable to find main bundle identifier. Cannot create keychain service identifier\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2734, + "length": 51, + "value": "\"com.facebook.sdk.loginmanager.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2784, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 481, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 520, + "length": 31, + "value": "\"com.facebook.sdk_client_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 646, + "length": 18, + "value": "\"0_auth_logger_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 717, + "length": 16, + "value": "\"1_timestamp_ms\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 10, + "value": "\"2_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 10, + "value": "\"3_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 910, + "length": 14, + "value": "\"4_error_code\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 980, + "length": 17, + "value": "\"5_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1047, + "length": 10, + "value": "\"6_extras\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1113, + "length": 17, + "value": "\"7_logging_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1193, + "length": 22, + "value": "\"declined_permissions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1288, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1339, + "length": 21, + "value": "\"inner_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1404, + "length": 52, + "value": "\"com.facebook.sdk:FBSDKErrorLocalizedDescriptionKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 58, + "value": "\"com.facebook.sdk:FBSDKGraphRequestErrorGraphErrorCodeKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1614, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1655, + "length": 24, + "value": "\"com.facebook.sdk.login\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1614, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1655, + "length": 24, + "value": "\"com.facebook.sdk.login\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1758, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1758, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManagerLoginResult.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 23, + "value": "\"FBSDKLoginKit.LoginManagerLoginResult\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginTracking.swift", + "kind": "IntegerLiteral", + "offset": 506, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginTracking.swift", + "kind": "IntegerLiteral", + "offset": 506, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/MonotonicTimer.swift", + "kind": "IntegerLiteral", + "offset": 387, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/MonotonicTimer.swift", + "kind": "StringLiteral", + "offset": 413, + "length": 57, + "value": "\"Unable to get timebase information for monotomic timing\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface new file mode 100644 index 00000000..ddcae310 --- /dev/null +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface @@ -0,0 +1,390 @@ +// 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-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import FBSDKCoreKit +import FBSDKCoreKit_Basics +@_exported import FBSDKLoginKit +import Foundation +import Security +import Swift +import UIKit +import _Concurrency +import _StringProcessing +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKCodeVerifier) final public class CodeVerifier : ObjectiveC.NSObject { + @objc final public let value: Swift.String + @objc final public var challenge: Swift.String { + @objc get + } + @objc(initWithString:) convenience public init?(string: Swift.String) + @objc override convenience dynamic public init() + @objc deinit +} +@objc(FBSDKDefaultAudience) public enum DefaultAudience : Swift.UInt { + case friends + case onlyMe + case everyone + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } +} +@objcMembers @objc(FBSDKDeviceLoginCodeInfo) final public class DeviceLoginCodeInfo : ObjectiveC.NSObject { + @objc final public let identifier: Swift.String + @objc final public let loginCode: Swift.String + @objc final public let verificationURL: Foundation.URL + @objc final public let expirationDate: Foundation.Date + @objc final public let pollingInterval: Swift.UInt + @objc public init(identifier: Swift.String, loginCode: Swift.String, verificationURL: Foundation.URL, expirationDate: Foundation.Date, pollingInterval: Swift.UInt) + @objc deinit +} +public struct DeviceLoginError : Foundation.CustomNSError, Swift.Hashable { + public let errorCode: Swift.Int + public let errorUserInfo: [Swift.String : Any] + public init(_nsError nsError: Foundation.NSError) + public init(_ code: FBSDKLoginKit.DeviceLoginError.Code, userInfo: [Swift.String : Any] = [:]) + public static var errorDomain: Swift.String { + get + } + public typealias Code = FBSDKLoginKit.DeviceLoginErrorCode + public static var excessivePolling: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var authorizationDeclined: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var authorizationPending: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var codeExpired: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static func == (lhs: FBSDKLoginKit.DeviceLoginError, rhs: FBSDKLoginKit.DeviceLoginError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc(FBSDKDeviceLoginError) public enum DeviceLoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { + public typealias _ErrorType = FBSDKLoginKit.DeviceLoginError + case excessivePolling = 1349172 + case authorizationDeclined = 1349173 + case authorizationPending = 1349174 + case codeExpired = 1349152 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@objcMembers @objc(FBSDKDeviceLoginManager) final public class DeviceLoginManager : ObjectiveC.NSObject { + @objc weak final public var delegate: FBSDKLoginKit.DeviceLoginManagerDelegate? + @objc final public let permissions: [Swift.String] + @objc final public var redirectURL: Foundation.URL? + @objc(initWithPermissions:enableSmartLogin:) public init(permissions: [Swift.String], enableSmartLogin: Swift.Bool) + @objc final public func start() + @objc final public func cancel() + @objc deinit +} +extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { + @objc final public func netService(_ service: Foundation.NetService, didNotPublish errorValues: [Swift.String : Foundation.NSNumber]) +} +@objc(FBSDKDeviceLoginManagerDelegate) public protocol DeviceLoginManagerDelegate { + @objc(deviceLoginManager:startedWithCodeInfo:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, startedWith codeInfo: FBSDKLoginKit.DeviceLoginCodeInfo) + @objc(deviceLoginManager:completedWithResult:error:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, completedWith result: FBSDKLoginKit.DeviceLoginManagerResult?, error: Swift.Error?) +} +@objcMembers @objc(FBSDKDeviceLoginManagerResult) final public class DeviceLoginManagerResult : ObjectiveC.NSObject { + @objc final public var accessToken: FBSDKCoreKit.AccessToken? { + get + } + @objc final public var isCancelled: Swift.Bool { + get + } + @objc public init(token: FBSDKCoreKit.AccessToken?, isCancelled cancelled: Swift.Bool) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKLoginButton) @_Concurrency.MainActor(unsafe) final public class FBLoginButton : FBSDKCoreKit.FBButton { + @objc @_Concurrency.MainActor(unsafe) final public var defaultAudience: FBSDKLoginKit.DefaultAudience { + @objc get + @objc set + } + @objc @IBOutlet @_Concurrency.MainActor(unsafe) weak final public var delegate: FBSDKLoginKit.LoginButtonDelegate? + @objc @_Concurrency.MainActor(unsafe) final public var permissions: [Swift.String] + @objc @_Concurrency.MainActor(unsafe) final public var tooltipBehavior: FBSDKLoginKit.FBLoginButton.TooltipBehavior + @objc @_Concurrency.MainActor(unsafe) final public var tooltipColorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle + @objc @_Concurrency.MainActor(unsafe) final public var loginTracking: FBSDKLoginKit.LoginTracking + @objc @_Concurrency.MainActor(unsafe) final public var nonce: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var messengerPageId: Swift.String? + @objc @_Concurrency.MainActor(unsafe) final public var authType: FBSDKLoginKit.LoginAuthType? + @objc @_Concurrency.MainActor(unsafe) final public var codeVerifier: FBSDKLoginKit.CodeVerifier + @objc(FBSDKLoginButtonTooltipBehavior) public enum TooltipBehavior : Swift.UInt { + case automatic = 0 + case forceDisplay + case disable + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override final public func didMoveToWindow() + @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func layoutSubviews() + @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreFoundation.CGSize) -> CoreFoundation.CGSize + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(FBSDKLoginTooltipView) @_Concurrency.MainActor(unsafe) final public class FBLoginTooltipView : FBSDKLoginKit.FBTooltipView { + @objc @_Concurrency.MainActor(unsafe) weak final public var delegate: FBSDKLoginKit.LoginTooltipViewDelegate? + @objc @_Concurrency.MainActor(unsafe) final public var forceDisplay: Swift.Bool + @objc @_Concurrency.MainActor(unsafe) final public var shouldForceDisplay: Swift.Bool { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc convenience dynamic public init() + @objc(initWithTagline:message:colorStyle:) @_Concurrency.MainActor(unsafe) override public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) + @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc deinit +} +@objcMembers @objc(FBSDKPermission) final public class FBPermission : ObjectiveC.NSObject { + @objc override final public var description: Swift.String { + @objc get + } + @objc override final public var hash: Swift.Int { + @objc get + } + @objc public init?(string: Swift.String) + @objc(permissionsFromRawPermissions:) public static func permissions(fromRawPermissions rawPermissions: Swift.Set) -> Swift.Set? + @objc(rawPermissionsFromPermissions:) public static func rawPermissions(from permissions: Swift.Set) -> Swift.Set + @objc override final public func isEqual(_ object: Any?) -> Swift.Bool + @objc deinit +} +@objc(FBSDKTooltipView) @_Concurrency.MainActor(unsafe) open class FBTooltipView : UIKit.UIView { + @objc(FBSDKTooltipViewArrowDirection) @frozen public enum ArrowDirection : Swift.UInt { + case down = 0 + case up = 1 + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc(FBSDKTooltipColorStyle) @frozen public enum ColorStyle : Swift.UInt { + case friendlyBlue = 0 + case neutralGray = 1 + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc @_Concurrency.MainActor(unsafe) public var displayDuration: Swift.Double + @objc @_Concurrency.MainActor(unsafe) public var colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public var message: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public var tagline: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) + @available(*, unavailable) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit + @objc(presentFromView:) @_Concurrency.MainActor(unsafe) public func present(from anchorView: UIKit.UIView) + @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc @_Concurrency.MainActor(unsafe) public func dismiss() + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() +} +@objc(FBSDKLoginButtonDelegate) public protocol LoginButtonDelegate : ObjectiveC.NSObjectProtocol { + @objc(loginButton:didCompleteWithResult:error:) func loginButton(_ loginButton: FBSDKLoginKit.FBLoginButton, didCompleteWith result: FBSDKLoginKit.LoginManagerLoginResult?, error: Swift.Error?) + @objc func loginButtonDidLogOut(_ loginButton: FBSDKLoginKit.FBLoginButton) + @objc optional func loginButtonWillLogin(_ loginButton: FBSDKLoginKit.FBLoginButton) -> Swift.Bool +} +@objcMembers @objc(FBSDKLoginConfiguration) final public class LoginConfiguration : ObjectiveC.NSObject { + @objc final public let nonce: Swift.String + @objc final public let tracking: FBSDKLoginKit.LoginTracking + @objc final public let requestedPermissions: Swift.Set + @objc final public let messengerPageId: Swift.String? + @objc final public let authType: FBSDKLoginKit.LoginAuthType? + @objc final public let codeVerifier: FBSDKLoginKit.CodeVerifier + @objc(initWithPermissions:tracking:nonce:messengerPageId:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?) + @objc(initWithPermissions:tracking:nonce:messengerPageId:authType:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?) + @objc(initWithPermissions:tracking:nonce:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String) + @objc(initWithPermissions:tracking:messengerPageId:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, messengerPageId: Swift.String?) + @objc(initWithPermissions:tracking:messengerPageId:authType:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?) + @objc(initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:) public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?, codeVerifier: FBSDKLoginKit.CodeVerifier) + @objc(initWithPermissions:tracking:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking) + @objc(initWithTracking:) convenience public init?(tracking: FBSDKLoginKit.LoginTracking) + convenience public init?(permissions: Swift.Set = [], tracking: FBSDKLoginKit.LoginTracking = .enabled, nonce: Swift.String = UUID().uuidString, messengerPageId: Swift.String? = nil, authType: FBSDKLoginKit.LoginAuthType? = .rerequest, codeVerifier: FBSDKLoginKit.CodeVerifier = CodeVerifier()) + @objc deinit +} +public struct LoginError : Foundation.CustomNSError, Swift.Hashable { + public let errorCode: Swift.Int + public let errorUserInfo: [Swift.String : Any] + public init(_nsError nsError: Foundation.NSError) + public init(_ code: FBSDKLoginKit.LoginError.Code, userInfo: [Swift.String : Any] = [:]) + public static var errorDomain: Swift.String { + get + } + public typealias Code = FBSDKLoginKit.LoginErrorCode + public static var reserved: FBSDKLoginKit.LoginError.Code { + get + } + public static var unknown: FBSDKLoginKit.LoginError.Code { + get + } + public static var passwordChanged: FBSDKLoginKit.LoginError.Code { + get + } + public static var userCheckpointed: FBSDKLoginKit.LoginError.Code { + get + } + public static var userMismatch: FBSDKLoginKit.LoginError.Code { + get + } + public static var unconfirmedUser: FBSDKLoginKit.LoginError.Code { + get + } + public static var systemAccountAppDisabled: FBSDKLoginKit.LoginError.Code { + get + } + public static var systemAccountUnavailable: FBSDKLoginKit.LoginError.Code { + get + } + public static var badChallengeString: FBSDKLoginKit.LoginError.Code { + get + } + public static var invalidIDToken: FBSDKLoginKit.LoginError.Code { + get + } + public static var missingAccessToken: FBSDKLoginKit.LoginError.Code { + get + } + public static func == (lhs: FBSDKLoginKit.LoginError, rhs: FBSDKLoginKit.LoginError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc(FBSDKLoginError) public enum LoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { + public typealias _ErrorType = FBSDKLoginKit.LoginError + case reserved = 300 + case unknown + case passwordChanged + case userCheckpointed + case userMismatch + case unconfirmedUser + case systemAccountAppDisabled + case systemAccountUnavailable + case badChallengeString + case invalidIDToken + case missingAccessToken + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public let LoginErrorDomain: Swift.String +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLoginManager) final public class LoginManager : ObjectiveC.NSObject { + @objc final public var defaultAudience: FBSDKLoginKit.DefaultAudience + @objc convenience public init(defaultAudience: FBSDKLoginKit.DefaultAudience = .friends) + @available(swift, obsoleted: 0.1) + @objc(logInFromViewController:configuration:completion:) final public func logIn(from viewController: UIKit.UIViewController?, configuration: FBSDKLoginKit.LoginConfiguration?, completion: @escaping FBSDKLoginKit.LoginManagerLoginResultBlock) + @nonobjc final public func logIn(viewController: UIKit.UIViewController? = nil, configuration: FBSDKLoginKit.LoginConfiguration?, completion: @escaping FBSDKLoginKit.LoginResultBlock) + @objc(logInWithPermissions:fromViewController:handler:) final public func logIn(permissions: [Swift.String], from viewController: UIKit.UIViewController?, handler: FBSDKLoginKit.LoginManagerLoginResultBlock?) + @objc(reauthorizeDataAccess:handler:) final public func reauthorizeDataAccess(from viewController: UIKit.UIViewController, handler: @escaping FBSDKLoginKit.LoginManagerLoginResultBlock) + @objc(logOut) final public func logOut() + @objc override dynamic public init() + @objc deinit +} +extension FBSDKLoginKit.LoginManager : FBSDKCoreKit.URLOpening { + @objc public static func makeOpener() -> FBSDKLoginKit.LoginManager + @objc final public func application(_ application: UIKit.UIApplication?, open url: Foundation.URL?, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func canOpen(_ url: Foundation.URL, for application: UIKit.UIApplication?, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func applicationDidBecomeActive(_ application: UIKit.UIApplication) + @objc final public func isAuthenticationURL(_ url: Foundation.URL) -> Swift.Bool + @objc final public func shouldStopPropagation(of url: Foundation.URL) -> Swift.Bool +} +@objcMembers @objc(FBSDKLoginManagerLoginResult) final public class LoginManagerLoginResult : ObjectiveC.NSObject { + @objc final public let token: FBSDKCoreKit.AccessToken? + @objc final public let authenticationToken: FBSDKCoreKit.AuthenticationToken? + @objc final public let isCancelled: Swift.Bool + @objc final public let grantedPermissions: Swift.Set + @objc final public let declinedPermissions: Swift.Set + @objc(initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:) public init(token: FBSDKCoreKit.AccessToken?, authenticationToken: FBSDKCoreKit.AuthenticationToken?, isCancelled: Swift.Bool, grantedPermissions: Swift.Set, declinedPermissions: Swift.Set) + @objc deinit +} +public typealias LoginResultBlock = (FBSDKLoginKit.LoginResult) -> Swift.Void +@frozen public enum LoginResult { + case success(granted: Swift.Set, declined: Swift.Set, token: FBSDKCoreKit.AccessToken?) + case cancelled + case failed(Swift.Error) +} +@objc(FBSDKLoginTooltipViewDelegate) public protocol LoginTooltipViewDelegate { + @objc(loginTooltipView:shouldAppear:) optional func loginTooltipView(_ view: FBSDKLoginKit.FBLoginTooltipView, shouldAppear appIsEligible: Swift.Bool) -> Swift.Bool + @objc(loginTooltipViewWillAppear:) optional func loginTooltipViewWillAppear(_ view: FBSDKLoginKit.FBLoginTooltipView) + @objc(loginTooltipViewWillNotAppear:) optional func loginTooltipViewWillNotAppear(_ view: FBSDKLoginKit.FBLoginTooltipView) +} +@objc(FBSDKLoginTracking) public enum LoginTracking : Swift.UInt { + case enabled + case limited + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLoginCompletionParameters) final public class _LoginCompletionParameters : ObjectiveC.NSObject { + @objc final public var authenticationToken: FBSDKCoreKit.AuthenticationToken? + @objc final public var profile: FBSDKCoreKit.Profile? + @objc final public var accessTokenString: Swift.String? + @objc final public var nonceString: Swift.String? + @objc final public var authenticationTokenString: Swift.String? + @objc final public var code: Swift.String? + @objc final public var permissions: Swift.Set? + @objc final public var declinedPermissions: Swift.Set? + @objc final public var expiredPermissions: Swift.Set? + @objc final public var appID: Swift.String? + @objc final public var userID: Swift.String? + @objc final public var error: Swift.Error? + @objc final public var expirationDate: Foundation.Date? + @objc final public var dataAccessExpirationDate: Foundation.Date? + @objc final public var challenge: Swift.String? + @objc final public var graphDomain: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKLoginKit.DefaultAudience : Swift.Equatable {} +extension FBSDKLoginKit.DefaultAudience : Swift.Hashable {} +extension FBSDKLoginKit.DefaultAudience : Swift.RawRepresentable {} +extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.Hashable {} +extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.Equatable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.Hashable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Equatable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Hashable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Sendable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Equatable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Hashable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Sendable {} +extension FBSDKLoginKit.LoginErrorCode : Swift.Hashable {} +extension FBSDKLoginKit.LoginErrorCode : Swift.RawRepresentable {} +extension FBSDKLoginKit.LoginTracking : Swift.Equatable {} +extension FBSDKLoginKit.LoginTracking : Swift.Hashable {} +extension FBSDKLoginKit.LoginTracking : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc similarity index 99% rename from ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc rename to ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc index 20946f58..e862bd49 100644 Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface similarity index 96% rename from ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface rename to ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface index c0444431..ddcae310 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import CommonCrypto import FBSDKCoreKit import FBSDKCoreKit_Basics @@ -10,6 +11,7 @@ import Security import Swift import UIKit import _Concurrency +import _StringProcessing @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKCodeVerifier) final public class CodeVerifier : ObjectiveC.NSObject { @objc final public let value: Swift.String @objc final public var challenge: Swift.String { @@ -130,12 +132,12 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { get } } - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override final public func didMoveToWindow() - @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreGraphics.CGRect) -> CoreGraphics.CGRect - @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreGraphics.CGRect) -> CoreGraphics.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect @_Concurrency.MainActor(unsafe) @objc override final public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreGraphics.CGSize) -> CoreGraphics.CGSize + @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreFoundation.CGSize) -> CoreFoundation.CGSize @objc deinit } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(FBSDKLoginTooltipView) @_Concurrency.MainActor(unsafe) final public class FBLoginTooltipView : FBSDKLoginKit.FBTooltipView { @@ -145,9 +147,9 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { @objc get @objc set } - @objc convenience dynamic public init() + @_Concurrency.MainActor(unsafe) @objc convenience dynamic public init() @objc(initWithTagline:message:colorStyle:) @_Concurrency.MainActor(unsafe) override public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) - @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreGraphics.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) @objc deinit } @objcMembers @objc(FBSDKPermission) final public class FBPermission : ObjectiveC.NSObject { @@ -200,9 +202,9 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit @objc(presentFromView:) @_Concurrency.MainActor(unsafe) public func present(from anchorView: UIKit.UIView) - @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreGraphics.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) @objc @_Concurrency.MainActor(unsafe) public func dismiss() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() } @objc(FBSDKLoginButtonDelegate) public protocol LoginButtonDelegate : ObjectiveC.NSObjectProtocol { diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Modules/module.modulemap b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/module.modulemap similarity index 73% rename from ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Modules/module.modulemap rename to ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/module.modulemap index de53eb21..75e58605 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Modules/module.modulemap +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Modules/module.modulemap @@ -6,6 +6,6 @@ framework module FBSDKLoginKit { } module FBSDKLoginKit.Swift { - header "FBSDKLoginKit-Swift.h" - requires objc + header "FBSDKLoginKit-Swift.h" + requires objc } diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Resources b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Resources deleted file mode 120000 index 953ee36f..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Resources/Info.plist b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Resources/Info.plist similarity index 85% rename from ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Resources/Info.plist rename to ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Resources/Info.plist index 171c976a..976e906e 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Resources/Info.plist +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Resources/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 21G115 + 22F82 CFBundleDevelopmentRegion en CFBundleExecutable @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 15.1.0 + 16.1.3 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 13F100 + 14C18 DTPlatformName macosx DTPlatformVersion - 12.3 + 13.1 DTSDKBuild - 21E226 + 22C55 DTSDKName - macosx12.3 + macosx13.1 DTXcode - 1341 + 1420 DTXcodeBuild - 13F100 + 14C18 LSMinimumSystemVersion 10.15 UIDeviceFamily diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/FBSDKLoginKit b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/FBSDKLoginKit deleted file mode 100755 index 2b1ff224..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/FBSDKLoginKit and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/module.modulemap b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/module.modulemap deleted file mode 100644 index de53eb21..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/A/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module FBSDKLoginKit { - umbrella header "FBSDKLoginKit.h" - - export * - module * { export * } -} - -module FBSDKLoginKit.Swift { - header "FBSDKLoginKit-Swift.h" - requires objc -} diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/Current b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/Current deleted file mode 120000 index 8c7e5a66..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKLoginKit.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 3fc827a5..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKLoginKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit deleted file mode 100644 index 7103861e..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/FBSDKLoginKit b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/FBSDKLoginKit old mode 100755 new mode 100644 index 0ada6309..46892a53 Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/FBSDKLoginKit and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/FBSDKLoginKit differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h index 7d757cbc..165902d3 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBSDKLOGINKIT_SWIFT_H #define FBSDKLOGINKIT_SWIFT_H #pragma clang diagnostic push @@ -23,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -183,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -193,11 +204,33 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif -@import CoreGraphics; +@import CoreFoundation; @import FBSDKCoreKit; @import Foundation; @import ObjectiveC; @@ -206,6 +239,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -213,6 +247,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -221,6 +256,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; @@ -843,6 +879,9 @@ SWIFT_CLASS_NAMED("_LoginCompletionParameters") - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif @@ -850,7 +889,7 @@ SWIFT_CLASS_NAMED("_LoginCompletionParameters") #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBSDKLOGINKIT_SWIFT_H #define FBSDKLOGINKIT_SWIFT_H #pragma clang diagnostic push @@ -873,11 +912,20 @@ SWIFT_CLASS_NAMED("_LoginCompletionParameters") # 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 @@ -1033,9 +1081,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -1043,11 +1093,33 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif -@import CoreGraphics; +@import CoreFoundation; @import FBSDKCoreKit; @import Foundation; @import ObjectiveC; @@ -1056,6 +1128,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -1063,6 +1136,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -1071,6 +1145,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSString; @@ -1693,10 +1768,15 @@ SWIFT_CLASS_NAMED("_LoginCompletionParameters") - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; @end +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif #pragma clang diagnostic pop #endif +#else +#error unsupported Swift architecture #endif diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Info.plist b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Info.plist index 6dee4463..9d486953 100644 Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Info.plist and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Info.plist differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.abi.json b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 00000000..083190a3 --- /dev/null +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,28830 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenCreating", + "printedName": "AuthenticationTokenCreating", + "children": [ + { + "kind": "Function", + "name": "createToken", + "printedName": "createToken(tokenString:nonce:graphDomain:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationToken?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.AuthenticationTokenCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenFactory", + "printedName": "AuthenticationTokenFactory", + "children": [ + { + "kind": "Var", + "name": "beginCertificate", + "printedName": "beginCertificate", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endCertificate", + "printedName": "endCertificate", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionProvider", + "printedName": "sessionProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvs", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvM", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "certificateEndpoint", + "printedName": "certificateEndpoint", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sessionProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenFactory", + "printedName": "FBSDKLoginKit.AuthenticationTokenFactory", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderACSo24FBSDKURLSessionProviding_p_tcfc", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderACSo24FBSDKURLSessionProviding_p_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "createToken", + "printedName": "createToken(tokenString:nonce:graphDomain:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationToken?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "verifySignature", + "printedName": "verifySignature(_:header:claims:certificateKey:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "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": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15verifySignature_6header6claims14certificateKey10completionySS_S3SySbctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15verifySignature_6header6claims14certificateKey10completionySS_S3SySbctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyWith", + "printedName": "getPublicKeyWith(certificateKey:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Security.SecKey?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Security.SecKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecKey", + "printedName": "Security.SecKey", + "usr": "c:@T@SecKeyRef" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC16getPublicKeyWith011certificateH010completionySS_ySo03SecH3RefaSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16getPublicKeyWith011certificateH010completionySS_ySo03SecH3RefaSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCertificateWith", + "printedName": "getCertificateWith(certificateKey:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Security.SecCertificate?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Security.SecCertificate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecCertificate", + "printedName": "Security.SecCertificate", + "usr": "c:@T@SecCertificateRef" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC18getCertificateWith14certificateKey10completionySS_ySo03SecG3RefaSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC18getCertificateWith14certificateKey10completionySS_ySo03SecG3RefaSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenFactory", + "printedName": "FBSDKLoginKit.AuthenticationTokenFactory", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryCACycfc", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryCACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AuthenticationTokenCreating", + "printedName": "AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenHeader", + "printedName": "AuthenticationTokenHeader", + "children": [ + { + "kind": "Var", + "name": "kid", + "printedName": "kid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvp", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvg", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromEncodedString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.AuthenticationTokenHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenHeader", + "printedName": "FBSDKLoginKit.AuthenticationTokenHeader", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC17fromEncodedStringACSgSS_tcfc", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC17fromEncodedStringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "CodeVerifier", + "printedName": "CodeVerifier", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(py)value", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC5valueSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)value", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC5valueSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "challenge", + "printedName": "challenge", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(py)challenge", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC9challengeSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)challenge", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC9challengeSSvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.CodeVerifier?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)initWithString:", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC6stringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithString:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)init", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKCodeVerifier", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultAudience", + "printedName": "DefaultAudience", + "children": [ + { + "kind": "Var", + "name": "friends", + "printedName": "friends", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceFriends", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO7friendsyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "onlyMe", + "printedName": "onlyMe", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceOnlyMe", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO6onlyMeyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "everyone", + "printedName": "everyone", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceEveryone", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8everyoneyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DefaultAudience?", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit15DefaultAudienceO8rawValueACSgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueACSgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit15DefaultAudienceO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DefaultAudienceO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDefaultAudience", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "AssociatedType", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP0E12DependenciesQa", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP0E12DependenciesQa", + "moduleName": "FBSDKLoginKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKLoginKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginCodeInfo", + "printedName": "DeviceLoginCodeInfo", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)identifier", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifierSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)identifier", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifierSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loginCode", + "printedName": "loginCode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)loginCode", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC05loginE0SSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)loginCode", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC05loginE0SSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "verificationURL", + "printedName": "verificationURL", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)verificationURL", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15verificationURL10Foundation0H0Vvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)verificationURL", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15verificationURL10Foundation0H0Vvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "expirationDate", + "printedName": "expirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)expirationDate", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC14expirationDate10Foundation0H0Vvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)expirationDate", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC14expirationDate10Foundation0H0Vvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pollingInterval", + "printedName": "pollingInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)pollingInterval", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15pollingIntervalSuvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)pollingInterval", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15pollingIntervalSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(identifier:loginCode:verificationURL:expirationDate:pollingInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)initWithIdentifier:loginCode:verificationURL:expirationDate:pollingInterval:", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifier05loginE015verificationURL14expirationDate15pollingIntervalACSS_SS10Foundation0J0VAI0L0VSutcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)init", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginCodeInfo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginError", + "printedName": "DeviceLoginError", + "children": [ + { + "kind": "Var", + "name": "_nsError", + "printedName": "_nsError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorCode", + "printedName": "errorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "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:13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorUserInfo", + "printedName": "errorUserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_nsError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0ACSo7NSErrorC_tcfc", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0ACSo7NSErrorC_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV_8userInfoAcA0cdE4CodeO_SDySSypGtcfc", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV_8userInfoAcA0cdE4CodeO_SDySSypGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDomain", + "printedName": "errorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "excessivePolling", + "printedName": "excessivePolling", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authorizationDeclined", + "printedName": "authorizationDeclined", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authorizationPending", + "printedName": "authorizationPending", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codeExpired", + "printedName": "codeExpired", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "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:13FBSDKLoginKit16DeviceLoginErrorV4hash4intoys6HasherVz_tF", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginErrorCode", + "printedName": "DeviceLoginErrorCode", + "children": [ + { + "kind": "Var", + "name": "excessivePolling", + "printedName": "excessivePolling", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorExcessivePolling", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO16excessivePollingyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "authorizationDeclined", + "printedName": "authorizationDeclined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorAuthorizationDeclined", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO21authorizationDeclinedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "authorizationPending", + "printedName": "authorizationPending", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorAuthorizationPending", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO20authorizationPendingyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "codeExpired", + "printedName": "codeExpired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorCodeExpired", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO11codeExpiredyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginManager", + "printedName": "DeviceLoginManager", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)delegate", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerDelegate", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)delegate", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerDelegate", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)permissions", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissionsSaySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)permissions", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissionsSaySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redirectURL", + "printedName": "redirectURL", + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)redirectURL", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)redirectURL", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setRedirectURL:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codeInfo", + "printedName": "codeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)codeInfo", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)codeInfo", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setCodeInfo:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:enableSmartLogin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)initWithPermissions:enableSmartLogin:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissions011enableSmartD0ACSaySSG_Sbtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:enableSmartLogin:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)start", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC5startyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)cancel", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC6cancelyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notifyDelegate", + "printedName": "notifyDelegate(token:expirationDate:dataAccessExpirationDate:)", + "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": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)notifyDelegateWithToken:expirationDate:dataAccessExpirationDate:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC14notifyDelegate5token14expirationDate020dataAccessExpirationJ0ySSSg_10Foundation0J0VSgALtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processError", + "printedName": "processError(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)processError:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC12processErroryys0G0_pF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "schedulePoll", + "printedName": "schedulePoll(interval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)schedulePollWithInterval:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC12schedulePoll8intervalySu_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)init", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "netService", + "printedName": "netService(_:didNotPublish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetService", + "printedName": "Foundation.NetService", + "usr": "c:objc(cs)NSNetService" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)netService:didNotPublish:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC10netService_13didNotPublishySo05NSNetG0C_SDySSSo8NSNumberCGtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "netService:didNotPublish:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "devicePoller", + "printedName": "devicePoller", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(devicePoller:errorFactory:graphRequestFactory:internalUtility:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePoller12errorFactory012graphRequestK015internalUtility8settingsAeA0C7Polling_p_So18FBSDKErrorCreating_pSo010FBSDKGraphmK0_pSo013FBSDKInternalO0_p09FBSDKCoreB016SettingsProtocol_ptcfc", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePoller12errorFactory012graphRequestK015internalUtility8settingsAeA0C7Polling_p_So18FBSDKErrorCreating_pSo010FBSDKGraphmK0_pSo013FBSDKInternalO0_p09FBSDKCoreB016SettingsProtocol_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP" + }, + { + "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": "DeviceLoginManagerDelegate", + "printedName": "DeviceLoginManagerDelegate", + "children": [ + { + "kind": "Function", + "name": "deviceLoginManager", + "printedName": "deviceLoginManager(_:startedWith:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate(im)deviceLoginManager:startedWithCodeInfo:", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP06devicedE0_11startedWithyAA0cdE0C_AA0cD8CodeInfoCtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DeviceLoginManagerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "deviceLoginManager:startedWithCodeInfo:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deviceLoginManager", + "printedName": "deviceLoginManager(_:completedWith:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate(im)deviceLoginManager:completedWithResult:error:", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP06devicedE0_13completedWith5erroryAA0cdE0C_AA0cdE6ResultCSgs5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DeviceLoginManagerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "deviceLoginManager:completedWithResult:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKDeviceLoginManagerDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginManagerResult", + "printedName": "DeviceLoginManagerResult", + "children": [ + { + "kind": "Var", + "name": "accessToken", + "printedName": "accessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(py)accessToken", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11accessTokenSo011FBSDKAccessH0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)accessToken", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11accessTokenSo011FBSDKAccessH0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCancelled", + "printedName": "isCancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(py)isCancelled", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11isCancelledSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)isCancelled", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11isCancelledSbvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(token:isCancelled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)initWithToken:isCancelled:", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC5token11isCancelledACSo16FBSDKAccessTokenCSg_Sbtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)init", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginManagerResult", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "DevicePoller", + "printedName": "DevicePoller", + "children": [ + { + "kind": "Function", + "name": "schedule", + "printedName": "schedule(interval:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12DevicePollerV8schedule8interval5blockySu_yyctF", + "mangledName": "$s13FBSDKLoginKit12DevicePollerV8schedule8interval5blockySu_yyctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePoller", + "printedName": "FBSDKLoginKit.DevicePoller", + "usr": "s:13FBSDKLoginKit12DevicePollerV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit12DevicePollerVACycfc", + "mangledName": "$s13FBSDKLoginKit12DevicePollerVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit12DevicePollerV", + "mangledName": "$s13FBSDKLoginKit12DevicePollerV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DevicePolling", + "printedName": "DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DevicePolling", + "printedName": "DevicePolling", + "children": [ + { + "kind": "Function", + "name": "schedule", + "printedName": "schedule(interval:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit13DevicePollingP8schedule8interval5blockySu_yyctF", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP8schedule8interval5blockySu_yyctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DevicePolling>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit13DevicePollingP", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceRequestsHelper", + "printedName": "DeviceRequestsHelper", + "children": [ + { + "kind": "Var", + "name": "mdnsAdvertisementServices", + "printedName": "mdnsAdvertisementServices", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvpZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvgZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getDeviceInfo", + "printedName": "getDeviceInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO03getC4InfoSSyFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO03getC4InfoSSyFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startAdvertisementService", + "printedName": "startAdvertisementService(loginCode:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25startAdvertisementService9loginCode8delegateSbSS_So05NSNetH8Delegate_ptFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25startAdvertisementService9loginCode8delegateSbSS_So05NSNetH8Delegate_ptFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isDelegate", + "printedName": "isDelegate(_:forAdvertisementService:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "NetService", + "printedName": "Foundation.NetService", + "usr": "c:objc(cs)NSNetService" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO10isDelegate_23forAdvertisementServiceSbSo05NSNetjG0_p_So0kJ0CtFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO10isDelegate_23forAdvertisementServiceSbSo05NSNetjG0_p_So0kJ0CtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cleanUpAdvertisementService", + "printedName": "cleanUpAdvertisementService(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO27cleanUpAdvertisementService3forySo05NSNetI8Delegate_p_tFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO27cleanUpAdvertisementService3forySo05NSNetI8Delegate_p_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBLoginButton", + "printedName": "FBLoginButton", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)defaultAudience", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)defaultAudience", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)delegate", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "IBOutlet", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginButtonDelegate", + "printedName": "FBSDKLoginKit.LoginButtonDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)delegate", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginButtonDelegate", + "printedName": "FBSDKLoginKit.LoginButtonDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)permissions", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)permissions", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setPermissions:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tooltipBehavior", + "printedName": "tooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)tooltipBehavior", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)tooltipBehavior", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setTooltipBehavior:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tooltipColorStyle", + "printedName": "tooltipColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)tooltipColorStyle", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)tooltipColorStyle", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setTooltipColorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginTracking", + "printedName": "loginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)loginTracking", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)loginTracking", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setLoginTracking:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)nonce", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)nonce", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setNonce:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "messengerPageId", + "printedName": "messengerPageId", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)messengerPageId", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)messengerPageId", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setMessengerPageId:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authType", + "printedName": "authType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)authType", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)authType", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setAuthType:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codeVerifier", + "printedName": "codeVerifier", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)codeVerifier", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)codeVerifier", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setCodeVerifier:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0CvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0CvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)userID", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)userID", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setUserID:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userName", + "printedName": "userName", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)userName", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)userName", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setUserName:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "elementProvider", + "printedName": "elementProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginProvider", + "printedName": "loginProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)graphRequestFactory", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)graphRequestFactory", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setGraphRequestFactory:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAuthenticated", + "printedName": "isAuthenticated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)isAuthenticated", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15isAuthenticatedSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)isAuthenticated", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15isAuthenticatedSbvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TooltipBehavior", + "printedName": "TooltipBehavior", + "children": [ + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO9automaticyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO9automaticyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "forceDisplay", + "printedName": "forceDisplay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO12forceDisplayyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO12forceDisplayyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "disable", + "printedName": "disable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO7disableyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO7disableyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior?", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginButtonTooltipBehavior", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initWithFrame:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBLoginButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initWithCoder:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:elementProvider:stringProvider:loginProvider:graphRequestFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5frame15elementProvider06stringG005loginG019graphRequestFactoryACSo6CGRectV_AA29UserInterfaceElementProviding_pAA0no6StringQ0_pAA05LoginQ0_pSo010FBSDKGraphkL0_ptcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frame15elementProvider06stringG005loginG019graphRequestFactoryACSo6CGRectV_AA29UserInterfaceElementProviding_pAA0no6StringQ0_pAA05LoginQ0_pSo010FBSDKGraphkL0_ptcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:permissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.Permission]", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5frame11permissionsACSo6CGRectV_Say09FBSDKCoreB010PermissionOGtcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frame11permissionsACSo6CGRectV_Say09FBSDKCoreB010PermissionOGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "didMoveToWindow", + "printedName": "didMoveToWindow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)didMoveToWindow", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15didMoveToWindowyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "didMoveToWindow", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "imageRect", + "printedName": "imageRect(forContentRect:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)imageRectForContentRect:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC9imageRect010forContentF0So6CGRectVAG_tF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "imageRectForContentRect:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "titleRect", + "printedName": "titleRect(forContentRect:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)titleRectForContentRect:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC9titleRect010forContentF0So6CGRectVAG_tF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "titleRectForContentRect:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)layoutSubviews", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14layoutSubviewsyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sizeThatFits", + "printedName": "sizeThatFits(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)sizeThatFits:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12sizeThatFitsySo6CGSizeVAFF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "sizeThatFits:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accessTokenDidChange", + "printedName": "accessTokenDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)accessTokenDidChange:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC20accessTokenDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profileDidChange", + "printedName": "profileDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)profileDidChange:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC16profileDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buttonPressed", + "printedName": "buttonPressed(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)buttonPressed:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13buttonPressedyyypF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeLoginConfiguration", + "printedName": "makeLoginConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)makeLoginConfiguration", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC22makeLoginConfigurationAA0fG0CSgyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initializeContent", + "printedName": "initializeContent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initializeContent", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17initializeContentyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateContentForAccessToken", + "printedName": "updateContentForAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)updateContentForAccessToken", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC27updateContentForAccessTokenyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetContent", + "printedName": "fetchAndSetContent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)fetchAndSetContent", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC18fetchAndSetContentyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateContentForUser", + "printedName": "updateContentForUser(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)updateContentForUser:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC20updateContentForUseryy09FBSDKCoreB07ProfileCSgF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logout", + "printedName": "logout()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)logout", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6logoutyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBLoginTooltipView", + "printedName": "FBLoginTooltipView", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)delegate", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipViewDelegate", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)delegate", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipViewDelegate", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "forceDisplay", + "printedName": "forceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)forceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvp", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)forceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setForceDisplay:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldForceDisplay", + "printedName": "shouldForceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)shouldForceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)shouldForceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setShouldForceDisplay:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvp", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvg", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)init", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tagline:message:colorStyle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "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": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)initWithTagline:message:colorStyle:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC7tagline7message10colorStyleACSSSg_AgA09FBTooltipE0C05ColorI0Otcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithTagline:message:colorStyle:", + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:stringProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProvider06stringH0AcA06ServerG9Providing_p_AA019UserInterfaceStringK0_ptcfc", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProvider06stringH0AcA06ServerG9Providing_p_AA019UserInterfaceStringK0_ptcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(in:arrowPosition:direction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + }, + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)presentInView:withArrowPosition:direction:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC7present2in13arrowPosition9directionySo6UIViewC_So7CGPointVAA09FBTooltipE0C14ArrowDirectionOtF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "presentInView:withArrowPosition:direction:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginTooltipView", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKLoginKit.FBTooltipView", + "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": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBPermission", + "printedName": "FBPermission", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)value", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC5valueSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKPermission(im)value", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC5valueSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)description", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11descriptionSSvp", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)description", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11descriptionSSvg", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)hash", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC4hashSivp", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)hash", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC4hashSivg", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBPermission?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)initWithString:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC6stringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "permissions", + "printedName": "permissions(fromRawPermissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(cm)permissionsFromRawPermissions:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11permissions18fromRawPermissionsShyACGSgShySSG_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "permissionsFromRawPermissions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rawPermissions", + "printedName": "rawPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(cm)rawPermissionsFromPermissions:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC14rawPermissions4fromShySSGShyACG_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "rawPermissionsFromPermissions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)isEqual:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC7isEqualySbypSgF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)init", + "mangledName": "$s13FBSDKLoginKit12FBPermissionCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKPermission", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBTooltipView", + "printedName": "FBTooltipView", + "children": [ + { + "kind": "TypeDecl", + "name": "ArrowDirection", + "printedName": "ArrowDirection", + "children": [ + { + "kind": "Var", + "name": "down", + "printedName": "down", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ArrowDirection.Type) -> FBSDKLoginKit.FBTooltipView.ArrowDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO4downyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO4downyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "up", + "printedName": "up", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ArrowDirection.Type) -> FBSDKLoginKit.FBTooltipView.ArrowDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO2upyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO2upyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKTooltipViewArrowDirection", + "declAttributes": [ + "AccessControl", + "Frozen", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt", + "isEnumExhaustive": true, + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ColorStyle", + "printedName": "ColorStyle", + "children": [ + { + "kind": "Var", + "name": "friendlyBlue", + "printedName": "friendlyBlue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ColorStyle.Type) -> FBSDKLoginKit.FBTooltipView.ColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO12friendlyBlueyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO12friendlyBlueyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "neutralGray", + "printedName": "neutralGray", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ColorStyle.Type) -> FBSDKLoginKit.FBTooltipView.ColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO11neutralGrayyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO11neutralGrayyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle?", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKTooltipColorStyle", + "declAttributes": [ + "AccessControl", + "Frozen", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt", + "isEnumExhaustive": true, + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "displayDuration", + "printedName": "displayDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)displayDuration", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)displayDuration", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setDisplayDuration:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "colorStyle", + "printedName": "colorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)colorStyle", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)colorStyle", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setColorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)message", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)message", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": 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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setMessage:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC7messageSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tagline", + "printedName": "tagline", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)tagline", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)tagline", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": 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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setTagline:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textLabel", + "printedName": "textLabel", + "children": [ + { + "kind": "TypeNominal", + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)textLabel", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC9textLabelSo7UILabelCvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "Final", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)textLabel", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC9textLabelSo7UILabelCvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)init", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tagline:message:colorStyle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + }, + { + "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": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)initWithTagline:message:colorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7tagline7message10colorStyleACSSSg_AgC05ColorH0Otcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithTagline:message:colorStyle:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)presentFromView:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7present4fromySo6UIViewC_tF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "presentFromView:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(in:arrowPosition:direction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + }, + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)presentInView:withArrowPosition:direction:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7present2in13arrowPosition9directionySo6UIViewC_So7CGPointVAC14ArrowDirectionOtF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "presentInView:withArrowPosition:direction:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismiss", + "printedName": "dismiss()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)dismiss", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7dismissyyF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "animateFadeIn", + "printedName": "animateFadeIn()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)animateFadeIn", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC13animateFadeInyyF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "animateFadeIn", + "declAttributes": [ + "Custom", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "draw", + "printedName": "draw(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)drawRect:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC4drawyySo6CGRectVF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "isOpen": true, + "objc_name": "drawRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)layoutSubviews", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14layoutSubviewsyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "isOpen": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)initWithFrame:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "FBSDKTooltipView", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)UIView", + "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": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IdentifiedLoginResultHandler", + "printedName": "IdentifiedLoginResultHandler", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV10identifier33_983F05C521C15D7299B686B606F5D560LL10Foundation4UUIDVvp", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV10identifier33_983F05C521C15D7299B686B606F5D560LL10Foundation4UUIDVvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "closure", + "printedName": "closure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV7closure33_983F05C521C15D7299B686B606F5D560LLyyAA0d7ManagerdE0CSg_s5Error_pSgtcvp", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV7closure33_983F05C521C15D7299B686B606F5D560LLyyAA0d7ManagerdE0CSg_s5Error_pSgtcvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerVyACyAA0d7ManagerdE0CSg_s5Error_pSgtccfc", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerVyACyAA0d7ManagerdE0CSg_s5Error_pSgtccfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "callAsFunction", + "printedName": "callAsFunction(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV14callAsFunctionyyAA0d7ManagerdE0CSg_s5Error_pSgtF", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV14callAsFunctionyyAA0d7ManagerdE0CSg_s5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + }, + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV", + "moduleName": "FBSDKLoginKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginButtonDelegate", + "printedName": "LoginButtonDelegate", + "children": [ + { + "kind": "Function", + "name": "loginButton", + "printedName": "loginButton(_:didCompleteWith:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButton:didCompleteWithResult:error:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05loginD0_15didCompleteWith5erroryAA07FBLoginD0C_AA0c7ManagerC6ResultCSgs5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginButton:didCompleteWithResult:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginButtonDidLogOut", + "printedName": "loginButtonDidLogOut(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButtonDidLogOut:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05loginD9DidLogOutyyAA07FBLoginD0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginButtonWillLogin", + "printedName": "loginButtonWillLogin(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButtonWillLogin:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05logind4WillC0ySbAA07FBLoginD0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", + "sugared_genericSig": "", + "objc_name": "FBSDKLoginButtonDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleterFactory", + "printedName": "LoginCompleterFactory", + "children": [ + { + "kind": "Function", + "name": "createLoginCompleter", + "printedName": "createLoginCompleter(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleting", + "printedName": "FBSDKLoginKit.LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryV06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactory", + "printedName": "FBSDKLoginKit.LoginCompleterFactory", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryVACycfc", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginCompleterFactoryProtocol", + "printedName": "LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleterFactoryProtocol", + "printedName": "LoginCompleterFactoryProtocol", + "children": [ + { + "kind": "Function", + "name": "createLoginCompleter", + "printedName": "createLoginCompleter(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleting", + "printedName": "FBSDKLoginKit.LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleterFactoryProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleting", + "printedName": "LoginCompleting", + "children": [ + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15LoginCompletingP08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15LoginCompletingP08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15LoginCompletingP", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginConfiguration", + "printedName": "LoginConfiguration", + "children": [ + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)nonce", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC5nonceSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)nonce", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC5nonceSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tracking", + "printedName": "tracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)tracking", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingAA0C8TrackingOvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)tracking", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingAA0C8TrackingOvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestedPermissions", + "printedName": "requestedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC20requestedPermissionsShyAA12FBPermissionCGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC20requestedPermissionsShyAA12FBPermissionCGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messengerPageId", + "printedName": "messengerPageId", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)messengerPageId", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC15messengerPageIdSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)messengerPageId", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC15messengerPageIdSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authType", + "printedName": "authType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)authType", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8authTypeSo0a4AuthF0aSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)authType", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8authTypeSo0a4AuthF0aSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codeVerifier", + "printedName": "codeVerifier", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)codeVerifier", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC12codeVerifierAA04CodeF0Cvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)codeVerifier", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC12codeVerifierAA04CodeF0Cvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageIdACSgSaySSG_AA0C8TrackingOS2SSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:authType:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authTypeACSgSaySSG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:authType:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonceACSgSaySSG_AA0C8TrackingOSStcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:messengerPageId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:messengerPageId:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking15messengerPageIdACSgSaySSG_AA0C8TrackingOSSSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:messengerPageId:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:messengerPageId:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "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": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:messengerPageId:authType:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking15messengerPageId8authTypeACSgSaySSG_AA0C8TrackingOSSSgSo0a4AuthK0aSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:messengerPageId:authType:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:codeVerifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgSaySSG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8trackingACSgSaySSG_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithTracking:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingACSgAA0C8TrackingO_tcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithTracking:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:codeVerifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgShy09FBSDKCoreB010PermissionOG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgShy09FBSDKCoreB010PermissionOG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)init", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginConfiguration", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginError", + "printedName": "LoginError", + "children": [ + { + "kind": "Var", + "name": "_nsError", + "printedName": "_nsError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorCode", + "printedName": "errorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV9errorCodeSivp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9errorCodeSivp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "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:13FBSDKLoginKit10LoginErrorV9errorCodeSivg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9errorCodeSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorUserInfo", + "printedName": "errorUserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_nsError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0ACSo7NSErrorC_tcfc", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0ACSo7NSErrorC_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit10LoginErrorV_8userInfoAcA0cD4CodeO_SDySSypGtcfc", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV_8userInfoAcA0cD4CodeO_SDySSypGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDomain", + "printedName": "errorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV11errorDomainSSvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV11errorDomainSSvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV11errorDomainSSvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV11errorDomainSSvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "passwordChanged", + "printedName": "passwordChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userCheckpointed", + "printedName": "userCheckpointed", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userMismatch", + "printedName": "userMismatch", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unconfirmedUser", + "printedName": "unconfirmedUser", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "systemAccountAppDisabled", + "printedName": "systemAccountAppDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "systemAccountUnavailable", + "printedName": "systemAccountUnavailable", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "badChallengeString", + "printedName": "badChallengeString", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidIDToken", + "printedName": "invalidIDToken", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "missingAccessToken", + "printedName": "missingAccessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit10LoginErrorV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "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:13FBSDKLoginKit10LoginErrorV4hash4intoys6HasherVz_tF", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV9hashValueSivp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9hashValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV9hashValueSivg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9hashValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit10LoginErrorV", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginErrorCode", + "printedName": "LoginErrorCode", + "children": [ + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorReserved", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8reservedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUnknown", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO7unknownyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "passwordChanged", + "printedName": "passwordChanged", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorPasswordChanged", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO15passwordChangedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "userCheckpointed", + "printedName": "userCheckpointed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUserCheckpointed", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO16userCheckpointedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "userMismatch", + "printedName": "userMismatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUserMismatch", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO12userMismatchyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "unconfirmedUser", + "printedName": "unconfirmedUser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUnconfirmedUser", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO15unconfirmedUseryA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "systemAccountAppDisabled", + "printedName": "systemAccountAppDisabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorSystemAccountAppDisabled", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO24systemAccountAppDisabledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "systemAccountUnavailable", + "printedName": "systemAccountUnavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorSystemAccountUnavailable", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO24systemAccountUnavailableyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "badChallengeString", + "printedName": "badChallengeString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorBadChallengeString", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO18badChallengeStringyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "invalidIDToken", + "printedName": "invalidIDToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorInvalidIDToken", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO14invalidIDTokenyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "missingAccessToken", + "printedName": "missingAccessToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorMissingAccessToken", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO18missingAccessTokenyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 10 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit14LoginErrorCodeO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit14LoginErrorCodeO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginErrorCodeO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Var", + "name": "LoginErrorDomain", + "printedName": "LoginErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16LoginErrorDomainSSvp", + "mangledName": "$s13FBSDKLoginKit16LoginErrorDomainSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "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:13FBSDKLoginKit16LoginErrorDomainSSvg", + "mangledName": "$s13FBSDKLoginKit16LoginErrorDomainSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginEventLogging", + "printedName": "LoginEventLogging", + "children": [ + { + "kind": "Var", + "name": "flushBehavior", + "printedName": "flushBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "FlushBehavior", + "printedName": "FBSDKCoreKit.AppEvents.FlushBehavior", + "usr": "c:@E@FBSDKAppEventsFlushBehavior" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvp", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FlushBehavior", + "printedName": "FBSDKCoreKit.AppEvents.FlushBehavior", + "usr": "c:@E@FBSDKAppEventsFlushBehavior" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvg", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logInternalEvent", + "printedName": "logInternalEvent(_:parameters:isImplicitlyLogged:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP011logInternalD0_10parameters18isImplicitlyLoggedySo08FBSDKAppD4Namea_SDySo0ld9ParameterM0aypGSgSbtF", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP011logInternalD0_10parameters18isImplicitlyLoggedySo08FBSDKAppD4Namea_SDySo0ld9ParameterM0aypGSgSbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP5flushyyF", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP5flushyyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginManager", + "printedName": "LoginManager", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)defaultAudience", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)defaultAudience", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "handler", + "printedName": "handler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)configuration", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC13configurationAA0C13ConfigurationCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)configuration", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC13configurationAA0C13ConfigurationCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestedPermissions", + "printedName": "requestedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setRequestedPermissions:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "usedSafariSession", + "printedName": "usedSafariSession", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)usedSafariSession", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)usedSafariSession", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setUsedSafariSession:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isPerformingLogin", + "printedName": "isPerformingLogin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)isPerformingLogin", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC012isPerformingC0Sbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)isPerformingLogin", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC012isPerformingC0Sbvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Lazy" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(defaultAudience:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)initWithDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAcA07DefaultF0O_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(viewController:configuration: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" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginManagerC5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:from:handler:)", + "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" + }, + { + "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": "((FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logInWithPermissions:fromViewController:handler:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0cdC6ResultCSg_s5Error_pSgtcSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "logInWithPermissions:fromViewController:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:viewController:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.Permission]", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + }, + { + "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": "((FBSDKLoginKit.LoginResult) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginManagerC5logIn11permissions14viewController10completionySay09FBSDKCoreB010PermissionOG_So06UIViewI0CSgyAA0C6ResultOcSgtF", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn11permissions14viewController10completionySay09FBSDKCoreB010PermissionOG_So06UIViewI0CSgyAA0C6ResultOcSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reauthorizeDataAccess", + "printedName": "reauthorizeDataAccess(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)reauthorizeDataAccess:handler:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC21reauthorizeDataAccess4from7handlerySo16UIViewControllerC_yAA0cdC6ResultCSg_s5Error_pSgtctF", + "moduleName": "FBSDKLoginKit", + "objc_name": "reauthorizeDataAccess:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logOut", + "printedName": "logOut()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logOut", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6logOutyyF", + "moduleName": "FBSDKLoginKit", + "objc_name": "logOut", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeAuthentication", + "printedName": "completeAuthentication(parameters:expectChallenge:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)completeAuthenticationWithParameters:expectChallenge:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22completeAuthentication10parameters15expectChallengeyAA01_C20CompletionParametersC_SbtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logInParameters", + "printedName": "logInParameters(configuration:loggingToken:authenticationMethod:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logInParametersWithConfiguration:loggingToken:authenticationMethod:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15logInParameters13configuration12loggingToken20authenticationMethodSDyS2SGSgAA0C13ConfigurationCSg_SSSgSStF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateReauthentication", + "printedName": "validateReauthentication(accessToken:loginResult:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)validateReauthenticationWithAccessToken:loginResult:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC24validateReauthentication11accessToken11loginResultySo011FBSDKAccessH0C_AA0cdcJ0CSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRecentlyGrantedPermissions", + "printedName": "getRecentlyGrantedPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)getRecentlyGrantedPermissionsFrom:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC29getRecentlyGrantedPermissions4fromShyAA12FBPermissionCGAH_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRecentlyDeclinedPermissions", + "printedName": "getRecentlyDeclinedPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)getRecentlyDeclinedPermissionsFrom:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC30getRecentlyDeclinedPermissions4fromShyAA12FBPermissionCGAH_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "storeExpectedNonce", + "printedName": "storeExpectedNonce(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)storeExpectedNonce:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18storeExpectedNonceyySSSgF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)init", + "mangledName": "$s13FBSDKLoginKit12LoginManagerCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "makeOpener", + "printedName": "makeOpener()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(cm)makeOpener", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC10makeOpenerACyFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "makeOpener", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC11application_4open17sourceApplication10annotationSbSo13UIApplicationCSg_10Foundation3URLVSgSSSgypSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "canOpen", + "printedName": "canOpen(_:for:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)canOpenURL:forApplication:sourceApplication:annotation:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7canOpen_3for17sourceApplication10annotationSb10Foundation3URLV_So13UIApplicationCSgSSSgypSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "canOpenURL:forApplication:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)applicationDidBecomeActive:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC26applicationDidBecomeActiveyySo13UIApplicationCF", + "moduleName": "FBSDKLoginKit", + "objc_name": "applicationDidBecomeActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isAuthenticationURL", + "printedName": "isAuthenticationURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)isAuthenticationURL:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19isAuthenticationURLySb10Foundation0G0VF", + "moduleName": "FBSDKLoginKit", + "objc_name": "isAuthenticationURL:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldStopPropagation", + "printedName": "shouldStopPropagation(of:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)shouldStopPropagationOfURL:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC21shouldStopPropagation2ofSb10Foundation3URLV_tF", + "moduleName": "FBSDKLoginKit", + "objc_name": "shouldStopPropagationOfURL:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenWallet", + "printedName": "authenticationTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "keychainStore", + "printedName": "keychainStore", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginCompleterFactory", + "printedName": "loginCompleterFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profileProvider", + "printedName": "profileProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenWallet:authenticationTokenWallet:errorFactory:graphRequestFactory:internalUtility:keychainStore:loginCompleterFactory:profileProvider:settings:urlOpener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWallet014authenticationhI012errorFactory012graphRequestL015internalUtility13keychainStore014loginCompleterL015profileProvider8settings9urlOpenerAESo011FBSDKAccessH9Providing_pXp_So019FBSDKAuthenticationH9Providing_pXpSo18FBSDKErrorCreating_pSo010FBSDKGraphnL0_pSo27FBSDKAppAvailabilityChecker_So26FBSDKAppURLSchemeProvidingSo15FBSDKURLHostingpSo013FBSDKKeychainR0_pAA0ctL8Protocol_p09FBSDKCoreB016ProfileProviding_pXpAY16SettingsProtocol_pSo14FBSDKURLOpener_ptcfc", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWallet014authenticationhI012errorFactory012graphRequestL015internalUtility13keychainStore014loginCompleterL015profileProvider8settings9urlOpenerAESo011FBSDKAccessH9Providing_pXp_So019FBSDKAuthenticationH9Providing_pXpSo18FBSDKErrorCreating_pSo010FBSDKGraphnL0_pSo27FBSDKAppAvailabilityChecker_So26FBSDKAppURLSchemeProvidingSo15FBSDKURLHostingpSo013FBSDKKeychainR0_pAA0ctL8Protocol_p09FBSDKCoreB016ProfileProviding_pXpAY16SettingsProtocol_pSo14FBSDKURLOpener_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginProviding", + "printedName": "LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginManagerLogger", + "printedName": "LoginManagerLogger", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extras", + "printedName": "extras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastResult", + "printedName": "lastResult", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastError", + "printedName": "lastError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authMethod", + "printedName": "authMethod", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loggingToken", + "printedName": "loggingToken", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 5, + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(parameters:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10parameters8trackingACSgSDySSypGSg_AA0C8TrackingOtcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10parameters8trackingACSgSDySSypGSg_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(loggingToken:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "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": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12loggingToken8trackingACSgSSSg_AA0C8TrackingOtcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingToken8trackingACSgSSSg_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startSession", + "printedName": "startSession(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12startSession3foryAA0cD0C_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12startSession3foryAA0cD0C_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endSession", + "printedName": "endSession()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10endSessionyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10endSessionyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(authenticationMethod:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC5start20authenticationMethodySS_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC5start20authenticationMethodySS_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endLogin", + "printedName": "endLogin(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC03endC06result5erroryAA0cdC6ResultCSg_So7NSErrorCSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC03endC06result5erroryAA0cdC6ResultCSg_So7NSErrorCSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postLoginHeartbeat", + "printedName": "postLoginHeartbeat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC04postC9HeartbeatyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC04postC9HeartbeatyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "heartbeatTimerDidFire", + "printedName": "heartbeatTimerDidFire()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC21heartbeatTimerDidFireyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC21heartbeatTimerDidFireyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "willAttemptAppSwitchingBehavior", + "printedName": "willAttemptAppSwitchingBehavior(urlScheme:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC31willAttemptAppSwitchingBehavior9urlSchemeySS_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC31willAttemptAppSwitchingBehavior9urlSchemeySS_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getClientState", + "printedName": "getClientState(authenticationMethod:existingState:logger:)", + "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": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC14getClientState20authenticationMethod08existingH06loggerSSSgAH_SDySSypGSgACSgtFZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC14getClientState20authenticationMethod08existingH06loggerSSSgAH_SDySSypGSgACSgtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parametersForNewEvent", + "printedName": "parametersForNewEvent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC21parametersForNewEventSDySo08FBSDKAppI13ParameterNameaypGyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC21parametersForNewEventSDySo08FBSDKAppI13ParameterNameaypGyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logEvent", + "printedName": "logEvent(_:params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6paramsySo08FBSDKAppG4Namea_SDySo0ig9ParameterJ0aypGSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6paramsySo08FBSDKAppG4Namea_SDySo0ig9ParameterJ0aypGSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logEvent", + "printedName": "logEvent(_:result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6result5errorySo08FBSDKAppG4Namea_SSSo7NSErrorCSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6result5errorySo08FBSDKAppG4Namea_SSSo7NSErrorCSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventLogger:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AeA0C12EventLogging_p_tcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AeA0C12EventLogging_p_tcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginManagerLoginResult", + "printedName": "LoginManagerLoginResult", + "children": [ + { + "kind": "Var", + "name": "token", + "printedName": "token", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)token", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5tokenSo16FBSDKAccessTokenCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)token", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5tokenSo16FBSDKAccessTokenCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)authenticationToken", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19authenticationTokenSo019FBSDKAuthenticationG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)authenticationToken", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19authenticationTokenSo019FBSDKAuthenticationG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCancelled", + "printedName": "isCancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)isCancelled", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC11isCancelledSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)isCancelled", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC11isCancelledSbvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "grantedPermissions", + "printedName": "grantedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)grantedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC18grantedPermissionsShySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)grantedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC18grantedPermissionsShySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19declinedPermissionsShySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19declinedPermissionsShySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggingExtras", + "printedName": "loggingExtras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)loggingExtras", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC13loggingExtrasSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)loggingExtras", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC13loggingExtrasSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(token:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5token19authenticationToken11isCancelled18grantedPermissions08declinedL0ACSo011FBSDKAccessH0CSg_So019FBSDKAuthenticationH0CSgSbShySSGAOtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addLoggingExtra", + "printedName": "addLoggingExtra(_:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)addLoggingExtra:forKey:", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC15addLoggingExtra_6forKeyyyp_SStF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)init", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginManagerLoginResult", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "LoginManagerState", + "printedName": "LoginManagerState", + "children": [ + { + "kind": "Var", + "name": "idle", + "printedName": "idle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO4idleyA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO4idleyA2CmF", + "moduleName": "FBSDKLoginKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO5startyA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO5startyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "performingLogin", + "printedName": "performingLogin", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO010performingC0yA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO010performingC0yA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerState?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit17LoginManagerStateO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "Int", + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginProviding", + "printedName": "LoginProviding", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovp", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovg", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovs", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(viewController:configuration: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": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:from:handler:)", + "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" + }, + { + "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": "((FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0c7ManagerC6ResultCSg_s5Error_pSgtcSgtF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0c7ManagerC6ResultCSg_s5Error_pSgtcSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logOut", + "printedName": "logOut()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP6logOutyyF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP6logOutyyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit14LoginProvidingP", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginRecoveryAttempter", + "printedName": "LoginRecoveryAttempter", + "children": [ + { + "kind": "Function", + "name": "attemptRecovery", + "printedName": "attemptRecovery(from:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "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": "s:13FBSDKLoginKit22LoginRecoveryAttempterC07attemptD04from10completionys5Error_p_ySbctF", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC07attemptD04from10completionys5Error_p_ySbctF", + "moduleName": "FBSDKLoginKit", + "objc_name": "attemptRecoveryFromError:completionHandler:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginRecoveryAttempter", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterCACycfc", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterCACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "loginProvider", + "printedName": "loginProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvp", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvg", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvs", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvM", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(loginProvider:accessTokenProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProvider011accessTokenI0AeA0C9Providing_p_So011FBSDKAccesskL0_pXptcfc", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProvider011accessTokenI0AeA0C9Providing_p_So011FBSDKAccesskL0_pXptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginResult", + "printedName": "LoginResult", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> (Swift.Set, Swift.Set, FBSDKCoreKit.AccessToken?) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Set, Swift.Set, FBSDKCoreKit.AccessToken?) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(granted: Swift.Set, declined: Swift.Set, token: FBSDKCoreKit.AccessToken?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO7successyACShy09FBSDKCoreB010PermissionOG_AHSo16FBSDKAccessTokenCSgtcACmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO7successyACShy09FBSDKCoreB010PermissionOG_AHSo16FBSDKAccessTokenCSgtcACmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO9cancelledyA2CmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO9cancelledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> (Swift.Error) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO6failedyACs5Error_pcACmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO6failedyACs5Error_pcACmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit11LoginResultO6result5errorAcA0c7ManagercD0CSg_s5Error_pSgtcfc", + "mangledName": "$s13FBSDKLoginKit11LoginResultO6result5errorAcA0c7ManagercD0CSg_s5Error_pSgtcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "loginManagerResult", + "printedName": "loginManagerResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvp", + "mangledName": "$s13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvg", + "mangledName": "$s13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvg", + "moduleName": "FBSDKLoginKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit11LoginResultO5errors5Error_pSgvp", + "mangledName": "$s13FBSDKLoginKit11LoginResultO5errors5Error_pSgvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit11LoginResultO5errors5Error_pSgvg", + "mangledName": "$s13FBSDKLoginKit11LoginResultO5errors5Error_pSgvg", + "moduleName": "FBSDKLoginKit", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit11LoginResultO", + "mangledName": "$s13FBSDKLoginKit11LoginResultO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "Frozen", + "RawDocComment" + ], + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "LoginTooltipViewDelegate", + "printedName": "LoginTooltipViewDelegate", + "children": [ + { + "kind": "Function", + "name": "loginTooltipView", + "printedName": "loginTooltipView(_:shouldAppear:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipView:shouldAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE0_12shouldAppearSbAA07FBLogindE0C_SbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipView:shouldAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginTooltipViewWillAppear", + "printedName": "loginTooltipViewWillAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipViewWillAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE10WillAppearyyAA07FBLogindE0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipViewWillAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginTooltipViewWillNotAppear", + "printedName": "loginTooltipViewWillNotAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipViewWillNotAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE13WillNotAppearyyAA07FBLogindE0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipViewWillNotAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKLoginTooltipViewDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginTracking", + "printedName": "LoginTracking", + "children": [ + { + "kind": "Var", + "name": "enabled", + "printedName": "enabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginTracking.Type) -> FBSDKLoginKit.LoginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginTracking.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking@FBSDKLoginTrackingEnabled", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO7enabledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "limited", + "printedName": "limited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginTracking.Type) -> FBSDKLoginKit.LoginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginTracking.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking@FBSDKLoginTrackingLimited", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO7limitedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTracking?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13LoginTrackingO8rawValueACSgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueACSgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13LoginTrackingO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13LoginTrackingO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginTracking", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginURLCompleter", + "printedName": "LoginURLCompleter", + "children": [ + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginURLCompleter", + "printedName": "FBSDKLoginKit.LoginURLCompleter", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV13urlParameters5appIDACSDySSypG_SStcfc", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV13urlParameters5appIDACSDySSypG_SStcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetPropertiesFor", + "printedName": "fetchAndSetPropertiesFor(parameters:nonce:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV24fetchAndSetPropertiesFor10parameters5nonce7handleryAA01_C20CompletionParametersC_SSyAIctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV24fetchAndSetPropertiesFor10parameters5nonce7handleryAA01_C20CompletionParametersC_SSyAIctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setParameters", + "printedName": "setParameters(values:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV13setParameters6values5appIDySDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV13setParameters6values5appIDySDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exchangeNonceForTokenWith", + "printedName": "exchangeNonceForTokenWith(handler:authenticationNonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV25exchangeNonceForTokenWith7handler014authenticationF0yyAA01_C20CompletionParametersCc_SStF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV25exchangeNonceForTokenWith7handler014authenticationF0yyAA01_C20CompletionParametersCc_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exchangeCodeForTokensWith", + "printedName": "exchangeCodeForTokensWith(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV25exchangeCodeForTokensWith5nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV25exchangeCodeForTokensWith5nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profile", + "printedName": "profile(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV7profile4with09FBSDKCoreB07ProfileCSgAF25AuthenticationTokenClaimsC_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV7profile4with09FBSDKCoreB07ProfileCSgAF25AuthenticationTokenClaimsC_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "expirationDateFrom", + "printedName": "expirationDateFrom(parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV18expirationDateFrom10parameters10Foundation0F0VSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV18expirationDateFrom10parameters10Foundation0F0VSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dataAccessExpirationDateFrom", + "printedName": "dataAccessExpirationDateFrom(parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV28dataAccessExpirationDateFrom10parameters10Foundation0H0VSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV28dataAccessExpirationDateFrom10parameters10Foundation0H0VSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "challenge", + "printedName": "challenge(from:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV9challenge4fromSSSgSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV9challenge4fromSSSgSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV5error4froms5Error_pSgSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV5error4froms5Error_pSgSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "profileFactory", + "printedName": "profileFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenCreator", + "printedName": "authenticationTokenCreator", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profileFactory:authenticationTokenCreator:graphRequestFactory:internalUtility:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactory26authenticationTokenCreator012graphRequestH015internalUtility05errorH0AeA15ProfileCreating_p_AA014AuthenticationjR0_pSo010FBSDKGraphmH0_pSo15FBSDKURLHosting_pSo010FBSDKErrorR0_ptcfc", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactory26authenticationTokenCreator012graphRequestH015internalUtility05errorH0AeA15ProfileCreating_p_AA014AuthenticationjR0_pSo010FBSDKGraphmH0_pSo15FBSDKURLHosting_pSo010FBSDKErrorR0_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginCompleting", + "printedName": "LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginUtility", + "printedName": "LoginUtility", + "children": [ + { + "kind": "Function", + "name": "stringForAudience", + "printedName": "stringForAudience(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO17stringForAudienceySSAA07DefaultG0OFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO17stringForAudienceySSAA07DefaultG0OFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getQueryParameters", + "printedName": "getQueryParameters(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO18getQueryParameters4fromSDySSypGSg10Foundation3URLV_tFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO18getQueryParameters4fromSDySSypGSg10Foundation3URLV_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUserID", + "printedName": "getUserID(from:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO9getUserID4fromSSSgAF_tFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO9getUserID4fromSSSgAF_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit12LoginUtilityO", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO", + "moduleName": "FBSDKLoginKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV13dependentType33_8991E3BB914DA09983850496725CF25BLLxmvp", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV13dependentType33_8991E3BB914DA09983850496725CF25BLLxmvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKLoginKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MonotonicTimer", + "printedName": "MonotonicTimer", + "children": [ + { + "kind": "Function", + "name": "getCurrentSeconds", + "printedName": "getCurrentSeconds()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV17getCurrentSecondsSdyF", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerV17getCurrentSecondsSdyF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MonotonicTimer", + "printedName": "FBSDKLoginKit.MonotonicTimer", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit14MonotonicTimerVACycfc", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerV", + "moduleName": "FBSDKLoginKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NonceValidator", + "printedName": "NonceValidator", + "children": [ + { + "kind": "Function", + "name": "isValid", + "printedName": "isValid(nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14NonceValidatorO7isValid5nonceSbSS_tFZ", + "mangledName": "$s13FBSDKLoginKit14NonceValidatorO7isValid5nonceSbSS_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit14NonceValidatorO", + "mangledName": "$s13FBSDKLoginKit14NonceValidatorO", + "moduleName": "FBSDKLoginKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileCreating", + "printedName": "ProfileCreating", + "children": [ + { + "kind": "Function", + "name": "createProfile", + "printedName": "createProfile(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.ProfileCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileFactory", + "printedName": "ProfileFactory", + "children": [ + { + "kind": "Function", + "name": "createProfile", + "printedName": "createProfile(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14ProfileFactoryC06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryC06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileFactory", + "printedName": "FBSDKLoginKit.ProfileFactory", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory(im)init", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ProfileCreating", + "printedName": "ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConfigurationProviding", + "printedName": "ServerConfigurationProviding", + "children": [ + { + "kind": "Function", + "name": "loadServerConfiguration", + "printedName": "loadServerConfiguration(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKLoginTooltip", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip", + "usr": "c:objc(cs)FBSDKLoginTooltip" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP04loadcD010completionyySo0A7TooltipCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP04loadcD010completionyySo0A7TooltipCSg_s5Error_pSgtcSg_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.ServerConfigurationProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceElementProviding", + "printedName": "UserInterfaceElementProviding", + "children": [ + { + "kind": "Function", + "name": "topMostViewController", + "printedName": "topMostViewController()", + "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": "Func", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP21topMostViewControllerSo06UIViewJ0CSgyF", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP21topMostViewControllerSo06UIViewJ0CSgyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceElementProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewController", + "printedName": "viewController(for:)", + "children": [ + { + "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": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP14viewController3forSo06UIViewH0CSgSo0J0C_tF", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP14viewController3forSo06UIViewH0CSgSo0J0C_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceElementProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "children": [ + { + "kind": "Var", + "name": "bundleForStrings", + "printedName": "bundleForStrings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceStringProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "_LoginCompletionParameters", + "printedName": "_LoginCompletionParameters", + "children": [ + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)authenticationToken", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)authenticationToken", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAuthenticationToken:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profile", + "printedName": "profile", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)profile", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)profile", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setProfile:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenString", + "printedName": "accessTokenString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)accessTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)accessTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAccessTokenString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nonceString", + "printedName": "nonceString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)nonceString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)nonceString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setNonceString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenString", + "printedName": "authenticationTokenString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)authenticationTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)authenticationTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAuthenticationTokenString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)code", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)code", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setCode:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)permissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)permissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setDeclinedPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "expiredPermissions", + "printedName": "expiredPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)expiredPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)expiredPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setExpiredPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)appID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)appID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAppID:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)userID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)userID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setUserID:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)error", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)error", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setError:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "expirationDate", + "printedName": "expirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)expirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)expirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setExpirationDate:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataAccessExpirationDate", + "printedName": "dataAccessExpirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)dataAccessExpirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)dataAccessExpirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setDataAccessExpirationDate:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "challenge", + "printedName": "challenge", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)challenge", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)challenge", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setChallenge:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphDomain", + "printedName": "graphDomain", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)graphDomain", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)graphDomain", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setGraphDomain:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)init", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginCompletionParameters", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEvents", + "printedName": "AppEvents", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAppEvents", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAppEvents", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "LoginEventLogging", + "printedName": "LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InternalUtility", + "printedName": "InternalUtility", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKInternalUtility", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKInternalUtility", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceElementProviding", + "printedName": "UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "loginButtonDidTap", + "printedName": "loginButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "smartLoginService", + "printedName": "smartLoginService", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthStart", + "printedName": "sessionAuthStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthEnd", + "printedName": "sessionAuthEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthMethodStart", + "printedName": "sessionAuthMethodStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthMethodEnd", + "printedName": "sessionAuthMethodEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthHeartbeat", + "printedName": "sessionAuthHeartbeat", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName", + "moduleName": "FBSDKCoreKit", + "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": "ServerConfigurationProvider", + "printedName": "ServerConfigurationProvider", + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ServerConfigurationProviding", + "printedName": "ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP" + }, + { + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/AuthenticationTokenFactory.swift", + "kind": "StringLiteral", + "offset": 731, + "length": 29, + "value": "\"-----BEGIN CERTIFICATE-----\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/AuthenticationTokenFactory.swift", + "kind": "StringLiteral", + "offset": 784, + "length": 27, + "value": "\"-----END CERTIFICATE-----\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1180, + "length": 2, + "value": "72" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1231, + "length": 2, + "value": "43" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1238, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 964, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 8, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 964, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 8, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginCodeInfo.swift", + "kind": "IntegerLiteral", + "offset": 850, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginCodeInfo.swift", + "kind": "StringLiteral", + "offset": 410, + "length": 19, + "value": "\"FBSDKLoginKit.DeviceLoginCodeInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "Dictionary", + "offset": 692, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 1994, + "length": 7, + "value": "1349172" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 7, + "value": "1349173" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 7, + "value": "1349174" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2268, + "length": 7, + "value": "1349152" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 1994, + "length": 7, + "value": "1349172" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 7, + "value": "1349173" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 7, + "value": "1349174" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2268, + "length": 7, + "value": "1349152" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManager.swift", + "kind": "BooleanLiteral", + "offset": 1341, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManager.swift", + "kind": "StringLiteral", + "offset": 803, + "length": 18, + "value": "\"FBSDKLoginKit.DeviceLoginManager\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManagerResult.swift", + "kind": "StringLiteral", + "offset": 411, + "length": 24, + "value": "\"FBSDKLoginKit.DeviceLoginManagerResult\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 908, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 946, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1018, + "length": 7, + "value": "\"fbsdk\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1051, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1171, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1182, + "length": 3, + "value": "\"|\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "IntegerLiteral", + "offset": 1227, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1370, + "length": 5, + "value": "\"dev\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1450, + "length": 11, + "value": "\"_fb._tcp.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "Array", + "offset": 1814, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "BooleanLiteral", + "offset": 3428, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4249, + "length": 12, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4418, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4249, + "length": 12, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4418, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4487, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4524, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4558, + "length": 4, + "value": "28.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4592, + "length": 3, + "value": "8.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4637, + "length": 3, + "value": "8.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 1202, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/FBPermission.swift", + "kind": "StringLiteral", + "offset": 456, + "length": 12, + "value": "\"FBSDKLoginKit.FBPermission\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 752, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 752, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1041, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1041, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1137, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1181, + "length": 5, + "value": "0.001" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1226, + "length": 3, + "value": "1.1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1273, + "length": 4, + "value": "0.98" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1319, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1364, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1425, + "length": 2, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1471, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1519, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1602, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1650, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1731, + "length": 4, + "value": "0x6e" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1738, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1752, + "length": 4, + "value": "0x9c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1759, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1772, + "length": 4, + "value": "0xf5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1779, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1793, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 4, + "value": "0x49" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1833, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1847, + "length": 4, + "value": "0x74" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1854, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1867, + "length": 4, + "value": "0xc6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1874, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1888, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1970, + "length": 4, + "value": "0x51" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1977, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1991, + "length": 4, + "value": "0x50" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1998, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2011, + "length": 4, + "value": "0x4f" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2018, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2032, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2065, + "length": 4, + "value": "0x2d" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2072, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2086, + "length": 4, + "value": "0x2c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2093, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2106, + "length": 4, + "value": "0x2c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2113, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2127, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2425, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 3318, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 3560, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 3936, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 3970, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4074, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4113, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4158, + "length": 3, + "value": "185" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4206, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 4253, + "length": 4, + "value": "2.5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "Array", + "offset": 4300, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "StringLiteral", + "offset": 489, + "length": 13, + "value": "\"FBSDKLoginKit.FBTooltipView\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 307, + "length": 25, + "value": "\"fb_login_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 413, + "length": 24, + "value": "\"fb_smart_login_service\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 605, + "length": 23, + "value": "\"fb_mobile_login_start\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 762, + "length": 26, + "value": "\"fb_mobile_login_complete\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 924, + "length": 30, + "value": "\"fb_mobile_login_method_start\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 1090, + "length": 33, + "value": "\"fb_mobile_login_method_complete\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 1259, + "length": 27, + "value": "\"fb_mobile_login_heartbeat\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginConfiguration.swift", + "kind": "Array", + "offset": 9284, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginConfiguration.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 18, + "value": "\"FBSDKLoginKit.LoginConfiguration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "Dictionary", + "offset": 679, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2931, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2983, + "length": 7, + "value": "301" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3059, + "length": 15, + "value": "302" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3165, + "length": 16, + "value": "303" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3272, + "length": 12, + "value": "304" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3367, + "length": 15, + "value": "305" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3579, + "length": 24, + "value": "306" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 24, + "value": "307" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 18, + "value": "308" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3857, + "length": 14, + "value": "309" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3939, + "length": 18, + "value": "310" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2931, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2983, + "length": 7, + "value": "301" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3059, + "length": 15, + "value": "302" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3165, + "length": 16, + "value": "303" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3272, + "length": 12, + "value": "304" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3367, + "length": 15, + "value": "305" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3579, + "length": 24, + "value": "306" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 24, + "value": "307" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 18, + "value": "308" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3857, + "length": 14, + "value": "309" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3939, + "length": 18, + "value": "310" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "BooleanLiteral", + "offset": 1430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1561, + "length": 26, + "value": "\"expected_login_challenge\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1619, + "length": 22, + "value": "\"expected_login_nonce\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1680, + "length": 30, + "value": "\"expected_login_code_verifier\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "IntegerLiteral", + "offset": 1771, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1808, + "length": 15, + "value": "\"\/dialog\/oauth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1900, + "length": 41, + "value": "\"com.apple.SafariServices.Authentication\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1982, + "length": 59, + "value": "\"com.apple.AuthenticationServices.WebAuthenticationSession\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2245, + "length": 14, + "value": "\"browser_auth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2298, + "length": 11, + "value": "\"sfvc_auth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2562, + "length": 82, + "value": "\"Unable to find main bundle identifier. Cannot create keychain service identifier\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2734, + "length": 51, + "value": "\"com.facebook.sdk.loginmanager.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2784, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 481, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 520, + "length": 31, + "value": "\"com.facebook.sdk_client_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 646, + "length": 18, + "value": "\"0_auth_logger_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 717, + "length": 16, + "value": "\"1_timestamp_ms\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 10, + "value": "\"2_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 10, + "value": "\"3_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 910, + "length": 14, + "value": "\"4_error_code\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 980, + "length": 17, + "value": "\"5_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1047, + "length": 10, + "value": "\"6_extras\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1113, + "length": 17, + "value": "\"7_logging_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1193, + "length": 22, + "value": "\"declined_permissions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1288, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1339, + "length": 21, + "value": "\"inner_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1404, + "length": 52, + "value": "\"com.facebook.sdk:FBSDKErrorLocalizedDescriptionKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 58, + "value": "\"com.facebook.sdk:FBSDKGraphRequestErrorGraphErrorCodeKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1614, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1655, + "length": 24, + "value": "\"com.facebook.sdk.login\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1614, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1655, + "length": 24, + "value": "\"com.facebook.sdk.login\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1758, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1758, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManagerLoginResult.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 23, + "value": "\"FBSDKLoginKit.LoginManagerLoginResult\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginTracking.swift", + "kind": "IntegerLiteral", + "offset": 506, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginTracking.swift", + "kind": "IntegerLiteral", + "offset": 506, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/MonotonicTimer.swift", + "kind": "IntegerLiteral", + "offset": 387, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/MonotonicTimer.swift", + "kind": "StringLiteral", + "offset": 413, + "length": 57, + "value": "\"Unable to get timebase information for monotomic timing\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 00000000..5753c0fd --- /dev/null +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,390 @@ +// 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-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import FBSDKCoreKit +import FBSDKCoreKit_Basics +@_exported import FBSDKLoginKit +import Foundation +import Security +import Swift +import UIKit +import _Concurrency +import _StringProcessing +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKCodeVerifier) final public class CodeVerifier : ObjectiveC.NSObject { + @objc final public let value: Swift.String + @objc final public var challenge: Swift.String { + @objc get + } + @objc(initWithString:) convenience public init?(string: Swift.String) + @objc override convenience dynamic public init() + @objc deinit +} +@objc(FBSDKDefaultAudience) public enum DefaultAudience : Swift.UInt { + case friends + case onlyMe + case everyone + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } +} +@objcMembers @objc(FBSDKDeviceLoginCodeInfo) final public class DeviceLoginCodeInfo : ObjectiveC.NSObject { + @objc final public let identifier: Swift.String + @objc final public let loginCode: Swift.String + @objc final public let verificationURL: Foundation.URL + @objc final public let expirationDate: Foundation.Date + @objc final public let pollingInterval: Swift.UInt + @objc public init(identifier: Swift.String, loginCode: Swift.String, verificationURL: Foundation.URL, expirationDate: Foundation.Date, pollingInterval: Swift.UInt) + @objc deinit +} +public struct DeviceLoginError : Foundation.CustomNSError, Swift.Hashable { + public let errorCode: Swift.Int + public let errorUserInfo: [Swift.String : Any] + public init(_nsError nsError: Foundation.NSError) + public init(_ code: FBSDKLoginKit.DeviceLoginError.Code, userInfo: [Swift.String : Any] = [:]) + public static var errorDomain: Swift.String { + get + } + public typealias Code = FBSDKLoginKit.DeviceLoginErrorCode + public static var excessivePolling: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var authorizationDeclined: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var authorizationPending: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var codeExpired: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static func == (lhs: FBSDKLoginKit.DeviceLoginError, rhs: FBSDKLoginKit.DeviceLoginError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc(FBSDKDeviceLoginError) public enum DeviceLoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { + public typealias _ErrorType = FBSDKLoginKit.DeviceLoginError + case excessivePolling = 1349172 + case authorizationDeclined = 1349173 + case authorizationPending = 1349174 + case codeExpired = 1349152 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@objcMembers @objc(FBSDKDeviceLoginManager) final public class DeviceLoginManager : ObjectiveC.NSObject { + @objc weak final public var delegate: FBSDKLoginKit.DeviceLoginManagerDelegate? + @objc final public let permissions: [Swift.String] + @objc final public var redirectURL: Foundation.URL? + @objc(initWithPermissions:enableSmartLogin:) public init(permissions: [Swift.String], enableSmartLogin: Swift.Bool) + @objc final public func start() + @objc final public func cancel() + @objc deinit +} +extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { + @objc final public func netService(_ service: Foundation.NetService, didNotPublish errorValues: [Swift.String : Foundation.NSNumber]) +} +@objc(FBSDKDeviceLoginManagerDelegate) public protocol DeviceLoginManagerDelegate { + @objc(deviceLoginManager:startedWithCodeInfo:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, startedWith codeInfo: FBSDKLoginKit.DeviceLoginCodeInfo) + @objc(deviceLoginManager:completedWithResult:error:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, completedWith result: FBSDKLoginKit.DeviceLoginManagerResult?, error: Swift.Error?) +} +@objcMembers @objc(FBSDKDeviceLoginManagerResult) final public class DeviceLoginManagerResult : ObjectiveC.NSObject { + @objc final public var accessToken: FBSDKCoreKit.AccessToken? { + get + } + @objc final public var isCancelled: Swift.Bool { + get + } + @objc public init(token: FBSDKCoreKit.AccessToken?, isCancelled cancelled: Swift.Bool) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKLoginButton) @_Concurrency.MainActor(unsafe) final public class FBLoginButton : FBSDKCoreKit.FBButton { + @objc @_Concurrency.MainActor(unsafe) final public var defaultAudience: FBSDKLoginKit.DefaultAudience { + @objc get + @objc set + } + @objc @IBOutlet @_Concurrency.MainActor(unsafe) weak final public var delegate: FBSDKLoginKit.LoginButtonDelegate? + @objc @_Concurrency.MainActor(unsafe) final public var permissions: [Swift.String] + @objc @_Concurrency.MainActor(unsafe) final public var tooltipBehavior: FBSDKLoginKit.FBLoginButton.TooltipBehavior + @objc @_Concurrency.MainActor(unsafe) final public var tooltipColorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle + @objc @_Concurrency.MainActor(unsafe) final public var loginTracking: FBSDKLoginKit.LoginTracking + @objc @_Concurrency.MainActor(unsafe) final public var nonce: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var messengerPageId: Swift.String? + @objc @_Concurrency.MainActor(unsafe) final public var authType: FBSDKLoginKit.LoginAuthType? + @objc @_Concurrency.MainActor(unsafe) final public var codeVerifier: FBSDKLoginKit.CodeVerifier + @objc(FBSDKLoginButtonTooltipBehavior) public enum TooltipBehavior : Swift.UInt { + case automatic = 0 + case forceDisplay + case disable + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override final public func didMoveToWindow() + @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func layoutSubviews() + @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreFoundation.CGSize) -> CoreFoundation.CGSize + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(FBSDKLoginTooltipView) @_Concurrency.MainActor(unsafe) final public class FBLoginTooltipView : FBSDKLoginKit.FBTooltipView { + @objc @_Concurrency.MainActor(unsafe) weak final public var delegate: FBSDKLoginKit.LoginTooltipViewDelegate? + @objc @_Concurrency.MainActor(unsafe) final public var forceDisplay: Swift.Bool + @objc @_Concurrency.MainActor(unsafe) final public var shouldForceDisplay: Swift.Bool { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc convenience dynamic public init() + @objc(initWithTagline:message:colorStyle:) @_Concurrency.MainActor(unsafe) override public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) + @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc deinit +} +@objcMembers @objc(FBSDKPermission) final public class FBPermission : ObjectiveC.NSObject { + @objc override final public var description: Swift.String { + @objc get + } + @objc override final public var hash: Swift.Int { + @objc get + } + @objc public init?(string: Swift.String) + @objc(permissionsFromRawPermissions:) public static func permissions(fromRawPermissions rawPermissions: Swift.Set) -> Swift.Set? + @objc(rawPermissionsFromPermissions:) public static func rawPermissions(from permissions: Swift.Set) -> Swift.Set + @objc override final public func isEqual(_ object: Any?) -> Swift.Bool + @objc deinit +} +@objc(FBSDKTooltipView) @_Concurrency.MainActor(unsafe) open class FBTooltipView : UIKit.UIView { + @objc(FBSDKTooltipViewArrowDirection) @frozen public enum ArrowDirection : Swift.UInt { + case down = 0 + case up = 1 + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc(FBSDKTooltipColorStyle) @frozen public enum ColorStyle : Swift.UInt { + case friendlyBlue = 0 + case neutralGray = 1 + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc @_Concurrency.MainActor(unsafe) public var displayDuration: Swift.Double + @objc @_Concurrency.MainActor(unsafe) public var colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public var message: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public var tagline: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) + @available(*, unavailable) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit + @objc(presentFromView:) @_Concurrency.MainActor(unsafe) public func present(from anchorView: UIKit.UIView) + @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc @_Concurrency.MainActor(unsafe) public func dismiss() + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() +} +@objc(FBSDKLoginButtonDelegate) public protocol LoginButtonDelegate : ObjectiveC.NSObjectProtocol { + @objc(loginButton:didCompleteWithResult:error:) func loginButton(_ loginButton: FBSDKLoginKit.FBLoginButton, didCompleteWith result: FBSDKLoginKit.LoginManagerLoginResult?, error: Swift.Error?) + @objc func loginButtonDidLogOut(_ loginButton: FBSDKLoginKit.FBLoginButton) + @objc optional func loginButtonWillLogin(_ loginButton: FBSDKLoginKit.FBLoginButton) -> Swift.Bool +} +@objcMembers @objc(FBSDKLoginConfiguration) final public class LoginConfiguration : ObjectiveC.NSObject { + @objc final public let nonce: Swift.String + @objc final public let tracking: FBSDKLoginKit.LoginTracking + @objc final public let requestedPermissions: Swift.Set + @objc final public let messengerPageId: Swift.String? + @objc final public let authType: FBSDKLoginKit.LoginAuthType? + @objc final public let codeVerifier: FBSDKLoginKit.CodeVerifier + @objc(initWithPermissions:tracking:nonce:messengerPageId:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?) + @objc(initWithPermissions:tracking:nonce:messengerPageId:authType:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?) + @objc(initWithPermissions:tracking:nonce:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String) + @objc(initWithPermissions:tracking:messengerPageId:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, messengerPageId: Swift.String?) + @objc(initWithPermissions:tracking:messengerPageId:authType:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?) + @objc(initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:) public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?, codeVerifier: FBSDKLoginKit.CodeVerifier) + @objc(initWithPermissions:tracking:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking) + @objc(initWithTracking:) convenience public init?(tracking: FBSDKLoginKit.LoginTracking) + convenience public init?(permissions: Swift.Set = [], tracking: FBSDKLoginKit.LoginTracking = .enabled, nonce: Swift.String = UUID().uuidString, messengerPageId: Swift.String? = nil, authType: FBSDKLoginKit.LoginAuthType? = .rerequest, codeVerifier: FBSDKLoginKit.CodeVerifier = CodeVerifier()) + @objc deinit +} +public struct LoginError : Foundation.CustomNSError, Swift.Hashable { + public let errorCode: Swift.Int + public let errorUserInfo: [Swift.String : Any] + public init(_nsError nsError: Foundation.NSError) + public init(_ code: FBSDKLoginKit.LoginError.Code, userInfo: [Swift.String : Any] = [:]) + public static var errorDomain: Swift.String { + get + } + public typealias Code = FBSDKLoginKit.LoginErrorCode + public static var reserved: FBSDKLoginKit.LoginError.Code { + get + } + public static var unknown: FBSDKLoginKit.LoginError.Code { + get + } + public static var passwordChanged: FBSDKLoginKit.LoginError.Code { + get + } + public static var userCheckpointed: FBSDKLoginKit.LoginError.Code { + get + } + public static var userMismatch: FBSDKLoginKit.LoginError.Code { + get + } + public static var unconfirmedUser: FBSDKLoginKit.LoginError.Code { + get + } + public static var systemAccountAppDisabled: FBSDKLoginKit.LoginError.Code { + get + } + public static var systemAccountUnavailable: FBSDKLoginKit.LoginError.Code { + get + } + public static var badChallengeString: FBSDKLoginKit.LoginError.Code { + get + } + public static var invalidIDToken: FBSDKLoginKit.LoginError.Code { + get + } + public static var missingAccessToken: FBSDKLoginKit.LoginError.Code { + get + } + public static func == (lhs: FBSDKLoginKit.LoginError, rhs: FBSDKLoginKit.LoginError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc(FBSDKLoginError) public enum LoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { + public typealias _ErrorType = FBSDKLoginKit.LoginError + case reserved = 300 + case unknown + case passwordChanged + case userCheckpointed + case userMismatch + case unconfirmedUser + case systemAccountAppDisabled + case systemAccountUnavailable + case badChallengeString + case invalidIDToken + case missingAccessToken + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public let LoginErrorDomain: Swift.String +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLoginManager) final public class LoginManager : ObjectiveC.NSObject { + @objc final public var defaultAudience: FBSDKLoginKit.DefaultAudience + @objc convenience public init(defaultAudience: FBSDKLoginKit.DefaultAudience = .friends) + @available(swift, obsoleted: 0.1) + @objc(logInFromViewController:configuration:completion:) final public func logIn(from viewController: UIKit.UIViewController?, configuration: FBSDKLoginKit.LoginConfiguration?, completion: @escaping FBSDKLoginKit.LoginManagerLoginResultBlock) + @nonobjc final public func logIn(viewController: UIKit.UIViewController? = nil, configuration: FBSDKLoginKit.LoginConfiguration?, completion: @escaping FBSDKLoginKit.LoginResultBlock) + @objc(logInWithPermissions:fromViewController:handler:) final public func logIn(permissions: [Swift.String], from viewController: UIKit.UIViewController?, handler: FBSDKLoginKit.LoginManagerLoginResultBlock?) + @objc(reauthorizeDataAccess:handler:) final public func reauthorizeDataAccess(from viewController: UIKit.UIViewController, handler: @escaping FBSDKLoginKit.LoginManagerLoginResultBlock) + @objc(logOut) final public func logOut() + @objc override dynamic public init() + @objc deinit +} +extension FBSDKLoginKit.LoginManager : FBSDKCoreKit.URLOpening { + @objc public static func makeOpener() -> FBSDKLoginKit.LoginManager + @objc final public func application(_ application: UIKit.UIApplication?, open url: Foundation.URL?, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func canOpen(_ url: Foundation.URL, for application: UIKit.UIApplication?, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func applicationDidBecomeActive(_ application: UIKit.UIApplication) + @objc final public func isAuthenticationURL(_ url: Foundation.URL) -> Swift.Bool + @objc final public func shouldStopPropagation(of url: Foundation.URL) -> Swift.Bool +} +@objcMembers @objc(FBSDKLoginManagerLoginResult) final public class LoginManagerLoginResult : ObjectiveC.NSObject { + @objc final public let token: FBSDKCoreKit.AccessToken? + @objc final public let authenticationToken: FBSDKCoreKit.AuthenticationToken? + @objc final public let isCancelled: Swift.Bool + @objc final public let grantedPermissions: Swift.Set + @objc final public let declinedPermissions: Swift.Set + @objc(initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:) public init(token: FBSDKCoreKit.AccessToken?, authenticationToken: FBSDKCoreKit.AuthenticationToken?, isCancelled: Swift.Bool, grantedPermissions: Swift.Set, declinedPermissions: Swift.Set) + @objc deinit +} +public typealias LoginResultBlock = (FBSDKLoginKit.LoginResult) -> Swift.Void +@frozen public enum LoginResult { + case success(granted: Swift.Set, declined: Swift.Set, token: FBSDKCoreKit.AccessToken?) + case cancelled + case failed(Swift.Error) +} +@objc(FBSDKLoginTooltipViewDelegate) public protocol LoginTooltipViewDelegate { + @objc(loginTooltipView:shouldAppear:) optional func loginTooltipView(_ view: FBSDKLoginKit.FBLoginTooltipView, shouldAppear appIsEligible: Swift.Bool) -> Swift.Bool + @objc(loginTooltipViewWillAppear:) optional func loginTooltipViewWillAppear(_ view: FBSDKLoginKit.FBLoginTooltipView) + @objc(loginTooltipViewWillNotAppear:) optional func loginTooltipViewWillNotAppear(_ view: FBSDKLoginKit.FBLoginTooltipView) +} +@objc(FBSDKLoginTracking) public enum LoginTracking : Swift.UInt { + case enabled + case limited + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLoginCompletionParameters) final public class _LoginCompletionParameters : ObjectiveC.NSObject { + @objc final public var authenticationToken: FBSDKCoreKit.AuthenticationToken? + @objc final public var profile: FBSDKCoreKit.Profile? + @objc final public var accessTokenString: Swift.String? + @objc final public var nonceString: Swift.String? + @objc final public var authenticationTokenString: Swift.String? + @objc final public var code: Swift.String? + @objc final public var permissions: Swift.Set? + @objc final public var declinedPermissions: Swift.Set? + @objc final public var expiredPermissions: Swift.Set? + @objc final public var appID: Swift.String? + @objc final public var userID: Swift.String? + @objc final public var error: Swift.Error? + @objc final public var expirationDate: Foundation.Date? + @objc final public var dataAccessExpirationDate: Foundation.Date? + @objc final public var challenge: Swift.String? + @objc final public var graphDomain: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKLoginKit.DefaultAudience : Swift.Equatable {} +extension FBSDKLoginKit.DefaultAudience : Swift.Hashable {} +extension FBSDKLoginKit.DefaultAudience : Swift.RawRepresentable {} +extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.Hashable {} +extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.Equatable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.Hashable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Equatable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Hashable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Sendable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Equatable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Hashable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Sendable {} +extension FBSDKLoginKit.LoginErrorCode : Swift.Hashable {} +extension FBSDKLoginKit.LoginErrorCode : Swift.RawRepresentable {} +extension FBSDKLoginKit.LoginTracking : Swift.Equatable {} +extension FBSDKLoginKit.LoginTracking : Swift.Hashable {} +extension FBSDKLoginKit.LoginTracking : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc index cfe4bd57..2949e7cf 100644 Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 851633c2..5753c0fd 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import CommonCrypto import FBSDKCoreKit import FBSDKCoreKit_Basics @@ -10,6 +11,7 @@ import Security import Swift import UIKit import _Concurrency +import _StringProcessing @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKCodeVerifier) final public class CodeVerifier : ObjectiveC.NSObject { @objc final public let value: Swift.String @objc final public var challenge: Swift.String { @@ -130,12 +132,12 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { get } } - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override final public func didMoveToWindow() - @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreGraphics.CGRect) -> CoreGraphics.CGRect - @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreGraphics.CGRect) -> CoreGraphics.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect @_Concurrency.MainActor(unsafe) @objc override final public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreGraphics.CGSize) -> CoreGraphics.CGSize + @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreFoundation.CGSize) -> CoreFoundation.CGSize @objc deinit } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(FBSDKLoginTooltipView) @_Concurrency.MainActor(unsafe) final public class FBLoginTooltipView : FBSDKLoginKit.FBTooltipView { @@ -145,9 +147,9 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { @objc get @objc set } - @objc convenience dynamic public init() + @_Concurrency.MainActor(unsafe) @objc convenience dynamic public init() @objc(initWithTagline:message:colorStyle:) @_Concurrency.MainActor(unsafe) override public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) - @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreGraphics.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) @objc deinit } @objcMembers @objc(FBSDKPermission) final public class FBPermission : ObjectiveC.NSObject { @@ -200,9 +202,9 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit @objc(presentFromView:) @_Concurrency.MainActor(unsafe) public func present(from anchorView: UIKit.UIView) - @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreGraphics.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) @objc @_Concurrency.MainActor(unsafe) public func dismiss() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() } @objc(FBSDKLoginButtonDelegate) public protocol LoginButtonDelegate : ObjectiveC.NSObjectProtocol { diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.abi.json b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 00000000..083190a3 --- /dev/null +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,28830 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenCreating", + "printedName": "AuthenticationTokenCreating", + "children": [ + { + "kind": "Function", + "name": "createToken", + "printedName": "createToken(tokenString:nonce:graphDomain:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationToken?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.AuthenticationTokenCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenFactory", + "printedName": "AuthenticationTokenFactory", + "children": [ + { + "kind": "Var", + "name": "beginCertificate", + "printedName": "beginCertificate", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16beginCertificateSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "endCertificate", + "printedName": "endCertificate", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "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:13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC14endCertificateSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionProvider", + "printedName": "sessionProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvs", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvM", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderSo24FBSDKURLSessionProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "certificateEndpoint", + "printedName": "certificateEndpoint", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvp", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvg", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC19certificateEndpoint10Foundation3URLVvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(sessionProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenFactory", + "printedName": "FBSDKLoginKit.AuthenticationTokenFactory", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC" + }, + { + "kind": "TypeNominal", + "name": "URLSessionProviding", + "printedName": "FBSDKCoreKit_Basics.URLSessionProviding", + "usr": "c:objc(pl)FBSDKURLSessionProviding" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderACSo24FBSDKURLSessionProviding_p_tcfc", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15sessionProviderACSo24FBSDKURLSessionProviding_p_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "createToken", + "printedName": "createToken(tokenString:nonce:graphDomain:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.AuthenticationToken?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC06createD011tokenString5nonce11graphDomain10completionySS_S2SySo019FBSDKAuthenticationD0CSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "verifySignature", + "printedName": "verifySignature(_:header:claims:certificateKey:completion:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "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": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC15verifySignature_6header6claims14certificateKey10completionySS_S3SySbctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC15verifySignature_6header6claims14certificateKey10completionySS_S3SySbctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getPublicKeyWith", + "printedName": "getPublicKeyWith(certificateKey:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Security.SecKey?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Security.SecKey?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecKey", + "printedName": "Security.SecKey", + "usr": "c:@T@SecKeyRef" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC16getPublicKeyWith011certificateH010completionySS_ySo03SecH3RefaSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC16getPublicKeyWith011certificateH010completionySS_ySo03SecH3RefaSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getCertificateWith", + "printedName": "getCertificateWith(certificateKey:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Security.SecCertificate?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Security.SecCertificate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SecCertificate", + "printedName": "Security.SecCertificate", + "usr": "c:@T@SecCertificateRef" + } + ], + "usr": "s:Sq" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC18getCertificateWith14certificateKey10completionySS_ySo03SecG3RefaSgctF", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC18getCertificateWith14certificateKey10completionySS_ySo03SecG3RefaSgctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenFactory", + "printedName": "FBSDKLoginKit.AuthenticationTokenFactory", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryCACycfc", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryCACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit26AuthenticationTokenFactoryC", + "mangledName": "$s13FBSDKLoginKit26AuthenticationTokenFactoryC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "AuthenticationTokenCreating", + "printedName": "AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP", + "mangledName": "$s13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "AuthenticationTokenHeader", + "printedName": "AuthenticationTokenHeader", + "children": [ + { + "kind": "Var", + "name": "kid", + "printedName": "kid", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvp", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "RawDocComment" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvg", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC3kidSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(fromEncodedString:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.AuthenticationTokenHeader?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenHeader", + "printedName": "FBSDKLoginKit.AuthenticationTokenHeader", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC17fromEncodedStringACSgSS_tcfc", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC17fromEncodedStringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit25AuthenticationTokenHeaderC", + "mangledName": "$s13FBSDKLoginKit25AuthenticationTokenHeaderC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "CommonCrypto", + "printedName": "CommonCrypto", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "CodeVerifier", + "printedName": "CodeVerifier", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(py)value", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC5valueSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)value", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC5valueSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "challenge", + "printedName": "challenge", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(py)challenge", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC9challengeSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)challenge", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC9challengeSSvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.CodeVerifier?", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)initWithString:", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC6stringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithString:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier(im)init", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier", + "mangledName": "$s13FBSDKLoginKit12CodeVerifierC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKCodeVerifier", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DefaultAudience", + "printedName": "DefaultAudience", + "children": [ + { + "kind": "Var", + "name": "friends", + "printedName": "friends", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceFriends", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO7friendsyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "onlyMe", + "printedName": "onlyMe", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceOnlyMe", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO6onlyMeyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "everyone", + "printedName": "everyone", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DefaultAudience.Type) -> FBSDKLoginKit.DefaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DefaultAudience.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience@FBSDKDefaultAudienceEveryone", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8everyoneyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DefaultAudience?", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit15DefaultAudienceO8rawValueACSgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueACSgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit15DefaultAudienceO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DefaultAudienceO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience", + "mangledName": "$s13FBSDKLoginKit15DefaultAudienceO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDefaultAudience", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "AssociatedType", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP0E12DependenciesQa", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP0E12DependenciesQa", + "moduleName": "FBSDKLoginKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvs", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP22configuredDependencies0eG0QzSgvM", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP19defaultDependencies0eG0QzSgvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE15setDependenciesyy0eG0QzF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE15getDependencies0eG0QzyKF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluip", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.ObjectDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.ObjectDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectPAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluig", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsObject>", + "sugared_genericSig": "", + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKLoginKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKLoginKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginCodeInfo", + "printedName": "DeviceLoginCodeInfo", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)identifier", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifierSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)identifier", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifierSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loginCode", + "printedName": "loginCode", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)loginCode", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC05loginE0SSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)loginCode", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC05loginE0SSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "verificationURL", + "printedName": "verificationURL", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)verificationURL", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15verificationURL10Foundation0H0Vvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)verificationURL", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15verificationURL10Foundation0H0Vvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "expirationDate", + "printedName": "expirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)expirationDate", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC14expirationDate10Foundation0H0Vvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)expirationDate", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC14expirationDate10Foundation0H0Vvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "pollingInterval", + "printedName": "pollingInterval", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(py)pollingInterval", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15pollingIntervalSuvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)pollingInterval", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC15pollingIntervalSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(identifier:loginCode:verificationURL:expirationDate:pollingInterval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)initWithIdentifier:loginCode:verificationURL:expirationDate:pollingInterval:", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC10identifier05loginE015verificationURL14expirationDate15pollingIntervalACSS_SS10Foundation0J0VAI0L0VSutcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo(im)init", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo", + "mangledName": "$s13FBSDKLoginKit19DeviceLoginCodeInfoC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginCodeInfo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginError", + "printedName": "DeviceLoginError", + "children": [ + { + "kind": "Var", + "name": "_nsError", + "printedName": "_nsError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0So7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorCode", + "printedName": "errorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "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:13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9errorCodeSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorUserInfo", + "printedName": "errorUserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV13errorUserInfoSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_nsError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV03_nsE0ACSo7NSErrorC_tcfc", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV03_nsE0ACSo7NSErrorC_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV_8userInfoAcA0cdE4CodeO_SDySSypGtcfc", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV_8userInfoAcA0cdE4CodeO_SDySSypGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDomain", + "printedName": "errorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11errorDomainSSvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "excessivePolling", + "printedName": "excessivePolling", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV16excessivePollingAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authorizationDeclined", + "printedName": "authorizationDeclined", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV21authorizationDeclinedAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authorizationPending", + "printedName": "authorizationPending", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV20authorizationPendingAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codeExpired", + "printedName": "codeExpired", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV11codeExpiredAA0cdE4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginError", + "printedName": "FBSDKLoginKit.DeviceLoginError", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "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:13FBSDKLoginKit16DeviceLoginErrorV4hash4intoys6HasherVz_tF", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivp", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivg", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV9hashValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit16DeviceLoginErrorV", + "mangledName": "$s13FBSDKLoginKit16DeviceLoginErrorV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginErrorCode", + "printedName": "DeviceLoginErrorCode", + "children": [ + { + "kind": "Var", + "name": "excessivePolling", + "printedName": "excessivePolling", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorExcessivePolling", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO16excessivePollingyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "authorizationDeclined", + "printedName": "authorizationDeclined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorAuthorizationDeclined", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO21authorizationDeclinedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "authorizationPending", + "printedName": "authorizationPending", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorAuthorizationPending", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO20authorizationPendingyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "codeExpired", + "printedName": "codeExpired", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.DeviceLoginErrorCode.Type) -> FBSDKLoginKit.DeviceLoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError@FBSDKDeviceLoginErrorCodeExpired", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO11codeExpiredyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginErrorCode", + "printedName": "FBSDKLoginKit.DeviceLoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDeviceLoginError", + "mangledName": "$s13FBSDKLoginKit20DeviceLoginErrorCodeO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginManager", + "printedName": "DeviceLoginManager", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)delegate", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerDelegate", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)delegate", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerDelegate", + "printedName": "FBSDKLoginKit.DeviceLoginManagerDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8delegateAA0cdE8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)permissions", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissionsSaySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)permissions", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissionsSaySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "redirectURL", + "printedName": "redirectURL", + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)redirectURL", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)redirectURL", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setRedirectURL:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11redirectURL10Foundation0G0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codeInfo", + "printedName": "codeInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(py)codeInfo", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)codeInfo", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)setCodeInfo:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC8codeInfoAA0cd4CodeG0CSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC22configuredDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC19defaultDependenciesAC06ObjectG0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:enableSmartLogin:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)initWithPermissions:enableSmartLogin:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC11permissions011enableSmartD0ACSaySSG_Sbtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:enableSmartLogin:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)start", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC5startyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cancel", + "printedName": "cancel()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)cancel", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC6cancelyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "notifyDelegate", + "printedName": "notifyDelegate(token:expirationDate:dataAccessExpirationDate:)", + "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": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)notifyDelegateWithToken:expirationDate:dataAccessExpirationDate:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC14notifyDelegate5token14expirationDate020dataAccessExpirationJ0ySSSg_10Foundation0J0VSgALtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "processError", + "printedName": "processError(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)processError:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC12processErroryys0G0_pF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "schedulePoll", + "printedName": "schedulePoll(interval:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)schedulePollWithInterval:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC12schedulePoll8intervalySu_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)init", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "netService", + "printedName": "netService(_:didNotPublish:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetService", + "printedName": "Foundation.NetService", + "usr": "c:objc(cs)NSNetService" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Foundation.NSNumber]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NSNumber", + "printedName": "Foundation.NSNumber", + "usr": "c:objc(cs)NSNumber" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager(im)netService:didNotPublish:", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC10netService_13didNotPublishySo05NSNetG0C_SDySSSo8NSNumberCGtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "netService:didNotPublish:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "devicePoller", + "printedName": "devicePoller", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePollerAA0C7Polling_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphiJ0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV15internalUtilitySo013FBSDKInternalI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(devicePoller:errorFactory:graphRequestFactory:internalUtility:settings:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "DevicePolling", + "printedName": "FBSDKLoginKit.DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePoller12errorFactory012graphRequestK015internalUtility8settingsAeA0C7Polling_p_So18FBSDKErrorCreating_pSo010FBSDKGraphmK0_pSo013FBSDKInternalO0_p09FBSDKCoreB016SettingsProtocol_ptcfc", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV12devicePoller12errorFactory012graphRequestK015internalUtility8settingsAeA0C7Polling_p_So18FBSDKErrorCreating_pSo010FBSDKGraphmK0_pSo013FBSDKInternalO0_p09FBSDKCoreB016SettingsProtocol_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager", + "mangledName": "$s13FBSDKLoginKit18DeviceLoginManagerC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.DeviceLoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit18DeviceLoginManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP" + }, + { + "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": "DeviceLoginManagerDelegate", + "printedName": "DeviceLoginManagerDelegate", + "children": [ + { + "kind": "Function", + "name": "deviceLoginManager", + "printedName": "deviceLoginManager(_:startedWith:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginCodeInfo", + "printedName": "FBSDKLoginKit.DeviceLoginCodeInfo", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginCodeInfo" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate(im)deviceLoginManager:startedWithCodeInfo:", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP06devicedE0_11startedWithyAA0cdE0C_AA0cD8CodeInfoCtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DeviceLoginManagerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "deviceLoginManager:startedWithCodeInfo:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "deviceLoginManager", + "printedName": "deviceLoginManager(_:completedWith:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DeviceLoginManager", + "printedName": "FBSDKLoginKit.DeviceLoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManager" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate(im)deviceLoginManager:completedWithResult:error:", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP06devicedE0_13completedWith5erroryAA0cdE0C_AA0cdE6ResultCSgs5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DeviceLoginManagerDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "deviceLoginManager:completedWithResult:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKDeviceLoginManagerDelegate", + "mangledName": "$s13FBSDKLoginKit26DeviceLoginManagerDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKDeviceLoginManagerDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "DeviceLoginManagerResult", + "printedName": "DeviceLoginManagerResult", + "children": [ + { + "kind": "Var", + "name": "accessToken", + "printedName": "accessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(py)accessToken", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11accessTokenSo011FBSDKAccessH0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)accessToken", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11accessTokenSo011FBSDKAccessH0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCancelled", + "printedName": "isCancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(py)isCancelled", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11isCancelledSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "SetterAccess", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)isCancelled", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC11isCancelledSbvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(token:isCancelled:)", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)initWithToken:isCancelled:", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC5token11isCancelledACSo16FBSDKAccessTokenCSg_Sbtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DeviceLoginManagerResult", + "printedName": "FBSDKLoginKit.DeviceLoginManagerResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult(im)init", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKDeviceLoginManagerResult", + "mangledName": "$s13FBSDKLoginKit24DeviceLoginManagerResultC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKDeviceLoginManagerResult", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "DevicePoller", + "printedName": "DevicePoller", + "children": [ + { + "kind": "Function", + "name": "schedule", + "printedName": "schedule(interval:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12DevicePollerV8schedule8interval5blockySu_yyctF", + "mangledName": "$s13FBSDKLoginKit12DevicePollerV8schedule8interval5blockySu_yyctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "DevicePoller", + "printedName": "FBSDKLoginKit.DevicePoller", + "usr": "s:13FBSDKLoginKit12DevicePollerV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit12DevicePollerVACycfc", + "mangledName": "$s13FBSDKLoginKit12DevicePollerVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit12DevicePollerV", + "mangledName": "$s13FBSDKLoginKit12DevicePollerV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DevicePolling", + "printedName": "DevicePolling", + "usr": "s:13FBSDKLoginKit13DevicePollingP", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DevicePolling", + "printedName": "DevicePolling", + "children": [ + { + "kind": "Function", + "name": "schedule", + "printedName": "schedule(interval:block:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit13DevicePollingP8schedule8interval5blockySu_yyctF", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP8schedule8interval5blockySu_yyctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.DevicePolling>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit13DevicePollingP", + "mangledName": "$s13FBSDKLoginKit13DevicePollingP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "DeviceRequestsHelper", + "printedName": "DeviceRequestsHelper", + "children": [ + { + "kind": "Var", + "name": "mdnsAdvertisementServices", + "printedName": "mdnsAdvertisementServices", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvpZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "SetterAccess", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "NSMapTable", + "printedName": "Foundation.NSMapTable", + "children": [ + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "AnyObject" + } + ], + "usr": "c:objc(cs)NSMapTable" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvgZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25mdnsAdvertisementServicesSo10NSMapTableCySo20NSNetServiceDelegate_pyXlGvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "getDeviceInfo", + "printedName": "getDeviceInfo()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO03getC4InfoSSyFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO03getC4InfoSSyFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "startAdvertisementService", + "printedName": "startAdvertisementService(loginCode:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO25startAdvertisementService9loginCode8delegateSbSS_So05NSNetH8Delegate_ptFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO25startAdvertisementService9loginCode8delegateSbSS_So05NSNetH8Delegate_ptFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isDelegate", + "printedName": "isDelegate(_:forAdvertisementService:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + }, + { + "kind": "TypeNominal", + "name": "NetService", + "printedName": "Foundation.NetService", + "usr": "c:objc(cs)NSNetService" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO10isDelegate_23forAdvertisementServiceSbSo05NSNetjG0_p_So0kJ0CtFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO10isDelegate_23forAdvertisementServiceSbSo05NSNetjG0_p_So0kJ0CtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "cleanUpAdvertisementService", + "printedName": "cleanUpAdvertisementService(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "NetServiceDelegate", + "printedName": "Foundation.NetServiceDelegate", + "usr": "c:objc(pl)NSNetServiceDelegate" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO27cleanUpAdvertisementService3forySo05NSNetI8Delegate_p_tFZ", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO27cleanUpAdvertisementService3forySo05NSNetI8Delegate_p_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit20DeviceRequestsHelperO", + "mangledName": "$s13FBSDKLoginKit20DeviceRequestsHelperO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBLoginButton", + "printedName": "FBLoginButton", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)defaultAudience", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)defaultAudience", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)delegate", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "IBOutlet", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginButtonDelegate", + "printedName": "FBSDKLoginKit.LoginButtonDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)delegate", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginButtonDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginButtonDelegate", + "printedName": "FBSDKLoginKit.LoginButtonDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8delegateAA05LoginD8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)permissions", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)permissions", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setPermissions:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC11permissionsSaySSGvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tooltipBehavior", + "printedName": "tooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)tooltipBehavior", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)tooltipBehavior", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setTooltipBehavior:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15tooltipBehaviorAC07TooltipF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tooltipColorStyle", + "printedName": "tooltipColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)tooltipColorStyle", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)tooltipColorStyle", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setTooltipColorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17tooltipColorStyleAA13FBTooltipViewC0fG0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginTracking", + "printedName": "loginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)loginTracking", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)loginTracking", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setLoginTracking:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginTrackingAA05LoginF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)nonce", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)nonce", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setNonce:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5nonceSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "messengerPageId", + "printedName": "messengerPageId", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)messengerPageId", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)messengerPageId", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setMessengerPageId:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15messengerPageIdSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authType", + "printedName": "authType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)authType", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)authType", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setAuthType:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8authTypeSo0a4AuthF0aSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "codeVerifier", + "printedName": "codeVerifier", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)codeVerifier", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)codeVerifier", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setCodeVerifier:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0Cvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0CvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12codeVerifierAA04CodeF0CvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)userID", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)userID", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setUserID:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6userIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userName", + "printedName": "userName", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)userName", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)userName", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setUserName:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC8userNameSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "elementProvider", + "printedName": "elementProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15elementProviderAA29UserInterfaceElementProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14stringProviderAA28UserInterfaceStringProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginProvider", + "printedName": "loginProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvs", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13loginProviderAA14LoginProviding_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)graphRequestFactory", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)graphRequestFactory", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)setGraphRequestFactory:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvM", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC19graphRequestFactorySo010FBSDKGraphfG0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isAuthenticated", + "printedName": "isAuthenticated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(py)isAuthenticated", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15isAuthenticatedSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)isAuthenticated", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15isAuthenticatedSbvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "TooltipBehavior", + "printedName": "TooltipBehavior", + "children": [ + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO9automaticyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO9automaticyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "forceDisplay", + "printedName": "forceDisplay", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO12forceDisplayyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO12forceDisplayyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "disable", + "printedName": "disable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type) -> FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO7disableyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO7disableyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior?", + "children": [ + { + "kind": "TypeNominal", + "name": "TooltipBehavior", + "printedName": "FBSDKLoginKit.FBLoginButton.TooltipBehavior", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15TooltipBehaviorO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginButtonTooltipBehavior", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initWithFrame:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBLoginButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initWithCoder:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:elementProvider:stringProvider:loginProvider:graphRequestFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceElementProviding", + "printedName": "FBSDKLoginKit.UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5frame15elementProvider06stringG005loginG019graphRequestFactoryACSo6CGRectV_AA29UserInterfaceElementProviding_pAA0no6StringQ0_pAA05LoginQ0_pSo010FBSDKGraphkL0_ptcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frame15elementProvider06stringG005loginG019graphRequestFactoryACSo6CGRectV_AA29UserInterfaceElementProviding_pAA0no6StringQ0_pAA05LoginQ0_pSo010FBSDKGraphkL0_ptcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:permissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "hasDefaultArg": true, + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.Permission]", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBLoginButtonC5frame11permissionsACSo6CGRectV_Say09FBSDKCoreB010PermissionOGtcfc", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC5frame11permissionsACSo6CGRectV_Say09FBSDKCoreB010PermissionOGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "didMoveToWindow", + "printedName": "didMoveToWindow()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)didMoveToWindow", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC15didMoveToWindowyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "didMoveToWindow", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "imageRect", + "printedName": "imageRect(forContentRect:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)imageRectForContentRect:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC9imageRect010forContentF0So6CGRectVAG_tF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "imageRectForContentRect:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "titleRect", + "printedName": "titleRect(forContentRect:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)titleRectForContentRect:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC9titleRect010forContentF0So6CGRectVAG_tF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "titleRectForContentRect:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)layoutSubviews", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC14layoutSubviewsyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sizeThatFits", + "printedName": "sizeThatFits(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)sizeThatFits:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC12sizeThatFitsySo6CGSizeVAFF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "sizeThatFits:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "accessTokenDidChange", + "printedName": "accessTokenDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)accessTokenDidChange:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC20accessTokenDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profileDidChange", + "printedName": "profileDidChange(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Notification", + "printedName": "Foundation.Notification", + "usr": "s:10Foundation12NotificationV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)profileDidChange:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC16profileDidChangeyy10Foundation12NotificationVF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buttonPressed", + "printedName": "buttonPressed(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)buttonPressed:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC13buttonPressedyyypF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "makeLoginConfiguration", + "printedName": "makeLoginConfiguration()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)makeLoginConfiguration", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC22makeLoginConfigurationAA0fG0CSgyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "initializeContent", + "printedName": "initializeContent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)initializeContent", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC17initializeContentyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateContentForAccessToken", + "printedName": "updateContentForAccessToken()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)updateContentForAccessToken", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC27updateContentForAccessTokenyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetContent", + "printedName": "fetchAndSetContent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)fetchAndSetContent", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC18fetchAndSetContentyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateContentForUser", + "printedName": "updateContentForUser(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)updateContentForUser:", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC20updateContentForUseryy09FBSDKCoreB07ProfileCSgF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logout", + "printedName": "logout()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton(im)logout", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC6logoutyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "ObjC" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton", + "mangledName": "$s13FBSDKLoginKit13FBLoginButtonC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBLoginTooltipView", + "printedName": "FBLoginTooltipView", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)delegate", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipViewDelegate", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)delegate", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTooltipViewDelegate", + "printedName": "FBSDKLoginKit.LoginTooltipViewDelegate", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setDelegate:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC8delegateAA05LogindE8Delegate_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "forceDisplay", + "printedName": "forceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)forceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvp", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)forceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setForceDisplay:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC12forceDisplaySbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldForceDisplay", + "printedName": "shouldForceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(py)shouldForceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)shouldForceDisplay", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)setShouldForceDisplay:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvs", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvM", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC18shouldForceDisplaySbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "serverConfigurationProvider", + "printedName": "serverConfigurationProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvp", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvg", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProviderAA06ServerG9Providing_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "Final", + "HasStorage", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)init", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tagline:message:colorStyle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "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": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)initWithTagline:message:colorStyle:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC7tagline7message10colorStyleACSSSg_AgA09FBTooltipE0C05ColorI0Otcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "initWithTagline:message:colorStyle:", + "declAttributes": [ + "Custom", + "Override", + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(serverConfigurationProvider:stringProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "kind": "TypeNominal", + "name": "ServerConfigurationProviding", + "printedName": "FBSDKLoginKit.ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKLoginKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProvider06stringH0AcA06ServerG9Providing_p_AA019UserInterfaceStringK0_ptcfc", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC27serverConfigurationProvider06stringH0AcA06ServerG9Providing_p_AA019UserInterfaceStringK0_ptcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Custom", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(in:arrowPosition:direction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + }, + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView(im)presentInView:withArrowPosition:direction:", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC7present2in13arrowPosition9directionySo6UIViewC_So7CGPointVAA09FBTooltipE0C14ArrowDirectionOtF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "presentInView:withArrowPosition:direction:", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView", + "mangledName": "$s13FBSDKLoginKit18FBLoginTooltipViewC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginTooltipView", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKLoginKit.FBTooltipView", + "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": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "FBPermission", + "printedName": "FBPermission", + "children": [ + { + "kind": "Var", + "name": "value", + "printedName": "value", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)value", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC5valueSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKPermission(im)value", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC5valueSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)description", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11descriptionSSvp", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)description", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11descriptionSSvg", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(py)hash", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC4hashSivp", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)hash", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC4hashSivg", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(string:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBPermission?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)initWithString:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC6stringACSgSS_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "permissions", + "printedName": "permissions(fromRawPermissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(cm)permissionsFromRawPermissions:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC11permissions18fromRawPermissionsShyACGSgShySSG_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "permissionsFromRawPermissions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "rawPermissions", + "printedName": "rawPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(cm)rawPermissionsFromPermissions:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC14rawPermissions4fromShySSGShyACG_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "rawPermissionsFromPermissions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)isEqual:", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC7isEqualySbypSgF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission(im)init", + "mangledName": "$s13FBSDKLoginKit12FBPermissionCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission", + "mangledName": "$s13FBSDKLoginKit12FBPermissionC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKPermission", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "FBTooltipView", + "printedName": "FBTooltipView", + "children": [ + { + "kind": "TypeDecl", + "name": "ArrowDirection", + "printedName": "ArrowDirection", + "children": [ + { + "kind": "Var", + "name": "down", + "printedName": "down", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ArrowDirection.Type) -> FBSDKLoginKit.FBTooltipView.ArrowDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO4downyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO4downyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "up", + "printedName": "up", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ArrowDirection.Type) -> FBSDKLoginKit.FBTooltipView.ArrowDirection", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO2upyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO2upyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection?", + "children": [ + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKTooltipViewArrowDirection", + "declAttributes": [ + "AccessControl", + "Frozen", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt", + "isEnumExhaustive": true, + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ColorStyle", + "printedName": "ColorStyle", + "children": [ + { + "kind": "Var", + "name": "friendlyBlue", + "printedName": "friendlyBlue", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ColorStyle.Type) -> FBSDKLoginKit.FBTooltipView.ColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO12friendlyBlueyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO12friendlyBlueyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "neutralGray", + "printedName": "neutralGray", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.FBTooltipView.ColorStyle.Type) -> FBSDKLoginKit.FBTooltipView.ColorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO11neutralGrayyA2EmF", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO11neutralGrayyA2EmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle?", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10ColorStyleO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKTooltipColorStyle", + "declAttributes": [ + "AccessControl", + "Frozen", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "UInt", + "isEnumExhaustive": true, + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "displayDuration", + "printedName": "displayDuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)displayDuration", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)displayDuration", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setDisplayDuration:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC15displayDurationSdvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "colorStyle", + "printedName": "colorStyle", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)colorStyle", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)colorStyle", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setColorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0OvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC10colorStyleAC05ColorF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)message", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)message", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": 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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setMessage:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC7messageSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7messageSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "tagline", + "printedName": "tagline", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)tagline", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvp", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)tagline", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": 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@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)setTagline:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvM", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7taglineSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "textLabel", + "printedName": "textLabel", + "children": [ + { + "kind": "TypeNominal", + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(py)textLabel", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC9textLabelSo7UILabelCvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Custom", + "HasStorage", + "Final", + "ObjC", + "RawDocComment" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UILabel", + "printedName": "UIKit.UILabel", + "usr": "c:objc(cs)UILabel" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)textLabel", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC9textLabelSo7UILabelCvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)init", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Convenience", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tagline:message:colorStyle:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + }, + { + "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": "ColorStyle", + "printedName": "FBSDKLoginKit.FBTooltipView.ColorStyle", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC10ColorStyleO" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)initWithTagline:message:colorStyle:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7tagline7message10colorStyleACSSSg_AgC05ColorH0Otcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithTagline:message:colorStyle:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)presentFromView:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7present4fromySo6UIViewC_tF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "presentFromView:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "present", + "printedName": "present(in:arrowPosition:direction:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + }, + { + "kind": "TypeNominal", + "name": "CGPoint", + "printedName": "CoreFoundation.CGPoint", + "usr": "c:@S@CGPoint" + }, + { + "kind": "TypeNominal", + "name": "ArrowDirection", + "printedName": "FBSDKLoginKit.FBTooltipView.ArrowDirection", + "usr": "s:13FBSDKLoginKit13FBTooltipViewC14ArrowDirectionO" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)presentInView:withArrowPosition:direction:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7present2in13arrowPosition9directionySo6UIViewC_So7CGPointVAC14ArrowDirectionOtF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "presentInView:withArrowPosition:direction:", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dismiss", + "printedName": "dismiss()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)dismiss", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC7dismissyyF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "animateFadeIn", + "printedName": "animateFadeIn()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)animateFadeIn", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC13animateFadeInyyF", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "animateFadeIn", + "declAttributes": [ + "Custom", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "draw", + "printedName": "draw(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)drawRect:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC4drawyySo6CGRectVF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "isOpen": true, + "objc_name": "drawRect:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "layoutSubviews", + "printedName": "layoutSubviews()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)layoutSubviews", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC14layoutSubviewsyyF", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "isOpen": true, + "objc_name": "layoutSubviews", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override", + "AccessControl", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBTooltipView", + "printedName": "FBSDKLoginKit.FBTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView(im)initWithFrame:", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKTooltipView", + "mangledName": "$s13FBSDKLoginKit13FBTooltipViewC", + "moduleName": "FBSDKLoginKit", + "isOpen": true, + "objc_name": "FBSDKTooltipView", + "declAttributes": [ + "Custom", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)UIView", + "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": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "IdentifiedLoginResultHandler", + "printedName": "IdentifiedLoginResultHandler", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "kind": "TypeNominal", + "name": "UUID", + "printedName": "Foundation.UUID", + "usr": "s:10Foundation4UUIDV" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV10identifier33_983F05C521C15D7299B686B606F5D560LL10Foundation4UUIDVvp", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV10identifier33_983F05C521C15D7299B686B606F5D560LL10Foundation4UUIDVvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Var", + "name": "closure", + "printedName": "closure", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV7closure33_983F05C521C15D7299B686B606F5D560LLyyAA0d7ManagerdE0CSg_s5Error_pSgtcvp", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV7closure33_983F05C521C15D7299B686B606F5D560LLyyAA0d7ManagerdE0CSg_s5Error_pSgtcvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 1, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerVyACyAA0d7ManagerdE0CSg_s5Error_pSgtccfc", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerVyACyAA0d7ManagerdE0CSg_s5Error_pSgtccfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "callAsFunction", + "printedName": "callAsFunction(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV14callAsFunctionyyAA0d7ManagerdE0CSg_s5Error_pSgtF", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV14callAsFunctionyyAA0d7ManagerdE0CSg_s5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + }, + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV", + "mangledName": "$s13FBSDKLoginKit28IdentifiedLoginResultHandlerV", + "moduleName": "FBSDKLoginKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginButtonDelegate", + "printedName": "LoginButtonDelegate", + "children": [ + { + "kind": "Function", + "name": "loginButton", + "printedName": "loginButton(_:didCompleteWith:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButton:didCompleteWithResult:error:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05loginD0_15didCompleteWith5erroryAA07FBLoginD0C_AA0c7ManagerC6ResultCSgs5Error_pSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginButton:didCompleteWithResult:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginButtonDidLogOut", + "printedName": "loginButtonDidLogOut(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButtonDidLogOut:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05loginD9DidLogOutyyAA07FBLoginD0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginButtonWillLogin", + "printedName": "loginButtonWillLogin(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FBLoginButton", + "printedName": "FBSDKLoginKit.FBLoginButton", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginButton" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate(im)loginButtonWillLogin:", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP05logind4WillC0ySbAA07FBLoginD0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginButtonDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginButtonDelegate", + "mangledName": "$s13FBSDKLoginKit19LoginButtonDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : ObjectiveC.NSObjectProtocol>", + "sugared_genericSig": "", + "objc_name": "FBSDKLoginButtonDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleterFactory", + "printedName": "LoginCompleterFactory", + "children": [ + { + "kind": "Function", + "name": "createLoginCompleter", + "printedName": "createLoginCompleter(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleting", + "printedName": "FBSDKLoginKit.LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryV06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactory", + "printedName": "FBSDKLoginKit.LoginCompleterFactory", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryVACycfc", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit21LoginCompleterFactoryV", + "mangledName": "$s13FBSDKLoginKit21LoginCompleterFactoryV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginCompleterFactoryProtocol", + "printedName": "LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleterFactoryProtocol", + "printedName": "LoginCompleterFactoryProtocol", + "children": [ + { + "kind": "Function", + "name": "createLoginCompleter", + "printedName": "createLoginCompleter(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleting", + "printedName": "FBSDKLoginKit.LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP06createcD013urlParameters5appIDAA0C10Completing_pSDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleterFactoryProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "mangledName": "$s13FBSDKLoginKit29LoginCompleterFactoryProtocolP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginCompleting", + "printedName": "LoginCompleting", + "children": [ + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15LoginCompletingP08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15LoginCompletingP08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginCompleting>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15LoginCompletingP", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginConfiguration", + "printedName": "LoginConfiguration", + "children": [ + { + "kind": "Var", + "name": "nonce", + "printedName": "nonce", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)nonce", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC5nonceSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)nonce", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC5nonceSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "tracking", + "printedName": "tracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)tracking", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingAA0C8TrackingOvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)tracking", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingAA0C8TrackingOvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestedPermissions", + "printedName": "requestedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC20requestedPermissionsShyAA12FBPermissionCGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC20requestedPermissionsShyAA12FBPermissionCGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messengerPageId", + "printedName": "messengerPageId", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)messengerPageId", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC15messengerPageIdSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)messengerPageId", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC15messengerPageIdSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authType", + "printedName": "authType", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)authType", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8authTypeSo0a4AuthF0aSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)authType", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8authTypeSo0a4AuthF0aSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "codeVerifier", + "printedName": "codeVerifier", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(py)codeVerifier", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC12codeVerifierAA04CodeF0Cvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)codeVerifier", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC12codeVerifierAA04CodeF0Cvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageIdACSgSaySSG_AA0C8TrackingOS2SSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:authType:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authTypeACSgSaySSG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:authType:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonceACSgSaySSG_AA0C8TrackingOSStcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:messengerPageId:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:messengerPageId:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking15messengerPageIdACSgSaySSG_AA0C8TrackingOSSSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:messengerPageId:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:messengerPageId:authType:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "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": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:messengerPageId:authType:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking15messengerPageId8authTypeACSgSaySSG_AA0C8TrackingOSSSgSo0a4AuthK0aSgtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:messengerPageId:authType:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:codeVerifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgSaySSG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithPermissions:tracking:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8trackingACSgSaySSG_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithPermissions:tracking:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)initWithTracking:", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC8trackingACSgAA0C8TrackingO_tcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithTracking:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(permissions:tracking:nonce:messengerPageId:authType:codeVerifier:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginAuthType?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginAuthType", + "printedName": "FBSDKLoginKit.LoginAuthType", + "usr": "c:FBSDKLoginAuthType.h@T@FBSDKLoginAuthType" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CodeVerifier", + "printedName": "FBSDKLoginKit.CodeVerifier", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKCodeVerifier" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgShy09FBSDKCoreB010PermissionOG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC11permissions8tracking5nonce15messengerPageId8authType12codeVerifierACSgShy09FBSDKCoreB010PermissionOG_AA0C8TrackingOS2SSgSo0a4AuthL0aSgAA04CodeN0Ctcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration(im)init", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration", + "mangledName": "$s13FBSDKLoginKit18LoginConfigurationC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginConfiguration", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginError", + "printedName": "LoginError", + "children": [ + { + "kind": "Var", + "name": "_nsError", + "printedName": "_nsError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0So7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorCode", + "printedName": "errorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV9errorCodeSivp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9errorCodeSivp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "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:13FBSDKLoginKit10LoginErrorV9errorCodeSivg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9errorCodeSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "errorUserInfo", + "printedName": "errorUserInfo", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV13errorUserInfoSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_nsError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit10LoginErrorV03_nsD0ACSo7NSErrorC_tcfc", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV03_nsD0ACSo7NSErrorC_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "hasDefaultArg": true, + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit10LoginErrorV_8userInfoAcA0cD4CodeO_SDySSypGtcfc", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV_8userInfoAcA0cD4CodeO_SDySSypGtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "errorDomain", + "printedName": "errorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV11errorDomainSSvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV11errorDomainSSvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV11errorDomainSSvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV11errorDomainSSvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV8reservedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV7unknownAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "passwordChanged", + "printedName": "passwordChanged", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15passwordChangedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userCheckpointed", + "printedName": "userCheckpointed", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV16userCheckpointedAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "userMismatch", + "printedName": "userMismatch", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV12userMismatchAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unconfirmedUser", + "printedName": "unconfirmedUser", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV15unconfirmedUserAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "systemAccountAppDisabled", + "printedName": "systemAccountAppDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountAppDisabledAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "systemAccountUnavailable", + "printedName": "systemAccountUnavailable", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV24systemAccountUnavailableAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "badChallengeString", + "printedName": "badChallengeString", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18badChallengeStringAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "invalidIDToken", + "printedName": "invalidIDToken", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV14invalidIDTokenAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "missingAccessToken", + "printedName": "missingAccessToken", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvpZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvgZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV18missingAccessTokenAA0cD4CodeOvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "==", + "printedName": "==(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + }, + { + "kind": "TypeNominal", + "name": "LoginError", + "printedName": "FBSDKLoginKit.LoginError", + "usr": "s:13FBSDKLoginKit10LoginErrorV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit10LoginErrorV2eeoiySbAC_ACtFZ", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV2eeoiySbAC_ACtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "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:13FBSDKLoginKit10LoginErrorV4hash4intoys6HasherVz_tF", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV4hash4intoys6HasherVz_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "hashValue", + "printedName": "hashValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit10LoginErrorV9hashValueSivp", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9hashValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit10LoginErrorV9hashValueSivg", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV9hashValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit10LoginErrorV", + "mangledName": "$s13FBSDKLoginKit10LoginErrorV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "CustomNSError", + "printedName": "CustomNSError", + "usr": "s:10Foundation13CustomNSErrorP", + "mangledName": "$s10Foundation13CustomNSErrorP" + }, + { + "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": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "LoginErrorCode", + "printedName": "LoginErrorCode", + "children": [ + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorReserved", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8reservedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUnknown", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO7unknownyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "passwordChanged", + "printedName": "passwordChanged", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorPasswordChanged", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO15passwordChangedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "userCheckpointed", + "printedName": "userCheckpointed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUserCheckpointed", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO16userCheckpointedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "userMismatch", + "printedName": "userMismatch", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUserMismatch", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO12userMismatchyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "unconfirmedUser", + "printedName": "unconfirmedUser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorUnconfirmedUser", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO15unconfirmedUseryA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "systemAccountAppDisabled", + "printedName": "systemAccountAppDisabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorSystemAccountAppDisabled", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO24systemAccountAppDisabledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "systemAccountUnavailable", + "printedName": "systemAccountUnavailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorSystemAccountUnavailable", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO24systemAccountUnavailableyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 7 + }, + { + "kind": "Var", + "name": "badChallengeString", + "printedName": "badChallengeString", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorBadChallengeString", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO18badChallengeStringyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 8 + }, + { + "kind": "Var", + "name": "invalidIDToken", + "printedName": "invalidIDToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorInvalidIDToken", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO14invalidIDTokenyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 9 + }, + { + "kind": "Var", + "name": "missingAccessToken", + "printedName": "missingAccessToken", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginErrorCode.Type) -> FBSDKLoginKit.LoginErrorCode", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginErrorCode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError@FBSDKLoginErrorMissingAccessToken", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO18missingAccessTokenyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 10 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginErrorCode?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginErrorCode", + "printedName": "FBSDKLoginKit.LoginErrorCode", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit14LoginErrorCodeO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit14LoginErrorCodeO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginErrorCodeO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginError", + "mangledName": "$s13FBSDKLoginKit14LoginErrorCodeO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + } + ] + }, + { + "kind": "Var", + "name": "LoginErrorDomain", + "printedName": "LoginErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit16LoginErrorDomainSSvp", + "mangledName": "$s13FBSDKLoginKit16LoginErrorDomainSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "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:13FBSDKLoginKit16LoginErrorDomainSSvg", + "mangledName": "$s13FBSDKLoginKit16LoginErrorDomainSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginEventLogging", + "printedName": "LoginEventLogging", + "children": [ + { + "kind": "Var", + "name": "flushBehavior", + "printedName": "flushBehavior", + "children": [ + { + "kind": "TypeNominal", + "name": "FlushBehavior", + "printedName": "FBSDKCoreKit.AppEvents.FlushBehavior", + "usr": "c:@E@FBSDKAppEventsFlushBehavior" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvp", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "FlushBehavior", + "printedName": "FBSDKCoreKit.AppEvents.FlushBehavior", + "usr": "c:@E@FBSDKAppEventsFlushBehavior" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvg", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP13flushBehaviorSo019FBSDKAppEventsFlushG0Vvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "logInternalEvent", + "printedName": "logInternalEvent(_:parameters:isImplicitlyLogged:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP011logInternalD0_10parameters18isImplicitlyLoggedySo08FBSDKAppD4Namea_SDySo0ld9ParameterM0aypGSgSbtF", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP011logInternalD0_10parameters18isImplicitlyLoggedySo08FBSDKAppD4Namea_SDySo0ld9ParameterM0aypGSgSbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "flush", + "printedName": "flush()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP5flushyyF", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP5flushyyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginManager", + "printedName": "LoginManager", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)defaultAudience", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)defaultAudience", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "handler", + "printedName": "handler", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler?", + "children": [ + { + "kind": "TypeNominal", + "name": "IdentifiedLoginResultHandler", + "printedName": "FBSDKLoginKit.IdentifiedLoginResultHandler", + "usr": "s:13FBSDKLoginKit28IdentifiedLoginResultHandlerV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7handlerAA010IdentifiedC13ResultHandlerVSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuration", + "printedName": "configuration", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)configuration", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC13configurationAA0C13ConfigurationCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)configuration", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC13configurationAA0C13ConfigurationCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "requestedPermissions", + "printedName": "requestedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)requestedPermissions", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setRequestedPermissions:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC20requestedPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "logger", + "printedName": "logger", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6loggerAA0cD6LoggerCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "state", + "printedName": "state", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5stateAA0cD5StateOvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "usedSafariSession", + "printedName": "usedSafariSession", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)usedSafariSession", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)usedSafariSession", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvg", + "moduleName": "FBSDKLoginKit", + "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@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)setUsedSafariSession:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC17usedSafariSessionSbvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isPerformingLogin", + "printedName": "isPerformingLogin", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(py)isPerformingLogin", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC012isPerformingC0Sbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)isPerformingLogin", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC012isPerformingC0Sbvg", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22configuredDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "Lazy" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19defaultDependenciesAC06ObjectF0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(defaultAudience:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "hasDefaultArg": true, + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)initWithDefaultAudience:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15defaultAudienceAcA07DefaultF0O_tcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(viewController:configuration: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" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginManagerC5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "AccessControl", + "NonObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:from:handler:)", + "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" + }, + { + "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": "((FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logInWithPermissions:fromViewController:handler:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0cdC6ResultCSg_s5Error_pSgtcSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "logInWithPermissions:fromViewController:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:viewController:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKCoreKit.Permission]", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sa" + }, + { + "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": "((FBSDKLoginKit.LoginResult) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginManagerC5logIn11permissions14viewController10completionySay09FBSDKCoreB010PermissionOG_So06UIViewI0CSgyAA0C6ResultOcSgtF", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC5logIn11permissions14viewController10completionySay09FBSDKCoreB010PermissionOG_So06UIViewI0CSgyAA0C6ResultOcSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "reauthorizeDataAccess", + "printedName": "reauthorizeDataAccess(from:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIViewController", + "printedName": "UIKit.UIViewController", + "usr": "c:objc(cs)UIViewController" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)reauthorizeDataAccess:handler:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC21reauthorizeDataAccess4from7handlerySo16UIViewControllerC_yAA0cdC6ResultCSg_s5Error_pSgtctF", + "moduleName": "FBSDKLoginKit", + "objc_name": "reauthorizeDataAccess:handler:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logOut", + "printedName": "logOut()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logOut", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC6logOutyyF", + "moduleName": "FBSDKLoginKit", + "objc_name": "logOut", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeAuthentication", + "printedName": "completeAuthentication(parameters:expectChallenge:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)completeAuthenticationWithParameters:expectChallenge:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC22completeAuthentication10parameters15expectChallengeyAA01_C20CompletionParametersC_SbtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logInParameters", + "printedName": "logInParameters(configuration:loggingToken:authenticationMethod:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "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" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)logInParametersWithConfiguration:loggingToken:authenticationMethod:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC15logInParameters13configuration12loggingToken20authenticationMethodSDyS2SGSgAA0C13ConfigurationCSg_SSSgSStF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateReauthentication", + "printedName": "validateReauthentication(accessToken:loginResult:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)validateReauthenticationWithAccessToken:loginResult:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC24validateReauthentication11accessToken11loginResultySo011FBSDKAccessH0C_AA0cdcJ0CSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRecentlyGrantedPermissions", + "printedName": "getRecentlyGrantedPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)getRecentlyGrantedPermissionsFrom:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC29getRecentlyGrantedPermissions4fromShyAA12FBPermissionCGAH_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getRecentlyDeclinedPermissions", + "printedName": "getRecentlyDeclinedPermissions(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)getRecentlyDeclinedPermissionsFrom:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC30getRecentlyDeclinedPermissions4fromShyAA12FBPermissionCGAH_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "storeExpectedNonce", + "printedName": "storeExpectedNonce(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)storeExpectedNonce:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18storeExpectedNonceyySSSgF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)init", + "mangledName": "$s13FBSDKLoginKit12LoginManagerCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "makeOpener", + "printedName": "makeOpener()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(cm)makeOpener", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC10makeOpenerACyFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "objc_name": "makeOpener", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "application", + "printedName": "application(_:open:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)application:openURL:sourceApplication:annotation:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC11application_4open17sourceApplication10annotationSbSo13UIApplicationCSg_10Foundation3URLVSgSSSgypSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "application:openURL:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "canOpen", + "printedName": "canOpen(_:for:sourceApplication:annotation:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIApplication?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "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": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)canOpenURL:forApplication:sourceApplication:annotation:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC7canOpen_3for17sourceApplication10annotationSb10Foundation3URLV_So13UIApplicationCSgSSSgypSgtF", + "moduleName": "FBSDKLoginKit", + "objc_name": "canOpenURL:forApplication:sourceApplication:annotation:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "applicationDidBecomeActive", + "printedName": "applicationDidBecomeActive(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UIApplication", + "printedName": "UIKit.UIApplication", + "usr": "c:objc(cs)UIApplication" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)applicationDidBecomeActive:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC26applicationDidBecomeActiveyySo13UIApplicationCF", + "moduleName": "FBSDKLoginKit", + "objc_name": "applicationDidBecomeActive:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "isAuthenticationURL", + "printedName": "isAuthenticationURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)isAuthenticationURL:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC19isAuthenticationURLySb10Foundation0G0VF", + "moduleName": "FBSDKLoginKit", + "objc_name": "isAuthenticationURL:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldStopPropagation", + "printedName": "shouldStopPropagation(of:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKLoginKit@objc(cs)FBSDKLoginManager(im)shouldStopPropagationOfURL:", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC21shouldStopPropagation2ofSb10Foundation3URLV_tF", + "moduleName": "FBSDKLoginKit", + "objc_name": "shouldStopPropagationOfURL:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenWallet", + "printedName": "authenticationTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV25authenticationTokenWalletSo019FBSDKAuthenticationH9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So0I18URLSchemeProvidingSo15FBSDKURLHostingpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "keychainStore", + "printedName": "keychainStore", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV13keychainStoreSo013FBSDKKeychainH0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loginCompleterFactory", + "printedName": "loginCompleterFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV21loginCompleterFactoryAA0chI8Protocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profileProvider", + "printedName": "profileProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV15profileProvider09FBSDKCoreB016ProfileProviding_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "urlOpener", + "printedName": "urlOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvp", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvg", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvs", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvM", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV9urlOpenerSo14FBSDKURLOpener_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenWallet:authenticationTokenWallet:errorFactory:graphRequestFactory:internalUtility:keychainStore:loginCompleterFactory:profileProvider:settings:urlOpener:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AuthenticationTokenProviding", + "printedName": "FBSDKCoreKit._AuthenticationTokenProviding", + "usr": "c:objc(pl)FBSDKAuthenticationTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.AppURLSchemeProviding & FBSDKCoreKit.URLHosting" + }, + { + "kind": "TypeNominal", + "name": "KeychainStoreProtocol", + "printedName": "FBSDKCoreKit.KeychainStoreProtocol", + "usr": "c:objc(pl)FBSDKKeychainStore" + }, + { + "kind": "TypeNominal", + "name": "LoginCompleterFactoryProtocol", + "printedName": "FBSDKLoginKit.LoginCompleterFactoryProtocol", + "usr": "s:13FBSDKLoginKit29LoginCompleterFactoryProtocolP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit.ProfileProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileProviding", + "printedName": "FBSDKCoreKit.ProfileProviding", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKProfileProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "URLOpener", + "printedName": "FBSDKCoreKit.URLOpener", + "usr": "c:objc(pl)FBSDKURLOpener" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWallet014authenticationhI012errorFactory012graphRequestL015internalUtility13keychainStore014loginCompleterL015profileProvider8settings9urlOpenerAESo011FBSDKAccessH9Providing_pXp_So019FBSDKAuthenticationH9Providing_pXpSo18FBSDKErrorCreating_pSo010FBSDKGraphnL0_pSo27FBSDKAppAvailabilityChecker_So26FBSDKAppURLSchemeProvidingSo15FBSDKURLHostingpSo013FBSDKKeychainR0_pAA0ctL8Protocol_p09FBSDKCoreB016ProfileProviding_pXpAY16SettingsProtocol_pSo14FBSDKURLOpener_ptcfc", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV17accessTokenWallet014authenticationhI012errorFactory012graphRequestL015internalUtility13keychainStore014loginCompleterL015profileProvider8settings9urlOpenerAESo011FBSDKAccessH9Providing_pXp_So019FBSDKAuthenticationH9Providing_pXpSo18FBSDKErrorCreating_pSo010FBSDKGraphnL0_pSo27FBSDKAppAvailabilityChecker_So26FBSDKAppURLSchemeProvidingSo15FBSDKURLHostingpSo013FBSDKKeychainR0_pAA0ctL8Protocol_p09FBSDKCoreB016ProfileProviding_pXpAY16SettingsProtocol_pSo14FBSDKURLOpener_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager", + "mangledName": "$s13FBSDKLoginKit12LoginManagerC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginManager", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginProviding", + "printedName": "LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "Conformance", + "name": "DependentAsObject", + "printedName": "DependentAsObject", + "children": [ + { + "kind": "TypeWitness", + "name": "ObjectDependencies", + "printedName": "ObjectDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ObjectDependencies", + "printedName": "FBSDKLoginKit.LoginManager.ObjectDependencies", + "usr": "s:13FBSDKLoginKit12LoginManagerC18ObjectDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit17DependentAsObjectP", + "mangledName": "$s13FBSDKLoginKit17DependentAsObjectP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginManagerLogger", + "printedName": "LoginManagerLogger", + "children": [ + { + "kind": "Var", + "name": "identifier", + "printedName": "identifier", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 0, + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10identifierSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "extras", + "printedName": "extras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC6extrasSDySSypGvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastResult", + "printedName": "lastResult", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10lastResultSSvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "lastError", + "printedName": "lastError", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC9lastErrorSo7NSErrorCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authMethod", + "printedName": "authMethod", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 4, + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10authMethodSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "loggingToken", + "printedName": "loggingToken", + "children": [ + { + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "fixedbinaryorder": 5, + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "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:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingTokenSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(parameters:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10parameters8trackingACSgSDySSypGSg_AA0C8TrackingOtcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10parameters8trackingACSgSDySSypGSg_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Convenience" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(loggingToken:tracking:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "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": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12loggingToken8trackingACSgSSSg_AA0C8TrackingOtcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12loggingToken8trackingACSgSSSg_AA0C8TrackingOtcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "startSession", + "printedName": "startSession(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginManager", + "printedName": "FBSDKLoginKit.LoginManager", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManager" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC12startSession3foryAA0cD0C_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC12startSession3foryAA0cD0C_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endSession", + "printedName": "endSession()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC10endSessionyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC10endSessionyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "start", + "printedName": "start(authenticationMethod:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC5start20authenticationMethodySS_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC5start20authenticationMethodySS_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "endLogin", + "printedName": "endLogin(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC03endC06result5erroryAA0cdC6ResultCSg_So7NSErrorCSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC03endC06result5erroryAA0cdC6ResultCSg_So7NSErrorCSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "postLoginHeartbeat", + "printedName": "postLoginHeartbeat()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC04postC9HeartbeatyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC04postC9HeartbeatyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "heartbeatTimerDidFire", + "printedName": "heartbeatTimerDidFire()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC21heartbeatTimerDidFireyyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC21heartbeatTimerDidFireyyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "willAttemptAppSwitchingBehavior", + "printedName": "willAttemptAppSwitchingBehavior(urlScheme:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC31willAttemptAppSwitchingBehavior9urlSchemeySS_tF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC31willAttemptAppSwitchingBehavior9urlSchemeySS_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getClientState", + "printedName": "getClientState(authenticationMethod:existingState:logger:)", + "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": "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 : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLogger", + "printedName": "FBSDKLoginKit.LoginManagerLogger", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC14getClientState20authenticationMethod08existingH06loggerSSSgAH_SDySSypGSgACSgtFZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC14getClientState20authenticationMethod08existingH06loggerSSSgAH_SDySSypGSgACSgtFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "parametersForNewEvent", + "printedName": "parametersForNewEvent()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC21parametersForNewEventSDySo08FBSDKAppI13ParameterNameaypGyF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC21parametersForNewEventSDySo08FBSDKAppI13ParameterNameaypGyF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logEvent", + "printedName": "logEvent(_:params:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6paramsySo08FBSDKAppG4Namea_SDySo0ig9ParameterJ0aypGSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6paramsySo08FBSDKAppG4Namea_SDySo0ig9ParameterJ0aypGSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logEvent", + "printedName": "logEvent(_:result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.NSError?", + "children": [ + { + "kind": "TypeNominal", + "name": "NSError", + "printedName": "Foundation.NSError", + "usr": "c:objc(cs)NSError" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6result5errorySo08FBSDKAppG4Namea_SSSo7NSErrorCSgtF", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC8logEvent_6result5errorySo08FBSDKAppG4Namea_SSSo7NSErrorCSgtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvp", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvg", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvs", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvM", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AA0C12EventLogging_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(eventLogger:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "LoginEventLogging", + "printedName": "FBSDKLoginKit.LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AeA0C12EventLogging_p_tcfc", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV05eventE0AeA0C12EventLogging_p_tcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC", + "mangledName": "$s13FBSDKLoginKit18LoginManagerLoggerC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginManagerLogger.TypeDependencies", + "usr": "s:13FBSDKLoginKit18LoginManagerLoggerC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginManagerLoginResult", + "printedName": "LoginManagerLoginResult", + "children": [ + { + "kind": "Var", + "name": "token", + "printedName": "token", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)token", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5tokenSo16FBSDKAccessTokenCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)token", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5tokenSo16FBSDKAccessTokenCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)authenticationToken", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19authenticationTokenSo019FBSDKAuthenticationG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)authenticationToken", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19authenticationTokenSo019FBSDKAuthenticationG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isCancelled", + "printedName": "isCancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)isCancelled", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC11isCancelledSbvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)isCancelled", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC11isCancelledSbvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "grantedPermissions", + "printedName": "grantedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)grantedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC18grantedPermissionsShySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)grantedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC18grantedPermissionsShySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19declinedPermissionsShySSGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC19declinedPermissionsShySSGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "loggingExtras", + "printedName": "loggingExtras", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(py)loggingExtras", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC13loggingExtrasSDySSypGvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)loggingExtras", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC13loggingExtrasSDySSypGvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(token:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC5token19authenticationToken11isCancelled18grantedPermissions08declinedL0ACSo011FBSDKAccessH0CSg_So019FBSDKAuthenticationH0CSgSbShySSGAOtcfc", + "moduleName": "FBSDKLoginKit", + "objc_name": "initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addLoggingExtra", + "printedName": "addLoggingExtra(_:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)addLoggingExtra:forKey:", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC15addLoggingExtra_6forKeyyyp_SStF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult(im)init", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult", + "mangledName": "$s13FBSDKLoginKit012LoginManagerC6ResultC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginManagerLoginResult", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "LoginManagerState", + "printedName": "LoginManagerState", + "children": [ + { + "kind": "Var", + "name": "idle", + "printedName": "idle", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO4idleyA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO4idleyA2CmF", + "moduleName": "FBSDKLoginKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "start", + "printedName": "start", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO5startyA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO5startyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "performingLogin", + "printedName": "performingLogin", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerState.Type) -> FBSDKLoginKit.LoginManagerState", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginManagerState.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO010performingC0yA2CmF", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO010performingC0yA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerState?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerState", + "printedName": "FBSDKLoginKit.LoginManagerState", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit17LoginManagerStateO8rawValueSivp", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueSivp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO8rawValueSivg", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO8rawValueSivg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit17LoginManagerStateO", + "mangledName": "$s13FBSDKLoginKit17LoginManagerStateO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "enumRawTypeName": "Int", + "isEnumExhaustive": true, + "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": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginProviding", + "printedName": "LoginProviding", + "children": [ + { + "kind": "Var", + "name": "defaultAudience", + "printedName": "defaultAudience", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovp", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovg", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovs", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0Ovs", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0OvM", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP15defaultAudienceAA07DefaultF0OvM", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(viewController:configuration: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": "FBSDKLoginKit.LoginConfiguration?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginConfiguration", + "printedName": "FBSDKLoginKit.LoginConfiguration", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginConfiguration" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP5logIn14viewController13configuration10completionySo06UIViewH0CSg_AA0C13ConfigurationCSgyAA0C6ResultOctF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logIn", + "printedName": "logIn(permissions:from:handler:)", + "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" + }, + { + "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": "((FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKLoginKit.LoginManagerLoginResult?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0c7ManagerC6ResultCSg_s5Error_pSgtcSgtF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP5logIn11permissions4from7handlerySaySSG_So16UIViewControllerCSgyAA0c7ManagerC6ResultCSg_s5Error_pSgtcSgtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "logOut", + "printedName": "logOut()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14LoginProvidingP6logOutyyF", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP6logOutyyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit14LoginProvidingP", + "mangledName": "$s13FBSDKLoginKit14LoginProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginRecoveryAttempter", + "printedName": "LoginRecoveryAttempter", + "children": [ + { + "kind": "Function", + "name": "attemptRecovery", + "printedName": "attemptRecovery(from:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + }, + { + "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": "s:13FBSDKLoginKit22LoginRecoveryAttempterC07attemptD04from10completionys5Error_p_ySbctF", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC07attemptD04from10completionys5Error_p_ySbctF", + "moduleName": "FBSDKLoginKit", + "objc_name": "attemptRecoveryFromError:completionHandler:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginRecoveryAttempter", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterCACycfc", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterCACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "loginProvider", + "printedName": "loginProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvp", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvg", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvs", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvM", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProviderAA0C9Providing_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenProvider", + "printedName": "accessTokenProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV19accessTokenProviderSo011FBSDKAccessI9Providing_pXpvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(loginProvider:accessTokenProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "LoginProviding", + "printedName": "FBSDKLoginKit.LoginProviding", + "usr": "s:13FBSDKLoginKit14LoginProvidingP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProvider011accessTokenI0AeA0C9Providing_p_So011FBSDKAccesskL0_pXptcfc", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV13loginProvider011accessTokenI0AeA0C9Providing_p_So011FBSDKAccesskL0_pXptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent", + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC", + "mangledName": "$s13FBSDKLoginKit22LoginRecoveryAttempterC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginRecoveryAttempter.TypeDependencies", + "usr": "s:13FBSDKLoginKit22LoginRecoveryAttempterC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginResult", + "printedName": "LoginResult", + "children": [ + { + "kind": "Var", + "name": "success", + "printedName": "success", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> (Swift.Set, Swift.Set, FBSDKCoreKit.AccessToken?) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Set, Swift.Set, FBSDKCoreKit.AccessToken?) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(granted: Swift.Set, declined: Swift.Set, token: FBSDKCoreKit.AccessToken?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "Permission", + "printedName": "FBSDKCoreKit.Permission", + "usr": "s:12FBSDKCoreKit10PermissionO" + } + ], + "usr": "s:Sh" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ] + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO7successyACShy09FBSDKCoreB010PermissionOG_AHSo16FBSDKAccessTokenCSgtcACmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO7successyACShy09FBSDKCoreB010PermissionOG_AHSo16FBSDKAccessTokenCSgtcACmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO9cancelledyA2CmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO9cancelledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginResult.Type) -> (Swift.Error) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Error) -> FBSDKLoginKit.LoginResult", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginResult.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKLoginKit11LoginResultO6failedyACs5Error_pcACmF", + "mangledName": "$s13FBSDKLoginKit11LoginResultO6failedyACs5Error_pcACmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(result:error:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginResult", + "printedName": "FBSDKLoginKit.LoginResult", + "usr": "s:13FBSDKLoginKit11LoginResultO" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit11LoginResultO6result5errorAcA0c7ManagercD0CSg_s5Error_pSgtcfc", + "mangledName": "$s13FBSDKLoginKit11LoginResultO6result5errorAcA0c7ManagercD0CSg_s5Error_pSgtcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "loginManagerResult", + "printedName": "loginManagerResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvp", + "mangledName": "$s13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginManagerLoginResult", + "printedName": "FBSDKLoginKit.LoginManagerLoginResult", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginManagerLoginResult" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvg", + "mangledName": "$s13FBSDKLoginKit11LoginResultO012loginManagerD0AA0cfcD0CSgvg", + "moduleName": "FBSDKLoginKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit11LoginResultO5errors5Error_pSgvp", + "mangledName": "$s13FBSDKLoginKit11LoginResultO5errors5Error_pSgvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit11LoginResultO5errors5Error_pSgvg", + "mangledName": "$s13FBSDKLoginKit11LoginResultO5errors5Error_pSgvg", + "moduleName": "FBSDKLoginKit", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit11LoginResultO", + "mangledName": "$s13FBSDKLoginKit11LoginResultO", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "AccessControl", + "Frozen", + "RawDocComment" + ], + "isEnumExhaustive": true + }, + { + "kind": "TypeDecl", + "name": "LoginTooltipViewDelegate", + "printedName": "LoginTooltipViewDelegate", + "children": [ + { + "kind": "Function", + "name": "loginTooltipView", + "printedName": "loginTooltipView(_:shouldAppear:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipView:shouldAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE0_12shouldAppearSbAA07FBLogindE0C_SbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipView:shouldAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginTooltipViewWillAppear", + "printedName": "loginTooltipViewWillAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipViewWillAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE10WillAppearyyAA07FBLogindE0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipViewWillAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "loginTooltipViewWillNotAppear", + "printedName": "loginTooltipViewWillNotAppear(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "FBLoginTooltipView", + "printedName": "FBSDKLoginKit.FBLoginTooltipView", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginTooltipView" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate(im)loginTooltipViewWillNotAppear:", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP05logindE13WillNotAppearyyAA07FBLogindE0CF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.LoginTooltipViewDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "loginTooltipViewWillNotAppear:", + "declAttributes": [ + "Optional", + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKLoginKit@objc(pl)FBSDKLoginTooltipViewDelegate", + "mangledName": "$s13FBSDKLoginKit24LoginTooltipViewDelegateP", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKLoginTooltipViewDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "LoginTracking", + "printedName": "LoginTracking", + "children": [ + { + "kind": "Var", + "name": "enabled", + "printedName": "enabled", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginTracking.Type) -> FBSDKLoginKit.LoginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginTracking.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking@FBSDKLoginTrackingEnabled", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO7enabledyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "limited", + "printedName": "limited", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit.LoginTracking.Type) -> FBSDKLoginKit.LoginTracking", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKLoginKit.LoginTracking.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking@FBSDKLoginTrackingLimited", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO7limitedyA2CmF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginTracking?", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginTracking", + "printedName": "FBSDKLoginKit.LoginTracking", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit13LoginTrackingO8rawValueACSgSu_tcfc", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueACSgSu_tcfc", + "moduleName": "FBSDKLoginKit", + "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:13FBSDKLoginKit13LoginTrackingO8rawValueSuvp", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueSuvp", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit13LoginTrackingO8rawValueSuvg", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO8rawValueSuvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKLoginTracking", + "mangledName": "$s13FBSDKLoginKit13LoginTrackingO", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginTracking", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "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": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginURLCompleter", + "printedName": "LoginURLCompleter", + "children": [ + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV10parametersAA01_C20CompletionParametersCvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(urlParameters:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "LoginURLCompleter", + "printedName": "FBSDKLoginKit.LoginURLCompleter", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV13urlParameters5appIDACSDySSypG_SStcfc", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV13urlParameters5appIDACSDySSypG_SStcfc", + "moduleName": "FBSDKLoginKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV08completeC07handleryyAA01_C20CompletionParametersCc_tF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "completeLogin", + "printedName": "completeLogin(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV08completeC05nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fetchAndSetPropertiesFor", + "printedName": "fetchAndSetPropertiesFor(parameters:nonce:handler:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV24fetchAndSetPropertiesFor10parameters5nonce7handleryAA01_C20CompletionParametersC_SSyAIctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV24fetchAndSetPropertiesFor10parameters5nonce7handleryAA01_C20CompletionParametersC_SSyAIctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setParameters", + "printedName": "setParameters(values:appID:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV13setParameters6values5appIDySDySSypG_SStF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV13setParameters6values5appIDySDySSypG_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exchangeNonceForTokenWith", + "printedName": "exchangeNonceForTokenWith(handler:authenticationNonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV25exchangeNonceForTokenWith7handler014authenticationF0yyAA01_C20CompletionParametersCc_SStF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV25exchangeNonceForTokenWith7handler014authenticationF0yyAA01_C20CompletionParametersCc_SStF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "exchangeCodeForTokensWith", + "printedName": "exchangeCodeForTokensWith(nonce:codeVerifier:handler:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKLoginKit._LoginCompletionParameters) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV25exchangeCodeForTokensWith5nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV25exchangeCodeForTokensWith5nonce12codeVerifier7handlerySSSg_AHyAA01_C20CompletionParametersCctF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "profile", + "printedName": "profile(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenClaims", + "printedName": "FBSDKCoreKit.AuthenticationTokenClaims", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKAuthenticationTokenClaims" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV7profile4with09FBSDKCoreB07ProfileCSgAF25AuthenticationTokenClaimsC_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV7profile4with09FBSDKCoreB07ProfileCSgAF25AuthenticationTokenClaimsC_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "expirationDateFrom", + "printedName": "expirationDateFrom(parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV18expirationDateFrom10parameters10Foundation0F0VSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV18expirationDateFrom10parameters10Foundation0F0VSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "dataAccessExpirationDateFrom", + "printedName": "dataAccessExpirationDateFrom(parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV28dataAccessExpirationDateFrom10parameters10Foundation0H0VSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV28dataAccessExpirationDateFrom10parameters10Foundation0H0VSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "challenge", + "printedName": "challenge(from:)", + "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": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV9challenge4fromSSSgSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV9challenge4fromSSSgSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV5error4froms5Error_pSgSDySSypG_tF", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV5error4froms5Error_pSgSDySSypG_tF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "profileFactory", + "printedName": "profileFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactoryAA15ProfileCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenCreator", + "printedName": "authenticationTokenCreator", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV26authenticationTokenCreatorAA014AuthenticationH8Creating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphRequestFactory", + "printedName": "graphRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV19graphRequestFactorySo010FBSDKGraphhI0_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV15internalUtilitySo15FBSDKURLHosting_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(profileFactory:authenticationTokenCreator:graphRequestFactory:internalUtility:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ProfileCreating", + "printedName": "FBSDKLoginKit.ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP" + }, + { + "kind": "TypeNominal", + "name": "AuthenticationTokenCreating", + "printedName": "FBSDKLoginKit.AuthenticationTokenCreating", + "usr": "s:13FBSDKLoginKit27AuthenticationTokenCreatingP" + }, + { + "kind": "TypeNominal", + "name": "GraphRequestFactoryProtocol", + "printedName": "FBSDKCoreKit.GraphRequestFactoryProtocol", + "usr": "c:objc(pl)FBSDKGraphRequestFactory" + }, + { + "kind": "TypeNominal", + "name": "URLHosting", + "printedName": "FBSDKCoreKit.URLHosting", + "usr": "c:objc(pl)FBSDKURLHosting" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactory26authenticationTokenCreator012graphRequestH015internalUtility05errorH0AeA15ProfileCreating_p_AA014AuthenticationjR0_pSo010FBSDKGraphmH0_pSo15FBSDKURLHosting_pSo010FBSDKErrorR0_ptcfc", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV14profileFactory26authenticationTokenCreator012graphRequestH015internalUtility05errorH0AeA15ProfileCreating_p_AA014AuthenticationjR0_pSo010FBSDKGraphmH0_pSo15FBSDKURLHosting_pSo010FBSDKErrorR0_ptcfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV", + "moduleName": "FBSDKLoginKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV", + "mangledName": "$s13FBSDKLoginKit17LoginURLCompleterV", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "LoginCompleting", + "printedName": "LoginCompleting", + "usr": "s:13FBSDKLoginKit15LoginCompletingP", + "mangledName": "$s13FBSDKLoginKit15LoginCompletingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKLoginKit.LoginURLCompleter.TypeDependencies", + "usr": "s:13FBSDKLoginKit17LoginURLCompleterV16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKLoginKit15DependentAsTypeP", + "mangledName": "$s13FBSDKLoginKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "LoginUtility", + "printedName": "LoginUtility", + "children": [ + { + "kind": "Function", + "name": "stringForAudience", + "printedName": "stringForAudience(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "DefaultAudience", + "printedName": "FBSDKLoginKit.DefaultAudience", + "usr": "c:@M@FBSDKLoginKit@E@FBSDKDefaultAudience" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO17stringForAudienceySSAA07DefaultG0OFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO17stringForAudienceySSAA07DefaultG0OFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getQueryParameters", + "printedName": "getQueryParameters(from:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO18getQueryParameters4fromSDySSypGSg10Foundation3URLV_tFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO18getQueryParameters4fromSDySSypGSg10Foundation3URLV_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getUserID", + "printedName": "getUserID(from:)", + "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": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit12LoginUtilityO9getUserID4fromSSSgAF_tFZ", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO9getUserID4fromSSSgAF_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit12LoginUtilityO", + "mangledName": "$s13FBSDKLoginKit12LoginUtilityO", + "moduleName": "FBSDKLoginKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV13dependentType33_8991E3BB914DA09983850496725CF25BLLxmvp", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV13dependentType33_8991E3BB914DA09983850496725CF25BLLxmvp", + "moduleName": "FBSDKLoginKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKLoginKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKLoginKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit24MissingDependenciesErrorV", + "mangledName": "$s13FBSDKLoginKit24MissingDependenciesErrorV", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MonotonicTimer", + "printedName": "MonotonicTimer", + "children": [ + { + "kind": "Function", + "name": "getCurrentSeconds", + "printedName": "getCurrentSeconds()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV17getCurrentSecondsSdyF", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerV17getCurrentSecondsSdyF", + "moduleName": "FBSDKLoginKit", + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MonotonicTimer", + "printedName": "FBSDKLoginKit.MonotonicTimer", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKLoginKit14MonotonicTimerVACycfc", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerVACycfc", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKLoginKit14MonotonicTimerV", + "mangledName": "$s13FBSDKLoginKit14MonotonicTimerV", + "moduleName": "FBSDKLoginKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "NonceValidator", + "printedName": "NonceValidator", + "children": [ + { + "kind": "Function", + "name": "isValid", + "printedName": "isValid(nonce:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14NonceValidatorO7isValid5nonceSbSS_tFZ", + "mangledName": "$s13FBSDKLoginKit14NonceValidatorO7isValid5nonceSbSS_tFZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKLoginKit14NonceValidatorO", + "mangledName": "$s13FBSDKLoginKit14NonceValidatorO", + "moduleName": "FBSDKLoginKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileCreating", + "printedName": "ProfileCreating", + "children": [ + { + "kind": "Function", + "name": "createProfile", + "printedName": "createProfile(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.ProfileCreating>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ProfileFactory", + "printedName": "ProfileFactory", + "children": [ + { + "kind": "Function", + "name": "createProfile", + "printedName": "createProfile(userID:firstName:middleName:lastName:name:linkURL:refreshDate:imageURL:email:friendIDs:birthday:ageRange:hometown:location:gender:isLimited:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "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": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.UserAgeRange?", + "children": [ + { + "kind": "TypeNominal", + "name": "UserAgeRange", + "printedName": "FBSDKCoreKit.UserAgeRange", + "usr": "c:objc(cs)FBSDKUserAgeRange" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Location?", + "children": [ + { + "kind": "TypeNominal", + "name": "Location", + "printedName": "FBSDKCoreKit.Location", + "usr": "c:objc(cs)FBSDKLocation" + } + ], + "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": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit14ProfileFactoryC06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryC06createC06userID9firstName06middleI004lastI04name7linkURL11refreshDate05imageN05email9friendIDs8birthday8ageRange8hometown8location6gender9isLimited09FBSDKCoreB00C0CSS_SSSgA3X10Foundation0N0VSgAY0P0VSgA0_AXSaySSGSgA3_So012FBSDKUserAgeW0CSgSo13FBSDKLocationCSgA11_AXSbtF", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProfileFactory", + "printedName": "FBSDKLoginKit.ProfileFactory", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory(im)init", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)ProfileFactory", + "mangledName": "$s13FBSDKLoginKit14ProfileFactoryC", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ProfileCreating", + "printedName": "ProfileCreating", + "usr": "s:13FBSDKLoginKit15ProfileCreatingP", + "mangledName": "$s13FBSDKLoginKit15ProfileCreatingP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ServerConfigurationProviding", + "printedName": "ServerConfigurationProviding", + "children": [ + { + "kind": "Function", + "name": "loadServerConfiguration", + "printedName": "loadServerConfiguration(completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "((FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ())?", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(FBSDKCoreKit.FBSDKLoginTooltip?, Swift.Error?)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSDKLoginTooltip", + "printedName": "FBSDKCoreKit.FBSDKLoginTooltip", + "usr": "c:objc(cs)FBSDKLoginTooltip" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ] + } + ] + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP04loadcD010completionyySo0A7TooltipCSg_s5Error_pSgtcSg_tF", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP04loadcD010completionyySo0A7TooltipCSg_s5Error_pSgtcSg_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.ServerConfigurationProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceElementProviding", + "printedName": "UserInterfaceElementProviding", + "children": [ + { + "kind": "Function", + "name": "topMostViewController", + "printedName": "topMostViewController()", + "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": "Func", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP21topMostViewControllerSo06UIViewJ0CSgyF", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP21topMostViewControllerSo06UIViewJ0CSgyF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceElementProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "viewController", + "printedName": "viewController(for:)", + "children": [ + { + "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": "UIView", + "printedName": "UIKit.UIView", + "usr": "c:objc(cs)UIView" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP14viewController3forSo06UIViewH0CSgSo0J0C_tF", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP14viewController3forSo06UIViewH0CSgSo0J0C_tF", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceElementProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "children": [ + { + "kind": "Var", + "name": "bundleForStrings", + "printedName": "bundleForStrings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "moduleName": "FBSDKLoginKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "moduleName": "FBSDKLoginKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKLoginKit.UserInterfaceStringProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKLoginKit" + }, + { + "kind": "TypeDecl", + "name": "_LoginCompletionParameters", + "printedName": "_LoginCompletionParameters", + "children": [ + { + "kind": "Var", + "name": "authenticationToken", + "printedName": "authenticationToken", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)authenticationToken", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)authenticationToken", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AuthenticationToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AuthenticationToken", + "printedName": "FBSDKCoreKit.AuthenticationToken", + "usr": "c:objc(cs)FBSDKAuthenticationToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAuthenticationToken:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19authenticationTokenSo019FBSDKAuthenticationG0CSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "profile", + "printedName": "profile", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)profile", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)profile", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.Profile?", + "children": [ + { + "kind": "TypeNominal", + "name": "Profile", + "printedName": "FBSDKCoreKit.Profile", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKProfile" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setProfile:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC7profile09FBSDKCoreB07ProfileCSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "accessTokenString", + "printedName": "accessTokenString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)accessTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)accessTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAccessTokenString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC17accessTokenStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "nonceString", + "printedName": "nonceString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)nonceString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)nonceString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setNonceString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11nonceStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "authenticationTokenString", + "printedName": "authenticationTokenString", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)authenticationTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)authenticationTokenString", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAuthenticationTokenString:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC25authenticationTokenStringSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)code", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)code", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setCode:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC4codeSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "permissions", + "printedName": "permissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)permissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)permissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11permissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "declinedPermissions", + "printedName": "declinedPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)declinedPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setDeclinedPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC19declinedPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "expiredPermissions", + "printedName": "expiredPermissions", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)expiredPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)expiredPermissions", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Set?", + "children": [ + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set", + "children": [ + { + "kind": "TypeNominal", + "name": "FBPermission", + "printedName": "FBSDKLoginKit.FBPermission", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKPermission" + } + ], + "usr": "s:Sh" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setExpiredPermissions:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC18expiredPermissionsShyAA12FBPermissionCGSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)appID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)appID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setAppID:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5appIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "userID", + "printedName": "userID", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)userID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)userID", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setUserID:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC6userIDSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)error", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)error", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.Error?", + "children": [ + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setError:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC5errors5Error_pSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "expirationDate", + "printedName": "expirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)expirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)expirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setExpirationDate:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC14expirationDate10Foundation0G0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "dataAccessExpirationDate", + "printedName": "dataAccessExpirationDate", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)dataAccessExpirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)dataAccessExpirationDate", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Date?", + "children": [ + { + "kind": "TypeNominal", + "name": "Date", + "printedName": "Foundation.Date", + "usr": "s:10Foundation4DateV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setDataAccessExpirationDate:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC24dataAccessExpirationDate10Foundation0I0VSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "challenge", + "printedName": "challenge", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)challenge", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)challenge", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setChallenge:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC9challengeSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "graphDomain", + "printedName": "graphDomain", + "children": [ + { + "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@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(py)graphDomain", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvp", + "moduleName": "FBSDKLoginKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)graphDomain", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvg", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)setGraphDomain:", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvs", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvM", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC11graphDomainSSSgvM", + "moduleName": "FBSDKLoginKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "_LoginCompletionParameters", + "printedName": "FBSDKLoginKit._LoginCompletionParameters", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters(im)init", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersCACycfc", + "moduleName": "FBSDKLoginKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKLoginKit@objc(cs)FBSDKLoginCompletionParameters", + "mangledName": "$s13FBSDKLoginKit26_LoginCompletionParametersC", + "moduleName": "FBSDKLoginKit", + "objc_name": "FBSDKLoginCompletionParameters", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEvents", + "printedName": "AppEvents", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAppEvents", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAppEvents", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "LoginEventLogging", + "printedName": "LoginEventLogging", + "usr": "s:13FBSDKLoginKit17LoginEventLoggingP", + "mangledName": "$s13FBSDKLoginKit17LoginEventLoggingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InternalUtility", + "printedName": "InternalUtility", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKInternalUtility", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKInternalUtility", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceElementProviding", + "printedName": "UserInterfaceElementProviding", + "usr": "s:13FBSDKLoginKit29UserInterfaceElementProvidingP", + "mangledName": "$s13FBSDKLoginKit29UserInterfaceElementProvidingP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "usr": "s:13FBSDKLoginKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKLoginKit28UserInterfaceStringProvidingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "loginButtonDidTap", + "printedName": "loginButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17loginButtonDidTapABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "smartLoginService", + "printedName": "smartLoginService", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE17smartLoginServiceABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthStart", + "printedName": "sessionAuthStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE16sessionAuthStartABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthEnd", + "printedName": "sessionAuthEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE14sessionAuthEndABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthMethodStart", + "printedName": "sessionAuthMethodStart", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE22sessionAuthMethodStartABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthMethodEnd", + "printedName": "sessionAuthMethodEnd", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthMethodEndABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sessionAuthHeartbeat", + "printedName": "sessionAuthHeartbeat", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvpZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKLoginKitE20sessionAuthHeartbeatABvgZ", + "moduleName": "FBSDKLoginKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName", + "moduleName": "FBSDKCoreKit", + "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": "ServerConfigurationProvider", + "printedName": "ServerConfigurationProvider", + "declKind": "Class", + "usr": "c:@M@FBSDKCoreKit@objc(cs)ServerConfigurationProvider", + "mangledName": "$s12FBSDKCoreKit27ServerConfigurationProviderC", + "moduleName": "FBSDKCoreKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ServerConfigurationProviding", + "printedName": "ServerConfigurationProviding", + "usr": "s:13FBSDKLoginKit28ServerConfigurationProvidingP", + "mangledName": "$s13FBSDKLoginKit28ServerConfigurationProvidingP" + }, + { + "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" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/AuthenticationTokenFactory.swift", + "kind": "StringLiteral", + "offset": 731, + "length": 29, + "value": "\"-----BEGIN CERTIFICATE-----\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/AuthenticationTokenFactory.swift", + "kind": "StringLiteral", + "offset": 784, + "length": 27, + "value": "\"-----END CERTIFICATE-----\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1180, + "length": 2, + "value": "72" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1231, + "length": 2, + "value": "43" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/CodeVerifier.swift", + "kind": "IntegerLiteral", + "offset": 1238, + "length": 3, + "value": "128" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 964, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 8, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 964, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DefaultAudience.swift", + "kind": "IntegerLiteral", + "offset": 1064, + "length": 8, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginCodeInfo.swift", + "kind": "IntegerLiteral", + "offset": 850, + "length": 1, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginCodeInfo.swift", + "kind": "StringLiteral", + "offset": 410, + "length": 19, + "value": "\"FBSDKLoginKit.DeviceLoginCodeInfo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "Dictionary", + "offset": 692, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 1994, + "length": 7, + "value": "1349172" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 7, + "value": "1349173" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 7, + "value": "1349174" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2268, + "length": 7, + "value": "1349152" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 1994, + "length": 7, + "value": "1349172" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2089, + "length": 7, + "value": "1349173" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2198, + "length": 7, + "value": "1349174" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginError.swift", + "kind": "IntegerLiteral", + "offset": 2268, + "length": 7, + "value": "1349152" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManager.swift", + "kind": "BooleanLiteral", + "offset": 1341, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManager.swift", + "kind": "StringLiteral", + "offset": 803, + "length": 18, + "value": "\"FBSDKLoginKit.DeviceLoginManager\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/DeviceLoginManagerResult.swift", + "kind": "StringLiteral", + "offset": 411, + "length": 24, + "value": "\"FBSDKLoginKit.DeviceLoginManagerResult\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 908, + "length": 8, + "value": "\"device\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 946, + "length": 7, + "value": "\"model\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1018, + "length": 7, + "value": "\"fbsdk\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1051, + "length": 5, + "value": "\"ios\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1171, + "length": 3, + "value": "\".\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1182, + "length": 3, + "value": "\"|\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "IntegerLiteral", + "offset": 1227, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1370, + "length": 5, + "value": "\"dev\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/DeviceRequestsHelper.swift", + "kind": "StringLiteral", + "offset": 1450, + "length": 11, + "value": "\"_fb._tcp.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "Array", + "offset": 1814, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "BooleanLiteral", + "offset": 3428, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4249, + "length": 12, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4418, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4173, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4249, + "length": 12, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "IntegerLiteral", + "offset": 4418, + "length": 7, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4487, + "length": 4, + "value": "16.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4524, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4558, + "length": 4, + "value": "28.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4592, + "length": 3, + "value": "8.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginButton.swift", + "kind": "FloatLiteral", + "offset": 4637, + "length": 3, + "value": "8.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBLoginTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 1202, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/FBPermission.swift", + "kind": "StringLiteral", + "offset": 456, + "length": 12, + "value": "\"FBSDKLoginKit.FBPermission\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 752, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 752, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 814, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1041, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1016, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1041, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1137, + "length": 3, + "value": "0.3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1181, + "length": 5, + "value": "0.001" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1226, + "length": 3, + "value": "1.1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1273, + "length": 4, + "value": "0.98" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1319, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1364, + "length": 2, + "value": "17" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1425, + "length": 2, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1471, + "length": 1, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1519, + "length": 3, + "value": "0.5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1602, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1650, + "length": 2, + "value": "11" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1731, + "length": 4, + "value": "0x6e" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1738, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1752, + "length": 4, + "value": "0x9c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1759, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1772, + "length": 4, + "value": "0xf5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1779, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1793, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 4, + "value": "0x49" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1833, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1847, + "length": 4, + "value": "0x74" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1854, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1867, + "length": 4, + "value": "0xc6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1874, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1888, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1970, + "length": 4, + "value": "0x51" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1977, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 1991, + "length": 4, + "value": "0x50" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 1998, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2011, + "length": 4, + "value": "0x4f" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2018, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2032, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2065, + "length": 4, + "value": "0x2d" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2072, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2086, + "length": 4, + "value": "0x2c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2093, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 2106, + "length": 4, + "value": "0x2c" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2113, + "length": 5, + "value": "255.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2127, + "length": 3, + "value": "1.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 2425, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 3318, + "length": 3, + "value": "6.0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 3560, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 3936, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "BooleanLiteral", + "offset": 3970, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4074, + "length": 1, + "value": "7" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4113, + "length": 2, + "value": "10" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4158, + "length": 3, + "value": "185" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "IntegerLiteral", + "offset": 4206, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "FloatLiteral", + "offset": 4253, + "length": 4, + "value": "2.5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "Array", + "offset": 4300, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/FBTooltipView.swift", + "kind": "StringLiteral", + "offset": 489, + "length": 13, + "value": "\"FBSDKLoginKit.FBTooltipView\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 307, + "length": 25, + "value": "\"fb_login_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 413, + "length": 24, + "value": "\"fb_smart_login_service\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 605, + "length": 23, + "value": "\"fb_mobile_login_start\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 762, + "length": 26, + "value": "\"fb_mobile_login_complete\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 924, + "length": 30, + "value": "\"fb_mobile_login_method_start\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 1090, + "length": 33, + "value": "\"fb_mobile_login_method_complete\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginAppEventNames.swift", + "kind": "StringLiteral", + "offset": 1259, + "length": 27, + "value": "\"fb_mobile_login_heartbeat\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginConfiguration.swift", + "kind": "Array", + "offset": 9284, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginConfiguration.swift", + "kind": "StringLiteral", + "offset": 387, + "length": 18, + "value": "\"FBSDKLoginKit.LoginConfiguration\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "Dictionary", + "offset": 679, + "length": 3, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2931, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2983, + "length": 7, + "value": "301" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3059, + "length": 15, + "value": "302" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3165, + "length": 16, + "value": "303" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3272, + "length": 12, + "value": "304" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3367, + "length": 15, + "value": "305" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3579, + "length": 24, + "value": "306" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 24, + "value": "307" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 18, + "value": "308" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3857, + "length": 14, + "value": "309" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3939, + "length": 18, + "value": "310" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2931, + "length": 3, + "value": "300" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 2983, + "length": 7, + "value": "301" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3059, + "length": 15, + "value": "302" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3165, + "length": 16, + "value": "303" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3272, + "length": 12, + "value": "304" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3367, + "length": 15, + "value": "305" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3579, + "length": 24, + "value": "306" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3677, + "length": 24, + "value": "307" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3772, + "length": 18, + "value": "308" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3857, + "length": 14, + "value": "309" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginError.swift", + "kind": "IntegerLiteral", + "offset": 3939, + "length": 18, + "value": "310" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "BooleanLiteral", + "offset": 1430, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1561, + "length": 26, + "value": "\"expected_login_challenge\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1619, + "length": 22, + "value": "\"expected_login_nonce\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1680, + "length": 30, + "value": "\"expected_login_code_verifier\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "IntegerLiteral", + "offset": 1771, + "length": 2, + "value": "20" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1808, + "length": 15, + "value": "\"\/dialog\/oauth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1900, + "length": 41, + "value": "\"com.apple.SafariServices.Authentication\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 1982, + "length": 59, + "value": "\"com.apple.AuthenticationServices.WebAuthenticationSession\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2245, + "length": 14, + "value": "\"browser_auth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2298, + "length": 11, + "value": "\"sfvc_auth\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2562, + "length": 82, + "value": "\"Unable to find main bundle identifier. Cannot create keychain service identifier\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2734, + "length": 51, + "value": "\"com.facebook.sdk.loginmanager.\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManager.swift", + "kind": "StringLiteral", + "offset": 2784, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 481, + "length": 7, + "value": "\"state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 520, + "length": 31, + "value": "\"com.facebook.sdk_client_state\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 646, + "length": 18, + "value": "\"0_auth_logger_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 717, + "length": 16, + "value": "\"1_timestamp_ms\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 10, + "value": "\"2_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 10, + "value": "\"3_method\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 910, + "length": 14, + "value": "\"4_error_code\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 980, + "length": 17, + "value": "\"5_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1047, + "length": 10, + "value": "\"6_extras\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1113, + "length": 17, + "value": "\"7_logging_token\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1193, + "length": 22, + "value": "\"declined_permissions\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1288, + "length": 15, + "value": "\"error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1339, + "length": 21, + "value": "\"inner_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1404, + "length": 52, + "value": "\"com.facebook.sdk:FBSDKErrorLocalizedDescriptionKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1496, + "length": 58, + "value": "\"com.facebook.sdk:FBSDKGraphRequestErrorGraphErrorCodeKey\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1614, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1655, + "length": 24, + "value": "\"com.facebook.sdk.login\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1614, + "length": 23, + "value": "\"com.facebook.sdk.core\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1655, + "length": 24, + "value": "\"com.facebook.sdk.login\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1758, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerLogger.swift", + "kind": "StringLiteral", + "offset": 1758, + "length": 11, + "value": "\"cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginManagerLoginResult.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 23, + "value": "\"FBSDKLoginKit.LoginManagerLoginResult\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 5, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/LoginManagerState.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 15, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginTracking.swift", + "kind": "IntegerLiteral", + "offset": 506, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/LoginTracking.swift", + "kind": "IntegerLiteral", + "offset": 506, + "length": 7, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/MonotonicTimer.swift", + "kind": "IntegerLiteral", + "offset": 387, + "length": 1, + "value": "0" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKLoginKit\/FBSDKLoginKit\/Internal\/MonotonicTimer.swift", + "kind": "StringLiteral", + "offset": 413, + "length": 57, + "value": "\"Unable to get timebase information for monotomic timing\"" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 00000000..f7f3838e --- /dev/null +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,390 @@ +// 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-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import CommonCrypto +import FBSDKCoreKit +import FBSDKCoreKit_Basics +@_exported import FBSDKLoginKit +import Foundation +import Security +import Swift +import UIKit +import _Concurrency +import _StringProcessing +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKCodeVerifier) final public class CodeVerifier : ObjectiveC.NSObject { + @objc final public let value: Swift.String + @objc final public var challenge: Swift.String { + @objc get + } + @objc(initWithString:) convenience public init?(string: Swift.String) + @objc override convenience dynamic public init() + @objc deinit +} +@objc(FBSDKDefaultAudience) public enum DefaultAudience : Swift.UInt { + case friends + case onlyMe + case everyone + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } +} +@objcMembers @objc(FBSDKDeviceLoginCodeInfo) final public class DeviceLoginCodeInfo : ObjectiveC.NSObject { + @objc final public let identifier: Swift.String + @objc final public let loginCode: Swift.String + @objc final public let verificationURL: Foundation.URL + @objc final public let expirationDate: Foundation.Date + @objc final public let pollingInterval: Swift.UInt + @objc public init(identifier: Swift.String, loginCode: Swift.String, verificationURL: Foundation.URL, expirationDate: Foundation.Date, pollingInterval: Swift.UInt) + @objc deinit +} +public struct DeviceLoginError : Foundation.CustomNSError, Swift.Hashable { + public let errorCode: Swift.Int + public let errorUserInfo: [Swift.String : Any] + public init(_nsError nsError: Foundation.NSError) + public init(_ code: FBSDKLoginKit.DeviceLoginError.Code, userInfo: [Swift.String : Any] = [:]) + public static var errorDomain: Swift.String { + get + } + public typealias Code = FBSDKLoginKit.DeviceLoginErrorCode + public static var excessivePolling: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var authorizationDeclined: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var authorizationPending: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static var codeExpired: FBSDKLoginKit.DeviceLoginError.Code { + get + } + public static func == (lhs: FBSDKLoginKit.DeviceLoginError, rhs: FBSDKLoginKit.DeviceLoginError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc(FBSDKDeviceLoginError) public enum DeviceLoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { + public typealias _ErrorType = FBSDKLoginKit.DeviceLoginError + case excessivePolling = 1349172 + case authorizationDeclined = 1349173 + case authorizationPending = 1349174 + case codeExpired = 1349152 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@objcMembers @objc(FBSDKDeviceLoginManager) final public class DeviceLoginManager : ObjectiveC.NSObject { + @objc weak final public var delegate: FBSDKLoginKit.DeviceLoginManagerDelegate? + @objc final public let permissions: [Swift.String] + @objc final public var redirectURL: Foundation.URL? + @objc(initWithPermissions:enableSmartLogin:) public init(permissions: [Swift.String], enableSmartLogin: Swift.Bool) + @objc final public func start() + @objc final public func cancel() + @objc deinit +} +extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { + @objc final public func netService(_ service: Foundation.NetService, didNotPublish errorValues: [Swift.String : Foundation.NSNumber]) +} +@objc(FBSDKDeviceLoginManagerDelegate) public protocol DeviceLoginManagerDelegate { + @objc(deviceLoginManager:startedWithCodeInfo:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, startedWith codeInfo: FBSDKLoginKit.DeviceLoginCodeInfo) + @objc(deviceLoginManager:completedWithResult:error:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, completedWith result: FBSDKLoginKit.DeviceLoginManagerResult?, error: Swift.Error?) +} +@objcMembers @objc(FBSDKDeviceLoginManagerResult) final public class DeviceLoginManagerResult : ObjectiveC.NSObject { + @objc final public var accessToken: FBSDKCoreKit.AccessToken? { + get + } + @objc final public var isCancelled: Swift.Bool { + get + } + @objc public init(token: FBSDKCoreKit.AccessToken?, isCancelled cancelled: Swift.Bool) + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKLoginButton) @_Concurrency.MainActor(unsafe) final public class FBLoginButton : FBSDKCoreKit.FBButton { + @objc @_Concurrency.MainActor(unsafe) final public var defaultAudience: FBSDKLoginKit.DefaultAudience { + @objc get + @objc set + } + @objc @IBOutlet @_Concurrency.MainActor(unsafe) weak final public var delegate: FBSDKLoginKit.LoginButtonDelegate? + @objc @_Concurrency.MainActor(unsafe) final public var permissions: [Swift.String] + @objc @_Concurrency.MainActor(unsafe) final public var tooltipBehavior: FBSDKLoginKit.FBLoginButton.TooltipBehavior + @objc @_Concurrency.MainActor(unsafe) final public var tooltipColorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle + @objc @_Concurrency.MainActor(unsafe) final public var loginTracking: FBSDKLoginKit.LoginTracking + @objc @_Concurrency.MainActor(unsafe) final public var nonce: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var messengerPageId: Swift.String? + @objc @_Concurrency.MainActor(unsafe) final public var authType: FBSDKLoginKit.LoginAuthType? + @objc @_Concurrency.MainActor(unsafe) final public var codeVerifier: FBSDKLoginKit.CodeVerifier + @objc(FBSDKLoginButtonTooltipBehavior) public enum TooltipBehavior : Swift.UInt { + case automatic = 0 + case forceDisplay + case disable + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override final public func didMoveToWindow() + @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func layoutSubviews() + @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreFoundation.CGSize) -> CoreFoundation.CGSize + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(FBSDKLoginTooltipView) @_Concurrency.MainActor(unsafe) final public class FBLoginTooltipView : FBSDKLoginKit.FBTooltipView { + @objc @_Concurrency.MainActor(unsafe) weak final public var delegate: FBSDKLoginKit.LoginTooltipViewDelegate? + @objc @_Concurrency.MainActor(unsafe) final public var forceDisplay: Swift.Bool + @objc @_Concurrency.MainActor(unsafe) final public var shouldForceDisplay: Swift.Bool { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc convenience dynamic public init() + @objc(initWithTagline:message:colorStyle:) @_Concurrency.MainActor(unsafe) override public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) + @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc deinit +} +@objcMembers @objc(FBSDKPermission) final public class FBPermission : ObjectiveC.NSObject { + @objc override final public var description: Swift.String { + @objc get + } + @objc override final public var hash: Swift.Int { + @objc get + } + @objc public init?(string: Swift.String) + @objc(permissionsFromRawPermissions:) public static func permissions(fromRawPermissions rawPermissions: Swift.Set) -> Swift.Set? + @objc(rawPermissionsFromPermissions:) public static func rawPermissions(from permissions: Swift.Set) -> Swift.Set + @objc override final public func isEqual(_ object: Any?) -> Swift.Bool + @objc deinit +} +@objc(FBSDKTooltipView) @_Concurrency.MainActor(unsafe) open class FBTooltipView : UIKit.UIView { + @objc(FBSDKTooltipViewArrowDirection) @frozen public enum ArrowDirection : Swift.UInt { + case down = 0 + case up = 1 + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc(FBSDKTooltipColorStyle) @frozen public enum ColorStyle : Swift.UInt { + case friendlyBlue = 0 + case neutralGray = 1 + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } + @objc @_Concurrency.MainActor(unsafe) public var displayDuration: Swift.Double + @objc @_Concurrency.MainActor(unsafe) public var colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public var message: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public var tagline: Swift.String? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) + @available(*, unavailable) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit + @objc(presentFromView:) @_Concurrency.MainActor(unsafe) public func present(from anchorView: UIKit.UIView) + @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc @_Concurrency.MainActor(unsafe) public func dismiss() + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() +} +@objc(FBSDKLoginButtonDelegate) public protocol LoginButtonDelegate : ObjectiveC.NSObjectProtocol { + @objc(loginButton:didCompleteWithResult:error:) func loginButton(_ loginButton: FBSDKLoginKit.FBLoginButton, didCompleteWith result: FBSDKLoginKit.LoginManagerLoginResult?, error: Swift.Error?) + @objc func loginButtonDidLogOut(_ loginButton: FBSDKLoginKit.FBLoginButton) + @objc optional func loginButtonWillLogin(_ loginButton: FBSDKLoginKit.FBLoginButton) -> Swift.Bool +} +@objcMembers @objc(FBSDKLoginConfiguration) final public class LoginConfiguration : ObjectiveC.NSObject { + @objc final public let nonce: Swift.String + @objc final public let tracking: FBSDKLoginKit.LoginTracking + @objc final public let requestedPermissions: Swift.Set + @objc final public let messengerPageId: Swift.String? + @objc final public let authType: FBSDKLoginKit.LoginAuthType? + @objc final public let codeVerifier: FBSDKLoginKit.CodeVerifier + @objc(initWithPermissions:tracking:nonce:messengerPageId:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?) + @objc(initWithPermissions:tracking:nonce:messengerPageId:authType:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?) + @objc(initWithPermissions:tracking:nonce:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String) + @objc(initWithPermissions:tracking:messengerPageId:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, messengerPageId: Swift.String?) + @objc(initWithPermissions:tracking:messengerPageId:authType:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?) + @objc(initWithPermissions:tracking:nonce:messengerPageId:authType:codeVerifier:) public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking, nonce: Swift.String, messengerPageId: Swift.String?, authType: FBSDKLoginKit.LoginAuthType?, codeVerifier: FBSDKLoginKit.CodeVerifier) + @objc(initWithPermissions:tracking:) convenience public init?(permissions: [Swift.String], tracking: FBSDKLoginKit.LoginTracking) + @objc(initWithTracking:) convenience public init?(tracking: FBSDKLoginKit.LoginTracking) + convenience public init?(permissions: Swift.Set = [], tracking: FBSDKLoginKit.LoginTracking = .enabled, nonce: Swift.String = UUID().uuidString, messengerPageId: Swift.String? = nil, authType: FBSDKLoginKit.LoginAuthType? = .rerequest, codeVerifier: FBSDKLoginKit.CodeVerifier = CodeVerifier()) + @objc deinit +} +public struct LoginError : Foundation.CustomNSError, Swift.Hashable { + public let errorCode: Swift.Int + public let errorUserInfo: [Swift.String : Any] + public init(_nsError nsError: Foundation.NSError) + public init(_ code: FBSDKLoginKit.LoginError.Code, userInfo: [Swift.String : Any] = [:]) + public static var errorDomain: Swift.String { + get + } + public typealias Code = FBSDKLoginKit.LoginErrorCode + public static var reserved: FBSDKLoginKit.LoginError.Code { + get + } + public static var unknown: FBSDKLoginKit.LoginError.Code { + get + } + public static var passwordChanged: FBSDKLoginKit.LoginError.Code { + get + } + public static var userCheckpointed: FBSDKLoginKit.LoginError.Code { + get + } + public static var userMismatch: FBSDKLoginKit.LoginError.Code { + get + } + public static var unconfirmedUser: FBSDKLoginKit.LoginError.Code { + get + } + public static var systemAccountAppDisabled: FBSDKLoginKit.LoginError.Code { + get + } + public static var systemAccountUnavailable: FBSDKLoginKit.LoginError.Code { + get + } + public static var badChallengeString: FBSDKLoginKit.LoginError.Code { + get + } + public static var invalidIDToken: FBSDKLoginKit.LoginError.Code { + get + } + public static var missingAccessToken: FBSDKLoginKit.LoginError.Code { + get + } + public static func == (lhs: FBSDKLoginKit.LoginError, rhs: FBSDKLoginKit.LoginError) -> Swift.Bool + public func hash(into hasher: inout Swift.Hasher) + public var hashValue: Swift.Int { + get + } +} +@objc(FBSDKLoginError) public enum LoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { + public typealias _ErrorType = FBSDKLoginKit.LoginError + case reserved = 300 + case unknown + case passwordChanged + case userCheckpointed + case userMismatch + case unconfirmedUser + case systemAccountAppDisabled + case systemAccountUnavailable + case badChallengeString + case invalidIDToken + case missingAccessToken + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public let LoginErrorDomain: Swift.String +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLoginManager) final public class LoginManager : ObjectiveC.NSObject { + @objc final public var defaultAudience: FBSDKLoginKit.DefaultAudience + @objc convenience public init(defaultAudience: FBSDKLoginKit.DefaultAudience = .friends) + @available(swift, obsoleted: 0.1) + @objc(logInFromViewController:configuration:completion:) final public func logIn(from viewController: UIKit.UIViewController?, configuration: FBSDKLoginKit.LoginConfiguration?, completion: @escaping FBSDKLoginKit.LoginManagerLoginResultBlock) + @nonobjc final public func logIn(viewController: UIKit.UIViewController? = nil, configuration: FBSDKLoginKit.LoginConfiguration?, completion: @escaping FBSDKLoginKit.LoginResultBlock) + @objc(logInWithPermissions:fromViewController:handler:) final public func logIn(permissions: [Swift.String], from viewController: UIKit.UIViewController?, handler: FBSDKLoginKit.LoginManagerLoginResultBlock?) + @objc(reauthorizeDataAccess:handler:) final public func reauthorizeDataAccess(from viewController: UIKit.UIViewController, handler: @escaping FBSDKLoginKit.LoginManagerLoginResultBlock) + @objc(logOut) final public func logOut() + @objc override dynamic public init() + @objc deinit +} +extension FBSDKLoginKit.LoginManager : FBSDKCoreKit.URLOpening { + @objc public static func makeOpener() -> FBSDKLoginKit.LoginManager + @objc final public func application(_ application: UIKit.UIApplication?, open url: Foundation.URL?, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func canOpen(_ url: Foundation.URL, for application: UIKit.UIApplication?, sourceApplication: Swift.String?, annotation: Any?) -> Swift.Bool + @objc final public func applicationDidBecomeActive(_ application: UIKit.UIApplication) + @objc final public func isAuthenticationURL(_ url: Foundation.URL) -> Swift.Bool + @objc final public func shouldStopPropagation(of url: Foundation.URL) -> Swift.Bool +} +@objcMembers @objc(FBSDKLoginManagerLoginResult) final public class LoginManagerLoginResult : ObjectiveC.NSObject { + @objc final public let token: FBSDKCoreKit.AccessToken? + @objc final public let authenticationToken: FBSDKCoreKit.AuthenticationToken? + @objc final public let isCancelled: Swift.Bool + @objc final public let grantedPermissions: Swift.Set + @objc final public let declinedPermissions: Swift.Set + @objc(initWithToken:authenticationToken:isCancelled:grantedPermissions:declinedPermissions:) public init(token: FBSDKCoreKit.AccessToken?, authenticationToken: FBSDKCoreKit.AuthenticationToken?, isCancelled: Swift.Bool, grantedPermissions: Swift.Set, declinedPermissions: Swift.Set) + @objc deinit +} +public typealias LoginResultBlock = (FBSDKLoginKit.LoginResult) -> Swift.Void +@frozen public enum LoginResult { + case success(granted: Swift.Set, declined: Swift.Set, token: FBSDKCoreKit.AccessToken?) + case cancelled + case failed(Swift.Error) +} +@objc(FBSDKLoginTooltipViewDelegate) public protocol LoginTooltipViewDelegate { + @objc(loginTooltipView:shouldAppear:) optional func loginTooltipView(_ view: FBSDKLoginKit.FBLoginTooltipView, shouldAppear appIsEligible: Swift.Bool) -> Swift.Bool + @objc(loginTooltipViewWillAppear:) optional func loginTooltipViewWillAppear(_ view: FBSDKLoginKit.FBLoginTooltipView) + @objc(loginTooltipViewWillNotAppear:) optional func loginTooltipViewWillNotAppear(_ view: FBSDKLoginKit.FBLoginTooltipView) +} +@objc(FBSDKLoginTracking) public enum LoginTracking : Swift.UInt { + case enabled + case limited + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKLoginCompletionParameters) final public class _LoginCompletionParameters : ObjectiveC.NSObject { + @objc final public var authenticationToken: FBSDKCoreKit.AuthenticationToken? + @objc final public var profile: FBSDKCoreKit.Profile? + @objc final public var accessTokenString: Swift.String? + @objc final public var nonceString: Swift.String? + @objc final public var authenticationTokenString: Swift.String? + @objc final public var code: Swift.String? + @objc final public var permissions: Swift.Set? + @objc final public var declinedPermissions: Swift.Set? + @objc final public var expiredPermissions: Swift.Set? + @objc final public var appID: Swift.String? + @objc final public var userID: Swift.String? + @objc final public var error: Swift.Error? + @objc final public var expirationDate: Foundation.Date? + @objc final public var dataAccessExpirationDate: Foundation.Date? + @objc final public var challenge: Swift.String? + @objc final public var graphDomain: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKLoginKit.DefaultAudience : Swift.Equatable {} +extension FBSDKLoginKit.DefaultAudience : Swift.Hashable {} +extension FBSDKLoginKit.DefaultAudience : Swift.RawRepresentable {} +extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.Hashable {} +extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.Equatable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.Hashable {} +extension FBSDKLoginKit.FBLoginButton.TooltipBehavior : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Equatable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Hashable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ArrowDirection : Swift.Sendable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Equatable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Hashable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.RawRepresentable {} +extension FBSDKLoginKit.FBTooltipView.ColorStyle : Swift.Sendable {} +extension FBSDKLoginKit.LoginErrorCode : Swift.Hashable {} +extension FBSDKLoginKit.LoginErrorCode : Swift.RawRepresentable {} +extension FBSDKLoginKit.LoginTracking : Swift.Equatable {} +extension FBSDKLoginKit.LoginTracking : Swift.Hashable {} +extension FBSDKLoginKit.LoginTracking : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index e3959966..97d89f3b 100644 Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 64b25183..f7f3838e 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import CommonCrypto import FBSDKCoreKit import FBSDKCoreKit_Basics @@ -10,6 +11,7 @@ import Security import Swift import UIKit import _Concurrency +import _StringProcessing @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKCodeVerifier) final public class CodeVerifier : ObjectiveC.NSObject { @objc final public let value: Swift.String @objc final public var challenge: Swift.String { @@ -130,12 +132,12 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { get } } - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override final public func didMoveToWindow() - @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreGraphics.CGRect) -> CoreGraphics.CGRect - @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreGraphics.CGRect) -> CoreGraphics.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func imageRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect + @_Concurrency.MainActor(unsafe) @objc override final public func titleRect(forContentRect contentRect: CoreFoundation.CGRect) -> CoreFoundation.CGRect @_Concurrency.MainActor(unsafe) @objc override final public func layoutSubviews() - @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreGraphics.CGSize) -> CoreGraphics.CGSize + @_Concurrency.MainActor(unsafe) @objc override final public func sizeThatFits(_ size: CoreFoundation.CGSize) -> CoreFoundation.CGSize @objc deinit } @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(FBSDKLoginTooltipView) @_Concurrency.MainActor(unsafe) final public class FBLoginTooltipView : FBSDKLoginKit.FBTooltipView { @@ -145,9 +147,9 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { @objc get @objc set } - @objc convenience dynamic public init() + @_Concurrency.MainActor(unsafe) @objc convenience dynamic public init() @objc(initWithTagline:message:colorStyle:) @_Concurrency.MainActor(unsafe) override public init(tagline: Swift.String?, message: Swift.String?, colorStyle: FBSDKLoginKit.FBTooltipView.ColorStyle) - @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreGraphics.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @_Concurrency.MainActor(unsafe) @objc override final public func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) @objc deinit } @objcMembers @objc(FBSDKPermission) final public class FBPermission : ObjectiveC.NSObject { @@ -200,9 +202,9 @@ extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit @objc(presentFromView:) @_Concurrency.MainActor(unsafe) public func present(from anchorView: UIKit.UIView) - @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreGraphics.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) + @objc(presentInView:withArrowPosition:direction:) @_Concurrency.MainActor(unsafe) open func present(in view: UIKit.UIView, arrowPosition: CoreFoundation.CGPoint, direction: FBSDKLoginKit.FBTooltipView.ArrowDirection) @objc @_Concurrency.MainActor(unsafe) public func dismiss() - @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews() } @objc(FBSDKLoginButtonDelegate) public protocol LoginButtonDelegate : ObjectiveC.NSObjectProtocol { diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/module.modulemap b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/module.modulemap index de53eb21..75e58605 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/module.modulemap +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/module.modulemap @@ -6,6 +6,6 @@ framework module FBSDKLoginKit { } module FBSDKLoginKit.Swift { - header "FBSDKLoginKit-Swift.h" - requires objc + header "FBSDKLoginKit-Swift.h" + requires objc } diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeDirectory b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeDirectory new file mode 100644 index 00000000..85a473a1 Binary files /dev/null and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeDirectory differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeRequirements b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeRequirements new file mode 100644 index 00000000..dbf9d614 Binary files /dev/null and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeRequirements differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeRequirements-1 b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeRequirements-1 new file mode 100644 index 00000000..96b71325 Binary files /dev/null and b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeResources b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeResources index 72bf73e6..44c0d337 100644 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeResources +++ b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeResources @@ -18,7 +18,7 @@ Headers/FBSDKLoginKit-Swift.h - QsT/uq2LYXbLqoQKF8Td7urPRVo= + 6ZAocDZc5rBFRDWH1CbFsBvYTvw= Headers/FBSDKLoginKit.h @@ -30,41 +30,61 @@ Info.plist - Jpb+nzKpPN4IAHZJCTMEFNwhYSM= + v8juCxxbOy4srXLytjRzOFcWPSU= + + Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.abi.json + + nZrMu81f17IY8PcqRtdfBXUp9XA= + + Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + noYDRnnTCIIqL6Qmnudg1l4y6Ik= Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc - Xb4YnhzZE7GMN5piqcS04MA0TeY= + 3o6LltKBbWn6/7S4LQoXF3I7iWw= Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface - s9/R1eIWT0gTKzFSubH5Rz88exs= + noYDRnnTCIIqL6Qmnudg1l4y6Ik= Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule - P73at10BIi6rT/l/8VPme8nxHCw= + wDNdHzLFj0UTI/2jtagqq36idAg= + + Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.abi.json + + nZrMu81f17IY8PcqRtdfBXUp9XA= + + Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + SLKnubaQ0ox1U66bFeAbGh2t2mU= Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - 0hnLFpEVyx3fNnAOdU/Ac8GP9yI= + 7dJmu72Vwc3kWyZE9YiQarmD3mI= Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - +omukvaOQMd0E8gp05H4BMcBFb4= + SLKnubaQ0ox1U66bFeAbGh2t2mU= Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - w6/NQqV16hxm+NANX4cuYxAp4hY= + 4K+2IKuK72DRxytx+AWvmSG3UHs= Modules/module.modulemap - tfc04nZSIwhoHV/QsoW1UgsqZrM= + KrDKcg24trXz/SqZuZkQjJYkUsc= files2 Headers/FBSDKLoginAuthType.h + hash + + dbPjG4QiKnnxeSs+knOQIJW0JVg= + hash2 En8JspBXmCZrSWkWaxJV5tKzr8At6tqf53zIGNa2VYY= @@ -72,6 +92,10 @@ Headers/FBSDKLoginCompletionParametersBlock.h + hash + + fPr6aC3BILzRqRBn1j6oocs3jMc= + hash2 7WGMXXull6LrlXHwbqyalo/ZMN0JSBtHbC6cWu8k2eI= @@ -79,6 +103,10 @@ Headers/FBSDKLoginErrorDomain.h + hash + + cneem1mczyhnLYxbDjbbR5mEmzM= + hash2 zFgW2vVnY7X9MEoilZ5/3iQAYiab+N4zlq9kMvgkl/4= @@ -86,13 +114,21 @@ Headers/FBSDKLoginKit-Swift.h + hash + + 6ZAocDZc5rBFRDWH1CbFsBvYTvw= + hash2 - /XnLBY9Q+pfepPX9S+nWaayKZVwPfdch46ckdQHWECE= + Rhp8hd1k9YdH7KbFL4eSC7R4CAYqcUc+ANeC56yPfzo= Headers/FBSDKLoginKit.h + hash + + OUJgU2YPcKajMNRVhOXvWNOomHs= + hash2 8b6xB2UCDMQ82B5SNTD1CpaH+pyHg+K3Yy0MxzTdgTE= @@ -100,58 +136,134 @@ Headers/FBSDKLoginManagerLoginResultBlock.h + hash + + hdGFhcZwp8w9OhQTkCmMyUDevXU= + hash2 Zb9GWGgaSc6xOtE0UsSlBLPOxWMfbTeNdSsr0fvIp74= + Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.abi.json + + hash + + nZrMu81f17IY8PcqRtdfBXUp9XA= + + hash2 + + Hfke+UEIA3prKzLElhYu0Btd0xfkC/mFdbyfbsfkqxk= + + + Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + hash + + noYDRnnTCIIqL6Qmnudg1l4y6Ik= + + hash2 + + yshAbNoGcvAEPPU07gNrhGGMPIoCe0QlrqU9ybo/fZs= + + Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc + hash + + 3o6LltKBbWn6/7S4LQoXF3I7iWw= + hash2 - UujPWvdnmJNYDy8La0lwRBuYfVeUtXRC9DlEOfTEZEQ= + tWCjxQ3b9ocHknlIJMn1Lq9pXXAmk4UNfj3zZSOcLak= Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface + hash + + noYDRnnTCIIqL6Qmnudg1l4y6Ik= + hash2 - EMoOm+wNUcgu3yn/pK8bUsEIHgz6ePdXgyf/1kNL0LE= + yshAbNoGcvAEPPU07gNrhGGMPIoCe0QlrqU9ybo/fZs= Modules/FBSDKLoginKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule + hash + + wDNdHzLFj0UTI/2jtagqq36idAg= + + hash2 + + 0QOv06VSwb+WzUyqpFIGDKgJ/Y6PaW70+acHG+ROleQ= + + + Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.abi.json + + hash + + nZrMu81f17IY8PcqRtdfBXUp9XA= + hash2 - Qs+Iz4I/NcCzp2xkuFIga5YU3tcBZexIA7ElKniwHGY= + Hfke+UEIA3prKzLElhYu0Btd0xfkC/mFdbyfbsfkqxk= + + + Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + hash + + SLKnubaQ0ox1U66bFeAbGh2t2mU= + + hash2 + + es+y2vXtdj2KwqS5LfQnIbZnvciMPVCMyB+NltC4qpw= Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + hash + + 7dJmu72Vwc3kWyZE9YiQarmD3mI= + hash2 - 1V2DJNk8U+peezWaBbnMQLW7z98ZmesVeZxnPCB7HhE= + PPM8TtWKr0YO8TEGTcpL8JMPt2FqtXnAchJK/reXzgk= Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + hash + + SLKnubaQ0ox1U66bFeAbGh2t2mU= + hash2 - mzy2cp2RBIZLt6yj0CrAKg/3ImclG4FF0OkJqAuqH3o= + es+y2vXtdj2KwqS5LfQnIbZnvciMPVCMyB+NltC4qpw= Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule + hash + + 4K+2IKuK72DRxytx+AWvmSG3UHs= + hash2 - zsMdvTfcNTsvRrS0XSENxalecXpGTLdvkbrLtwln8YQ= + vnjTONfEJlY+cl65gVo/cd4HpbkF0KcvxYdn1rDn+/A= Modules/module.modulemap + hash + + KrDKcg24trXz/SqZuZkQjJYkUsc= + hash2 - mg/tLWcmTWvzzkcRtPQSnONw1PhzIM4vXke4Qdm7upM= + /LNPo6mK3Ap58ptMqxKbx/hlGBOSkSGDoDN3+CL3VlA= diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeSignature b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeSignature new file mode 100644 index 00000000..e69de29b diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 3fc827a5..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKLoginKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit b/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit deleted file mode 100644 index 0440fcf5..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/FBSDKLoginKit b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/FBSDKLoginKit deleted file mode 100755 index de1401ca..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/FBSDKLoginKit and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginAuthType.h b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginAuthType.h deleted file mode 100644 index 56119335..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginAuthType.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -/// Login authorization types. -typedef NSString *const FBSDKLoginAuthType NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(LoginAuthType); - -/// The default login authorization type for login buttons; requests previously declined user permissions. -FOUNDATION_EXPORT FBSDKLoginAuthType FBSDKLoginAuthTypeRerequest; - -/// Requests permissions when the user's data access has expired. -FOUNDATION_EXPORT FBSDKLoginAuthType FBSDKLoginAuthTypeReauthorize; - -#endif diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginCompletionParametersBlock.h b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginCompletionParametersBlock.h deleted file mode 100644 index 7f3e5702..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginCompletionParametersBlock.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@class FBSDKLoginCompletionParameters; - -NS_ASSUME_NONNULL_BEGIN - -/// Success Block -typedef void (^ FBSDKLoginCompletionParametersBlock)(FBSDKLoginCompletionParameters *parameters) -NS_SWIFT_NAME(LoginCompletionParametersBlock); - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginErrorDomain.h b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginErrorDomain.h deleted file mode 100644 index 300e177c..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginErrorDomain.h +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// The error domain for all errors from LoginKit -/// Error codes from the SDK in the range 300-399 are reserved for login errors in this domain. -/// Error codes from the SDK in the range 1349100-1349199 are reserved for device login errors in this domain. -FOUNDATION_EXPORT NSErrorDomain const FBSDKLoginErrorDomain; - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h deleted file mode 100644 index 93139d45..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h +++ /dev/null @@ -1,359 +0,0 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef FBSDKLOGINKIT_SWIFT_H -#define FBSDKLOGINKIT_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBSDKLoginKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - -@class NSString; -@class NSURL; -@class NSDate; - -/// Describes the initial response when starting the device login flow. -/// This is used by DeviceLoginManager. -SWIFT_CLASS_NAMED("DeviceLoginCodeInfo") -@interface FBSDKDeviceLoginCodeInfo : NSObject -/// The unique id for this login flow. -@property (nonatomic, readonly, copy) NSString * _Nonnull identifier; -/// The short “user_code” that should be presented to the user. -@property (nonatomic, readonly, copy) NSString * _Nonnull loginCode; -/// The verification URL. -@property (nonatomic, readonly, copy) NSURL * _Nonnull verificationURL; -/// The expiration date. -@property (nonatomic, readonly, copy) NSDate * _Nonnull expirationDate; -/// The polling interval -@property (nonatomic, readonly) NSUInteger pollingInterval; -- (nonnull instancetype)initWithIdentifier:(NSString * _Nonnull)identifier loginCode:(NSString * _Nonnull)loginCode verificationURL:(NSURL * _Nonnull)verificationURL expirationDate:(NSDate * _Nonnull)expirationDate pollingInterval:(NSUInteger)pollingInterval OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -/// Custom error codes for device login errors in the login error domain -typedef SWIFT_ENUM_NAMED(NSInteger, FBSDKDeviceLoginError, "DeviceLoginErrorCode", open) { -/// Your device is polling too frequently. - FBSDKDeviceLoginErrorExcessivePolling = 1349172, -/// User has declined to authorize your application. - FBSDKDeviceLoginErrorAuthorizationDeclined = 1349173, -/// User has not yet authorized your application. Continue polling. - FBSDKDeviceLoginErrorAuthorizationPending = 1349174, -/// The code you entered has expired. - FBSDKDeviceLoginErrorCodeExpired = 1349152, -}; - -@protocol FBSDKDeviceLoginManagerDelegate; - -/// Use this class to perform a device login flow. -/// The device login flow starts by requesting a code from the device login API. -/// This class informs the delegate when this code is received. You should then present the -/// code to the user to enter. In the meantime, this class polls the device login API -/// periodically and informs the delegate of the results. -/// See Facebook Device Login. -SWIFT_CLASS_NAMED("DeviceLoginManager") -@interface FBSDKDeviceLoginManager : NSObject -/// The device login manager delegate. -@property (nonatomic, weak) id _Nullable delegate; -/// The requested permissions. -@property (nonatomic, readonly, copy) NSArray * _Nonnull permissions; -/// The optional URL to redirect the user to after they complete the login. -/// The URL must be configured in your App Settings -> Advanced -> OAuth Redirect URIs -@property (nonatomic, copy) NSURL * _Nullable redirectURL; -/// Initializes a new instance. -/// @param permissions The permissions to request. -/// @param enableSmartLogin Whether to enable smart login. -- (nonnull instancetype)initWithPermissions:(NSArray * _Nonnull)permissions enableSmartLogin:(BOOL)enableSmartLogin OBJC_DESIGNATED_INITIALIZER; -/// Starts the device login flow -/// This instance will retain self until the flow is finished or cancelled. -- (void)start; -/// Attempts to cancel the device login flow. -- (void)cancel; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class NSNetService; -@class NSNumber; - -@interface FBSDKDeviceLoginManager (SWIFT_EXTENSION(FBSDKLoginKit)) -- (void)netService:(NSNetService * _Nonnull)service didNotPublish:(NSDictionary * _Nonnull)errorValues; -@end - - -@class FBSDKDeviceLoginManagerResult; - -/// A delegate for DeviceLoginManager. -SWIFT_PROTOCOL_NAMED("DeviceLoginManagerDelegate") -@protocol FBSDKDeviceLoginManagerDelegate -/// Indicates the device login flow has started. You should parse codeInfo to present the code to the user to enter. -/// @param loginManager the login manager instance. -/// @param codeInfo the code info data. -- (void)deviceLoginManager:(FBSDKDeviceLoginManager * _Nonnull)loginManager startedWithCodeInfo:(FBSDKDeviceLoginCodeInfo * _Nonnull)codeInfo; -/// Indicates the device login flow has finished. -/// @param loginManager the login manager instance. -/// @param result the results of the login flow. -/// @param error the error, if available. -/// The flow can be finished if the user completed the flow, cancelled, or if the code has expired. -- (void)deviceLoginManager:(FBSDKDeviceLoginManager * _Nonnull)loginManager completedWithResult:(FBSDKDeviceLoginManagerResult * _Nullable)result error:(NSError * _Nullable)error; -@end - -@class FBSDKAccessToken; - -/// Represents the results of the a device login flow. This is used by DeviceLoginManager -SWIFT_CLASS_NAMED("DeviceLoginManagerResult") -@interface FBSDKDeviceLoginManagerResult : NSObject -/// The token -@property (nonatomic, readonly, strong) FBSDKAccessToken * _Nullable accessToken; -/// Indicates if the login was cancelled by the user, or if the device login code has expired. -@property (nonatomic, readonly) BOOL isCancelled; -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (nonnull instancetype)initWithToken:(FBSDKAccessToken * _Nullable)token isCancelled:(BOOL)cancelled OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - -/// Custom error codes for login errors in the login error domain -typedef SWIFT_ENUM_NAMED(NSInteger, FBSDKLoginError, "LoginErrorCode", open) { -/// Reserved - FBSDKLoginErrorReserved = 300, -/// The error code for unknown errors - FBSDKLoginErrorUnknown = 301, -/// The user’s password has changed and must log in again - FBSDKLoginErrorPasswordChanged = 302, -/// The user must log in to their account on www.facebook.com to restore access - FBSDKLoginErrorUserCheckpointed = 303, -/// Indicates a failure to request new permissions because the user has changed - FBSDKLoginErrorUserMismatch = 304, -/// The user must confirm their account with Facebook before logging in - FBSDKLoginErrorUnconfirmedUser = 305, -/// The Accounts framework failed without returning an error, indicating the app’s slider in the -/// iOS Facebook Settings (device Settings -> Facebook -> App Name) has been disabled. - FBSDKLoginErrorSystemAccountAppDisabled = 306, -/// An error occurred related to Facebook system Account store - FBSDKLoginErrorSystemAccountUnavailable = 307, -/// The login response was missing a valid challenge string - FBSDKLoginErrorBadChallengeString = 308, -/// The ID token returned in login response was invalid - FBSDKLoginErrorInvalidIDToken = 309, -/// A current access token was required and not provided - FBSDKLoginErrorMissingAccessToken = 310, -}; - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginKit.h b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginKit.h deleted file mode 100644 index 976650e1..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginKit.h +++ /dev/null @@ -1,14 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import -#import - -#import diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResultBlock.h b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResultBlock.h deleted file mode 100644 index 42078258..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResultBlock.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -@class FBSDKLoginManagerLoginResult; - -/** - Describes the call back to the FBSDKLoginManager - @param result the result of the authorization - @param error the authorization error, if any. - */ -typedef void (^ FBSDKLoginManagerLoginResultBlock)(FBSDKLoginManagerLoginResult *_Nullable result, - NSError *_Nullable error) -NS_SWIFT_NAME(LoginManagerLoginResultBlock); - -#endif diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Info.plist b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Info.plist deleted file mode 100644 index 4ca9fa32..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Info.plist and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos.swiftdoc b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos.swiftdoc deleted file mode 100644 index f018099e..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos.swiftdoc and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos.swiftinterface deleted file mode 100644 index 68d50525..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos.swiftinterface +++ /dev/null @@ -1,156 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-tvos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit -import FBSDKCoreKit -import FBSDKCoreKit_Basics -@_exported import FBSDKLoginKit -import Foundation -import Swift -import UIKit -import _Concurrency -@objcMembers @objc(FBSDKDeviceLoginCodeInfo) final public class DeviceLoginCodeInfo : ObjectiveC.NSObject { - @objc final public let identifier: Swift.String - @objc final public let loginCode: Swift.String - @objc final public let verificationURL: Foundation.URL - @objc final public let expirationDate: Foundation.Date - @objc final public let pollingInterval: Swift.UInt - @objc public init(identifier: Swift.String, loginCode: Swift.String, verificationURL: Foundation.URL, expirationDate: Foundation.Date, pollingInterval: Swift.UInt) - @objc deinit -} -public struct DeviceLoginError : Foundation.CustomNSError, Swift.Hashable { - public let errorCode: Swift.Int - public let errorUserInfo: [Swift.String : Any] - public init(_nsError nsError: Foundation.NSError) - public init(_ code: FBSDKLoginKit.DeviceLoginError.Code, userInfo: [Swift.String : Any] = [:]) - public static var errorDomain: Swift.String { - get - } - public typealias Code = FBSDKLoginKit.DeviceLoginErrorCode - public static var excessivePolling: FBSDKLoginKit.DeviceLoginError.Code { - get - } - public static var authorizationDeclined: FBSDKLoginKit.DeviceLoginError.Code { - get - } - public static var authorizationPending: FBSDKLoginKit.DeviceLoginError.Code { - get - } - public static var codeExpired: FBSDKLoginKit.DeviceLoginError.Code { - get - } - public static func == (lhs: FBSDKLoginKit.DeviceLoginError, rhs: FBSDKLoginKit.DeviceLoginError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@objc(FBSDKDeviceLoginError) public enum DeviceLoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { - public typealias _ErrorType = FBSDKLoginKit.DeviceLoginError - case excessivePolling = 1349172 - case authorizationDeclined = 1349173 - case authorizationPending = 1349174 - case codeExpired = 1349152 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@objcMembers @objc(FBSDKDeviceLoginManager) final public class DeviceLoginManager : ObjectiveC.NSObject { - @objc weak final public var delegate: FBSDKLoginKit.DeviceLoginManagerDelegate? - @objc final public let permissions: [Swift.String] - @objc final public var redirectURL: Foundation.URL? - @objc(initWithPermissions:enableSmartLogin:) public init(permissions: [Swift.String], enableSmartLogin: Swift.Bool) - @objc final public func start() - @objc final public func cancel() - @objc deinit -} -extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { - @objc final public func netService(_ service: Foundation.NetService, didNotPublish errorValues: [Swift.String : Foundation.NSNumber]) -} -@objc(FBSDKDeviceLoginManagerDelegate) public protocol DeviceLoginManagerDelegate { - @objc(deviceLoginManager:startedWithCodeInfo:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, startedWith codeInfo: FBSDKLoginKit.DeviceLoginCodeInfo) - @objc(deviceLoginManager:completedWithResult:error:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, completedWith result: FBSDKLoginKit.DeviceLoginManagerResult?, error: Swift.Error?) -} -@objcMembers @objc(FBSDKDeviceLoginManagerResult) final public class DeviceLoginManagerResult : ObjectiveC.NSObject { - @objc final public var accessToken: FBSDKCoreKit.AccessToken? { - get - } - @objc final public var isCancelled: Swift.Bool { - get - } - @objc public init(token: FBSDKCoreKit.AccessToken?, isCancelled cancelled: Swift.Bool) - @objc deinit -} -public struct LoginError : Foundation.CustomNSError, Swift.Hashable { - public let errorCode: Swift.Int - public let errorUserInfo: [Swift.String : Any] - public init(_nsError nsError: Foundation.NSError) - public init(_ code: FBSDKLoginKit.LoginError.Code, userInfo: [Swift.String : Any] = [:]) - public static var errorDomain: Swift.String { - get - } - public typealias Code = FBSDKLoginKit.LoginErrorCode - public static var reserved: FBSDKLoginKit.LoginError.Code { - get - } - public static var unknown: FBSDKLoginKit.LoginError.Code { - get - } - public static var passwordChanged: FBSDKLoginKit.LoginError.Code { - get - } - public static var userCheckpointed: FBSDKLoginKit.LoginError.Code { - get - } - public static var userMismatch: FBSDKLoginKit.LoginError.Code { - get - } - public static var unconfirmedUser: FBSDKLoginKit.LoginError.Code { - get - } - public static var systemAccountAppDisabled: FBSDKLoginKit.LoginError.Code { - get - } - public static var systemAccountUnavailable: FBSDKLoginKit.LoginError.Code { - get - } - public static var badChallengeString: FBSDKLoginKit.LoginError.Code { - get - } - public static var invalidIDToken: FBSDKLoginKit.LoginError.Code { - get - } - public static var missingAccessToken: FBSDKLoginKit.LoginError.Code { - get - } - public static func == (lhs: FBSDKLoginKit.LoginError, rhs: FBSDKLoginKit.LoginError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@objc(FBSDKLoginError) public enum LoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { - public typealias _ErrorType = FBSDKLoginKit.LoginError - case reserved = 300 - case unknown - case passwordChanged - case userCheckpointed - case userMismatch - case unconfirmedUser - case systemAccountAppDisabled - case systemAccountUnavailable - case badChallengeString - case invalidIDToken - case missingAccessToken - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -public let LoginErrorDomain: Swift.String -extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.Hashable {} -extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.RawRepresentable {} -extension FBSDKLoginKit.LoginErrorCode : Swift.Hashable {} -extension FBSDKLoginKit.LoginErrorCode : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 3fc827a5..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKLoginKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit deleted file mode 100644 index 6babea4d..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/FBSDKLoginKit b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/FBSDKLoginKit deleted file mode 100755 index a4a6327a..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/FBSDKLoginKit and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginAuthType.h b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginAuthType.h deleted file mode 100644 index 56119335..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginAuthType.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -#if !TARGET_OS_TV - -/// Login authorization types. -typedef NSString *const FBSDKLoginAuthType NS_TYPED_EXTENSIBLE_ENUM NS_SWIFT_NAME(LoginAuthType); - -/// The default login authorization type for login buttons; requests previously declined user permissions. -FOUNDATION_EXPORT FBSDKLoginAuthType FBSDKLoginAuthTypeRerequest; - -/// Requests permissions when the user's data access has expired. -FOUNDATION_EXPORT FBSDKLoginAuthType FBSDKLoginAuthTypeReauthorize; - -#endif diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginCompletionParametersBlock.h b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginCompletionParametersBlock.h deleted file mode 100644 index 7f3e5702..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginCompletionParametersBlock.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -#import - -@class FBSDKLoginCompletionParameters; - -NS_ASSUME_NONNULL_BEGIN - -/// Success Block -typedef void (^ FBSDKLoginCompletionParametersBlock)(FBSDKLoginCompletionParameters *parameters) -NS_SWIFT_NAME(LoginCompletionParametersBlock); - -NS_ASSUME_NONNULL_END - -#endif diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginErrorDomain.h b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginErrorDomain.h deleted file mode 100644 index 300e177c..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginErrorDomain.h +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// The error domain for all errors from LoginKit -/// Error codes from the SDK in the range 300-399 are reserved for login errors in this domain. -/// Error codes from the SDK in the range 1349100-1349199 are reserved for device login errors in this domain. -FOUNDATION_EXPORT NSErrorDomain const FBSDKLoginErrorDomain; - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h deleted file mode 100644 index a6ff2bf5..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginKit-Swift.h +++ /dev/null @@ -1,724 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef FBSDKLOGINKIT_SWIFT_H -#define FBSDKLOGINKIT_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBSDKLoginKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - -@class NSString; -@class NSURL; -@class NSDate; - -/// Describes the initial response when starting the device login flow. -/// This is used by DeviceLoginManager. -SWIFT_CLASS_NAMED("DeviceLoginCodeInfo") -@interface FBSDKDeviceLoginCodeInfo : NSObject -/// The unique id for this login flow. -@property (nonatomic, readonly, copy) NSString * _Nonnull identifier; -/// The short “user_code” that should be presented to the user. -@property (nonatomic, readonly, copy) NSString * _Nonnull loginCode; -/// The verification URL. -@property (nonatomic, readonly, copy) NSURL * _Nonnull verificationURL; -/// The expiration date. -@property (nonatomic, readonly, copy) NSDate * _Nonnull expirationDate; -/// The polling interval -@property (nonatomic, readonly) NSUInteger pollingInterval; -- (nonnull instancetype)initWithIdentifier:(NSString * _Nonnull)identifier loginCode:(NSString * _Nonnull)loginCode verificationURL:(NSURL * _Nonnull)verificationURL expirationDate:(NSDate * _Nonnull)expirationDate pollingInterval:(NSUInteger)pollingInterval OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -/// Custom error codes for device login errors in the login error domain -typedef SWIFT_ENUM_NAMED(NSInteger, FBSDKDeviceLoginError, "DeviceLoginErrorCode", open) { -/// Your device is polling too frequently. - FBSDKDeviceLoginErrorExcessivePolling = 1349172, -/// User has declined to authorize your application. - FBSDKDeviceLoginErrorAuthorizationDeclined = 1349173, -/// User has not yet authorized your application. Continue polling. - FBSDKDeviceLoginErrorAuthorizationPending = 1349174, -/// The code you entered has expired. - FBSDKDeviceLoginErrorCodeExpired = 1349152, -}; - -@protocol FBSDKDeviceLoginManagerDelegate; - -/// Use this class to perform a device login flow. -/// The device login flow starts by requesting a code from the device login API. -/// This class informs the delegate when this code is received. You should then present the -/// code to the user to enter. In the meantime, this class polls the device login API -/// periodically and informs the delegate of the results. -/// See Facebook Device Login. -SWIFT_CLASS_NAMED("DeviceLoginManager") -@interface FBSDKDeviceLoginManager : NSObject -/// The device login manager delegate. -@property (nonatomic, weak) id _Nullable delegate; -/// The requested permissions. -@property (nonatomic, readonly, copy) NSArray * _Nonnull permissions; -/// The optional URL to redirect the user to after they complete the login. -/// The URL must be configured in your App Settings -> Advanced -> OAuth Redirect URIs -@property (nonatomic, copy) NSURL * _Nullable redirectURL; -/// Initializes a new instance. -/// @param permissions The permissions to request. -/// @param enableSmartLogin Whether to enable smart login. -- (nonnull instancetype)initWithPermissions:(NSArray * _Nonnull)permissions enableSmartLogin:(BOOL)enableSmartLogin OBJC_DESIGNATED_INITIALIZER; -/// Starts the device login flow -/// This instance will retain self until the flow is finished or cancelled. -- (void)start; -/// Attempts to cancel the device login flow. -- (void)cancel; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class NSNetService; -@class NSNumber; - -@interface FBSDKDeviceLoginManager (SWIFT_EXTENSION(FBSDKLoginKit)) -- (void)netService:(NSNetService * _Nonnull)service didNotPublish:(NSDictionary * _Nonnull)errorValues; -@end - - -@class FBSDKDeviceLoginManagerResult; - -/// A delegate for DeviceLoginManager. -SWIFT_PROTOCOL_NAMED("DeviceLoginManagerDelegate") -@protocol FBSDKDeviceLoginManagerDelegate -/// Indicates the device login flow has started. You should parse codeInfo to present the code to the user to enter. -/// @param loginManager the login manager instance. -/// @param codeInfo the code info data. -- (void)deviceLoginManager:(FBSDKDeviceLoginManager * _Nonnull)loginManager startedWithCodeInfo:(FBSDKDeviceLoginCodeInfo * _Nonnull)codeInfo; -/// Indicates the device login flow has finished. -/// @param loginManager the login manager instance. -/// @param result the results of the login flow. -/// @param error the error, if available. -/// The flow can be finished if the user completed the flow, cancelled, or if the code has expired. -- (void)deviceLoginManager:(FBSDKDeviceLoginManager * _Nonnull)loginManager completedWithResult:(FBSDKDeviceLoginManagerResult * _Nullable)result error:(NSError * _Nullable)error; -@end - -@class FBSDKAccessToken; - -/// Represents the results of the a device login flow. This is used by DeviceLoginManager -SWIFT_CLASS_NAMED("DeviceLoginManagerResult") -@interface FBSDKDeviceLoginManagerResult : NSObject -/// The token -@property (nonatomic, readonly, strong) FBSDKAccessToken * _Nullable accessToken; -/// Indicates if the login was cancelled by the user, or if the device login code has expired. -@property (nonatomic, readonly) BOOL isCancelled; -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (nonnull instancetype)initWithToken:(FBSDKAccessToken * _Nullable)token isCancelled:(BOOL)cancelled OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - -/// Custom error codes for login errors in the login error domain -typedef SWIFT_ENUM_NAMED(NSInteger, FBSDKLoginError, "LoginErrorCode", open) { -/// Reserved - FBSDKLoginErrorReserved = 300, -/// The error code for unknown errors - FBSDKLoginErrorUnknown = 301, -/// The user’s password has changed and must log in again - FBSDKLoginErrorPasswordChanged = 302, -/// The user must log in to their account on www.facebook.com to restore access - FBSDKLoginErrorUserCheckpointed = 303, -/// Indicates a failure to request new permissions because the user has changed - FBSDKLoginErrorUserMismatch = 304, -/// The user must confirm their account with Facebook before logging in - FBSDKLoginErrorUnconfirmedUser = 305, -/// The Accounts framework failed without returning an error, indicating the app’s slider in the -/// iOS Facebook Settings (device Settings -> Facebook -> App Name) has been disabled. - FBSDKLoginErrorSystemAccountAppDisabled = 306, -/// An error occurred related to Facebook system Account store - FBSDKLoginErrorSystemAccountUnavailable = 307, -/// The login response was missing a valid challenge string - FBSDKLoginErrorBadChallengeString = 308, -/// The ID token returned in login response was invalid - FBSDKLoginErrorInvalidIDToken = 309, -/// A current access token was required and not provided - FBSDKLoginErrorMissingAccessToken = 310, -}; - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif - -#elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef FBSDKLOGINKIT_SWIFT_H -#define FBSDKLOGINKIT_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBSDKLoginKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - -@class NSString; -@class NSURL; -@class NSDate; - -/// Describes the initial response when starting the device login flow. -/// This is used by DeviceLoginManager. -SWIFT_CLASS_NAMED("DeviceLoginCodeInfo") -@interface FBSDKDeviceLoginCodeInfo : NSObject -/// The unique id for this login flow. -@property (nonatomic, readonly, copy) NSString * _Nonnull identifier; -/// The short “user_code” that should be presented to the user. -@property (nonatomic, readonly, copy) NSString * _Nonnull loginCode; -/// The verification URL. -@property (nonatomic, readonly, copy) NSURL * _Nonnull verificationURL; -/// The expiration date. -@property (nonatomic, readonly, copy) NSDate * _Nonnull expirationDate; -/// The polling interval -@property (nonatomic, readonly) NSUInteger pollingInterval; -- (nonnull instancetype)initWithIdentifier:(NSString * _Nonnull)identifier loginCode:(NSString * _Nonnull)loginCode verificationURL:(NSURL * _Nonnull)verificationURL expirationDate:(NSDate * _Nonnull)expirationDate pollingInterval:(NSUInteger)pollingInterval OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -/// Custom error codes for device login errors in the login error domain -typedef SWIFT_ENUM_NAMED(NSInteger, FBSDKDeviceLoginError, "DeviceLoginErrorCode", open) { -/// Your device is polling too frequently. - FBSDKDeviceLoginErrorExcessivePolling = 1349172, -/// User has declined to authorize your application. - FBSDKDeviceLoginErrorAuthorizationDeclined = 1349173, -/// User has not yet authorized your application. Continue polling. - FBSDKDeviceLoginErrorAuthorizationPending = 1349174, -/// The code you entered has expired. - FBSDKDeviceLoginErrorCodeExpired = 1349152, -}; - -@protocol FBSDKDeviceLoginManagerDelegate; - -/// Use this class to perform a device login flow. -/// The device login flow starts by requesting a code from the device login API. -/// This class informs the delegate when this code is received. You should then present the -/// code to the user to enter. In the meantime, this class polls the device login API -/// periodically and informs the delegate of the results. -/// See Facebook Device Login. -SWIFT_CLASS_NAMED("DeviceLoginManager") -@interface FBSDKDeviceLoginManager : NSObject -/// The device login manager delegate. -@property (nonatomic, weak) id _Nullable delegate; -/// The requested permissions. -@property (nonatomic, readonly, copy) NSArray * _Nonnull permissions; -/// The optional URL to redirect the user to after they complete the login. -/// The URL must be configured in your App Settings -> Advanced -> OAuth Redirect URIs -@property (nonatomic, copy) NSURL * _Nullable redirectURL; -/// Initializes a new instance. -/// @param permissions The permissions to request. -/// @param enableSmartLogin Whether to enable smart login. -- (nonnull instancetype)initWithPermissions:(NSArray * _Nonnull)permissions enableSmartLogin:(BOOL)enableSmartLogin OBJC_DESIGNATED_INITIALIZER; -/// Starts the device login flow -/// This instance will retain self until the flow is finished or cancelled. -- (void)start; -/// Attempts to cancel the device login flow. -- (void)cancel; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class NSNetService; -@class NSNumber; - -@interface FBSDKDeviceLoginManager (SWIFT_EXTENSION(FBSDKLoginKit)) -- (void)netService:(NSNetService * _Nonnull)service didNotPublish:(NSDictionary * _Nonnull)errorValues; -@end - - -@class FBSDKDeviceLoginManagerResult; - -/// A delegate for DeviceLoginManager. -SWIFT_PROTOCOL_NAMED("DeviceLoginManagerDelegate") -@protocol FBSDKDeviceLoginManagerDelegate -/// Indicates the device login flow has started. You should parse codeInfo to present the code to the user to enter. -/// @param loginManager the login manager instance. -/// @param codeInfo the code info data. -- (void)deviceLoginManager:(FBSDKDeviceLoginManager * _Nonnull)loginManager startedWithCodeInfo:(FBSDKDeviceLoginCodeInfo * _Nonnull)codeInfo; -/// Indicates the device login flow has finished. -/// @param loginManager the login manager instance. -/// @param result the results of the login flow. -/// @param error the error, if available. -/// The flow can be finished if the user completed the flow, cancelled, or if the code has expired. -- (void)deviceLoginManager:(FBSDKDeviceLoginManager * _Nonnull)loginManager completedWithResult:(FBSDKDeviceLoginManagerResult * _Nullable)result error:(NSError * _Nullable)error; -@end - -@class FBSDKAccessToken; - -/// Represents the results of the a device login flow. This is used by DeviceLoginManager -SWIFT_CLASS_NAMED("DeviceLoginManagerResult") -@interface FBSDKDeviceLoginManagerResult : NSObject -/// The token -@property (nonatomic, readonly, strong) FBSDKAccessToken * _Nullable accessToken; -/// Indicates if the login was cancelled by the user, or if the device login code has expired. -@property (nonatomic, readonly) BOOL isCancelled; -/// Internal method exposed to facilitate transition to Swift. -/// API Subject to change or removal without warning. Do not use. -/// @warning INTERNAL - DO NOT USE -- (nonnull instancetype)initWithToken:(FBSDKAccessToken * _Nullable)token isCancelled:(BOOL)cancelled OBJC_DESIGNATED_INITIALIZER; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - -/// Custom error codes for login errors in the login error domain -typedef SWIFT_ENUM_NAMED(NSInteger, FBSDKLoginError, "LoginErrorCode", open) { -/// Reserved - FBSDKLoginErrorReserved = 300, -/// The error code for unknown errors - FBSDKLoginErrorUnknown = 301, -/// The user’s password has changed and must log in again - FBSDKLoginErrorPasswordChanged = 302, -/// The user must log in to their account on www.facebook.com to restore access - FBSDKLoginErrorUserCheckpointed = 303, -/// Indicates a failure to request new permissions because the user has changed - FBSDKLoginErrorUserMismatch = 304, -/// The user must confirm their account with Facebook before logging in - FBSDKLoginErrorUnconfirmedUser = 305, -/// The Accounts framework failed without returning an error, indicating the app’s slider in the -/// iOS Facebook Settings (device Settings -> Facebook -> App Name) has been disabled. - FBSDKLoginErrorSystemAccountAppDisabled = 306, -/// An error occurred related to Facebook system Account store - FBSDKLoginErrorSystemAccountUnavailable = 307, -/// The login response was missing a valid challenge string - FBSDKLoginErrorBadChallengeString = 308, -/// The ID token returned in login response was invalid - FBSDKLoginErrorInvalidIDToken = 309, -/// A current access token was required and not provided - FBSDKLoginErrorMissingAccessToken = 310, -}; - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif - -#endif diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginKit.h b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginKit.h deleted file mode 100644 index 976650e1..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginKit.h +++ /dev/null @@ -1,14 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import -#import -#import - -#import diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResultBlock.h b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResultBlock.h deleted file mode 100644 index 42078258..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResultBlock.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#if !TARGET_OS_TV - -@class FBSDKLoginManagerLoginResult; - -/** - Describes the call back to the FBSDKLoginManager - @param result the result of the authorization - @param error the authorization error, if any. - */ -typedef void (^ FBSDKLoginManagerLoginResultBlock)(FBSDKLoginManagerLoginResult *_Nullable result, - NSError *_Nullable error) -NS_SWIFT_NAME(LoginManagerLoginResultBlock); - -#endif diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Info.plist b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Info.plist deleted file mode 100644 index 4f89806a..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Info.plist and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc deleted file mode 100644 index 62c41208..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface deleted file mode 100644 index 9291de80..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface +++ /dev/null @@ -1,156 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit -import FBSDKCoreKit -import FBSDKCoreKit_Basics -@_exported import FBSDKLoginKit -import Foundation -import Swift -import UIKit -import _Concurrency -@objcMembers @objc(FBSDKDeviceLoginCodeInfo) final public class DeviceLoginCodeInfo : ObjectiveC.NSObject { - @objc final public let identifier: Swift.String - @objc final public let loginCode: Swift.String - @objc final public let verificationURL: Foundation.URL - @objc final public let expirationDate: Foundation.Date - @objc final public let pollingInterval: Swift.UInt - @objc public init(identifier: Swift.String, loginCode: Swift.String, verificationURL: Foundation.URL, expirationDate: Foundation.Date, pollingInterval: Swift.UInt) - @objc deinit -} -public struct DeviceLoginError : Foundation.CustomNSError, Swift.Hashable { - public let errorCode: Swift.Int - public let errorUserInfo: [Swift.String : Any] - public init(_nsError nsError: Foundation.NSError) - public init(_ code: FBSDKLoginKit.DeviceLoginError.Code, userInfo: [Swift.String : Any] = [:]) - public static var errorDomain: Swift.String { - get - } - public typealias Code = FBSDKLoginKit.DeviceLoginErrorCode - public static var excessivePolling: FBSDKLoginKit.DeviceLoginError.Code { - get - } - public static var authorizationDeclined: FBSDKLoginKit.DeviceLoginError.Code { - get - } - public static var authorizationPending: FBSDKLoginKit.DeviceLoginError.Code { - get - } - public static var codeExpired: FBSDKLoginKit.DeviceLoginError.Code { - get - } - public static func == (lhs: FBSDKLoginKit.DeviceLoginError, rhs: FBSDKLoginKit.DeviceLoginError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@objc(FBSDKDeviceLoginError) public enum DeviceLoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { - public typealias _ErrorType = FBSDKLoginKit.DeviceLoginError - case excessivePolling = 1349172 - case authorizationDeclined = 1349173 - case authorizationPending = 1349174 - case codeExpired = 1349152 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@objcMembers @objc(FBSDKDeviceLoginManager) final public class DeviceLoginManager : ObjectiveC.NSObject { - @objc weak final public var delegate: FBSDKLoginKit.DeviceLoginManagerDelegate? - @objc final public let permissions: [Swift.String] - @objc final public var redirectURL: Foundation.URL? - @objc(initWithPermissions:enableSmartLogin:) public init(permissions: [Swift.String], enableSmartLogin: Swift.Bool) - @objc final public func start() - @objc final public func cancel() - @objc deinit -} -extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { - @objc final public func netService(_ service: Foundation.NetService, didNotPublish errorValues: [Swift.String : Foundation.NSNumber]) -} -@objc(FBSDKDeviceLoginManagerDelegate) public protocol DeviceLoginManagerDelegate { - @objc(deviceLoginManager:startedWithCodeInfo:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, startedWith codeInfo: FBSDKLoginKit.DeviceLoginCodeInfo) - @objc(deviceLoginManager:completedWithResult:error:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, completedWith result: FBSDKLoginKit.DeviceLoginManagerResult?, error: Swift.Error?) -} -@objcMembers @objc(FBSDKDeviceLoginManagerResult) final public class DeviceLoginManagerResult : ObjectiveC.NSObject { - @objc final public var accessToken: FBSDKCoreKit.AccessToken? { - get - } - @objc final public var isCancelled: Swift.Bool { - get - } - @objc public init(token: FBSDKCoreKit.AccessToken?, isCancelled cancelled: Swift.Bool) - @objc deinit -} -public struct LoginError : Foundation.CustomNSError, Swift.Hashable { - public let errorCode: Swift.Int - public let errorUserInfo: [Swift.String : Any] - public init(_nsError nsError: Foundation.NSError) - public init(_ code: FBSDKLoginKit.LoginError.Code, userInfo: [Swift.String : Any] = [:]) - public static var errorDomain: Swift.String { - get - } - public typealias Code = FBSDKLoginKit.LoginErrorCode - public static var reserved: FBSDKLoginKit.LoginError.Code { - get - } - public static var unknown: FBSDKLoginKit.LoginError.Code { - get - } - public static var passwordChanged: FBSDKLoginKit.LoginError.Code { - get - } - public static var userCheckpointed: FBSDKLoginKit.LoginError.Code { - get - } - public static var userMismatch: FBSDKLoginKit.LoginError.Code { - get - } - public static var unconfirmedUser: FBSDKLoginKit.LoginError.Code { - get - } - public static var systemAccountAppDisabled: FBSDKLoginKit.LoginError.Code { - get - } - public static var systemAccountUnavailable: FBSDKLoginKit.LoginError.Code { - get - } - public static var badChallengeString: FBSDKLoginKit.LoginError.Code { - get - } - public static var invalidIDToken: FBSDKLoginKit.LoginError.Code { - get - } - public static var missingAccessToken: FBSDKLoginKit.LoginError.Code { - get - } - public static func == (lhs: FBSDKLoginKit.LoginError, rhs: FBSDKLoginKit.LoginError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@objc(FBSDKLoginError) public enum LoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { - public typealias _ErrorType = FBSDKLoginKit.LoginError - case reserved = 300 - case unknown - case passwordChanged - case userCheckpointed - case userMismatch - case unconfirmedUser - case systemAccountAppDisabled - case systemAccountUnavailable - case badChallengeString - case invalidIDToken - case missingAccessToken - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -public let LoginErrorDomain: Swift.String -extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.Hashable {} -extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.RawRepresentable {} -extension FBSDKLoginKit.LoginErrorCode : Swift.Hashable {} -extension FBSDKLoginKit.LoginErrorCode : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc deleted file mode 100644 index 436a549c..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc and /dev/null differ diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface deleted file mode 100644 index 364485bf..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface +++ /dev/null @@ -1,156 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target x86_64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKLoginKit -import FBSDKCoreKit -import FBSDKCoreKit_Basics -@_exported import FBSDKLoginKit -import Foundation -import Swift -import UIKit -import _Concurrency -@objcMembers @objc(FBSDKDeviceLoginCodeInfo) final public class DeviceLoginCodeInfo : ObjectiveC.NSObject { - @objc final public let identifier: Swift.String - @objc final public let loginCode: Swift.String - @objc final public let verificationURL: Foundation.URL - @objc final public let expirationDate: Foundation.Date - @objc final public let pollingInterval: Swift.UInt - @objc public init(identifier: Swift.String, loginCode: Swift.String, verificationURL: Foundation.URL, expirationDate: Foundation.Date, pollingInterval: Swift.UInt) - @objc deinit -} -public struct DeviceLoginError : Foundation.CustomNSError, Swift.Hashable { - public let errorCode: Swift.Int - public let errorUserInfo: [Swift.String : Any] - public init(_nsError nsError: Foundation.NSError) - public init(_ code: FBSDKLoginKit.DeviceLoginError.Code, userInfo: [Swift.String : Any] = [:]) - public static var errorDomain: Swift.String { - get - } - public typealias Code = FBSDKLoginKit.DeviceLoginErrorCode - public static var excessivePolling: FBSDKLoginKit.DeviceLoginError.Code { - get - } - public static var authorizationDeclined: FBSDKLoginKit.DeviceLoginError.Code { - get - } - public static var authorizationPending: FBSDKLoginKit.DeviceLoginError.Code { - get - } - public static var codeExpired: FBSDKLoginKit.DeviceLoginError.Code { - get - } - public static func == (lhs: FBSDKLoginKit.DeviceLoginError, rhs: FBSDKLoginKit.DeviceLoginError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@objc(FBSDKDeviceLoginError) public enum DeviceLoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { - public typealias _ErrorType = FBSDKLoginKit.DeviceLoginError - case excessivePolling = 1349172 - case authorizationDeclined = 1349173 - case authorizationPending = 1349174 - case codeExpired = 1349152 - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@objcMembers @objc(FBSDKDeviceLoginManager) final public class DeviceLoginManager : ObjectiveC.NSObject { - @objc weak final public var delegate: FBSDKLoginKit.DeviceLoginManagerDelegate? - @objc final public let permissions: [Swift.String] - @objc final public var redirectURL: Foundation.URL? - @objc(initWithPermissions:enableSmartLogin:) public init(permissions: [Swift.String], enableSmartLogin: Swift.Bool) - @objc final public func start() - @objc final public func cancel() - @objc deinit -} -extension FBSDKLoginKit.DeviceLoginManager : Foundation.NetServiceDelegate { - @objc final public func netService(_ service: Foundation.NetService, didNotPublish errorValues: [Swift.String : Foundation.NSNumber]) -} -@objc(FBSDKDeviceLoginManagerDelegate) public protocol DeviceLoginManagerDelegate { - @objc(deviceLoginManager:startedWithCodeInfo:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, startedWith codeInfo: FBSDKLoginKit.DeviceLoginCodeInfo) - @objc(deviceLoginManager:completedWithResult:error:) func deviceLoginManager(_ loginManager: FBSDKLoginKit.DeviceLoginManager, completedWith result: FBSDKLoginKit.DeviceLoginManagerResult?, error: Swift.Error?) -} -@objcMembers @objc(FBSDKDeviceLoginManagerResult) final public class DeviceLoginManagerResult : ObjectiveC.NSObject { - @objc final public var accessToken: FBSDKCoreKit.AccessToken? { - get - } - @objc final public var isCancelled: Swift.Bool { - get - } - @objc public init(token: FBSDKCoreKit.AccessToken?, isCancelled cancelled: Swift.Bool) - @objc deinit -} -public struct LoginError : Foundation.CustomNSError, Swift.Hashable { - public let errorCode: Swift.Int - public let errorUserInfo: [Swift.String : Any] - public init(_nsError nsError: Foundation.NSError) - public init(_ code: FBSDKLoginKit.LoginError.Code, userInfo: [Swift.String : Any] = [:]) - public static var errorDomain: Swift.String { - get - } - public typealias Code = FBSDKLoginKit.LoginErrorCode - public static var reserved: FBSDKLoginKit.LoginError.Code { - get - } - public static var unknown: FBSDKLoginKit.LoginError.Code { - get - } - public static var passwordChanged: FBSDKLoginKit.LoginError.Code { - get - } - public static var userCheckpointed: FBSDKLoginKit.LoginError.Code { - get - } - public static var userMismatch: FBSDKLoginKit.LoginError.Code { - get - } - public static var unconfirmedUser: FBSDKLoginKit.LoginError.Code { - get - } - public static var systemAccountAppDisabled: FBSDKLoginKit.LoginError.Code { - get - } - public static var systemAccountUnavailable: FBSDKLoginKit.LoginError.Code { - get - } - public static var badChallengeString: FBSDKLoginKit.LoginError.Code { - get - } - public static var invalidIDToken: FBSDKLoginKit.LoginError.Code { - get - } - public static var missingAccessToken: FBSDKLoginKit.LoginError.Code { - get - } - public static func == (lhs: FBSDKLoginKit.LoginError, rhs: FBSDKLoginKit.LoginError) -> Swift.Bool - public func hash(into hasher: inout Swift.Hasher) - public var hashValue: Swift.Int { - get - } -} -@objc(FBSDKLoginError) public enum LoginErrorCode : Swift.Int, @unchecked Swift.Sendable, Swift.Equatable { - public typealias _ErrorType = FBSDKLoginKit.LoginError - case reserved = 300 - case unknown - case passwordChanged - case userCheckpointed - case userMismatch - case unconfirmedUser - case systemAccountAppDisabled - case systemAccountUnavailable - case badChallengeString - case invalidIDToken - case missingAccessToken - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -public let LoginErrorDomain: Swift.String -extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.Hashable {} -extension FBSDKLoginKit.DeviceLoginErrorCode : Swift.RawRepresentable {} -extension FBSDKLoginKit.LoginErrorCode : Swift.Hashable {} -extension FBSDKLoginKit.LoginErrorCode : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/module.modulemap b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/module.modulemap deleted file mode 100644 index de53eb21..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module FBSDKLoginKit { - umbrella header "FBSDKLoginKit.h" - - export * - module * { export * } -} - -module FBSDKLoginKit.Swift { - header "FBSDKLoginKit-Swift.h" - requires objc -} diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeResources b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeResources deleted file mode 100644 index 05e96104..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKLoginKit.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,245 +0,0 @@ - - - - - files - - Headers/FBSDKLoginAuthType.h - - dbPjG4QiKnnxeSs+knOQIJW0JVg= - - Headers/FBSDKLoginCompletionParametersBlock.h - - fPr6aC3BILzRqRBn1j6oocs3jMc= - - Headers/FBSDKLoginErrorDomain.h - - cneem1mczyhnLYxbDjbbR5mEmzM= - - Headers/FBSDKLoginKit-Swift.h - - A9MuOYVhOvDvvCMrRsbm6LV67vc= - - Headers/FBSDKLoginKit.h - - OUJgU2YPcKajMNRVhOXvWNOomHs= - - Headers/FBSDKLoginManagerLoginResultBlock.h - - hdGFhcZwp8w9OhQTkCmMyUDevXU= - - Info.plist - - QKsMxMvENx19BNxnk4lQC+kMl1s= - - Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - rCnYKUE36OVHOnhptBdfjw6NwKw= - - Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - 1qSFSuM6ZmFseeBv0WKrFFSzzpc= - - Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos-simulator.swiftmodule - - tlIKtZ0ihhpgkv5mUc5zFXgX2aI= - - Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - VmuJ9oE5WJXCEHGi4Ku3cDNoyQo= - - Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - c5uXCu+qCHeZhI+JEpjBmelzjEA= - - Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule - - QT/05A9zLVJslbAKK61aLc1Yg24= - - Modules/module.modulemap - - tfc04nZSIwhoHV/QsoW1UgsqZrM= - - - files2 - - Headers/FBSDKLoginAuthType.h - - hash2 - - En8JspBXmCZrSWkWaxJV5tKzr8At6tqf53zIGNa2VYY= - - - Headers/FBSDKLoginCompletionParametersBlock.h - - hash2 - - 7WGMXXull6LrlXHwbqyalo/ZMN0JSBtHbC6cWu8k2eI= - - - Headers/FBSDKLoginErrorDomain.h - - hash2 - - zFgW2vVnY7X9MEoilZ5/3iQAYiab+N4zlq9kMvgkl/4= - - - Headers/FBSDKLoginKit-Swift.h - - hash2 - - l5BoDj8uOJgDA1Q8vtDvXt5mhaOBCvpC7ZAlVq0HKQc= - - - Headers/FBSDKLoginKit.h - - hash2 - - 8b6xB2UCDMQ82B5SNTD1CpaH+pyHg+K3Yy0MxzTdgTE= - - - Headers/FBSDKLoginManagerLoginResultBlock.h - - hash2 - - Zb9GWGgaSc6xOtE0UsSlBLPOxWMfbTeNdSsr0fvIp74= - - - Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - hash2 - - np0FURrF6nUwLbxUb5HQvuZzJIviXyv8AnLnp1wwAwc= - - - Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - hash2 - - QmP0byYXOn4eeifAc3fpaLXQ4trNfn6dTmpsrzw4PSM= - - - Modules/FBSDKLoginKit.swiftmodule/arm64-apple-tvos-simulator.swiftmodule - - hash2 - - H27houORt8mj7ueEKlVWE+NfqdMxEZdewZWdR3ZssGg= - - - Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - hash2 - - O5+qWlN13i2M1Mph5u3OownB4j0A+MHBFuTZTtp60jM= - - - Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - hash2 - - B2pNYvhO08rlCl8stGGKapB0pvAQt+pFhRuKZlZxw30= - - - Modules/FBSDKLoginKit.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule - - hash2 - - jviJgAA5wJAbIjWqGdAgLKDeHOLskCov7pC1/Lct40c= - - - Modules/module.modulemap - - hash2 - - mg/tLWcmTWvzzkcRtPQSnONw1PhzIM4vXke4Qdm7upM= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index 3fc827a5..00000000 --- a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKLoginKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit b/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit deleted file mode 100644 index b3c7f4e4..00000000 Binary files a/ios/platform/FBSDKLoginKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKLoginKit.framework.dSYM/Contents/Resources/DWARF/FBSDKLoginKit and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/Info.plist b/ios/platform/FBSDKShareKit.xcframework/Info.plist index 10da54a0..e9351f79 100644 --- a/ios/platform/FBSDKShareKit.xcframework/Info.plist +++ b/ios/platform/FBSDKShareKit.xcframework/Info.plist @@ -5,10 +5,8 @@ AvailableLibraries - DebugSymbolsPath - dSYMs LibraryIdentifier - tvos-arm64_x86_64-simulator + ios-arm64_x86_64-maccatalyst LibraryPath FBSDKShareKit.framework SupportedArchitectures @@ -17,13 +15,11 @@ x86_64 SupportedPlatform - tvos + ios SupportedPlatformVariant - simulator + maccatalyst - DebugSymbolsPath - dSYMs LibraryIdentifier ios-arm64 LibraryPath @@ -36,22 +32,6 @@ ios - DebugSymbolsPath - dSYMs - LibraryIdentifier - tvos-arm64 - LibraryPath - FBSDKShareKit.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - tvos - - - DebugSymbolsPath - dSYMs LibraryIdentifier ios-arm64_x86_64-simulator LibraryPath @@ -66,23 +46,6 @@ SupportedPlatformVariant simulator - - DebugSymbolsPath - dSYMs - LibraryIdentifier - ios-arm64_x86_64-maccatalyst - LibraryPath - FBSDKShareKit.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - ios - SupportedPlatformVariant - maccatalyst - CFBundlePackageType XFWK diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/FBSDKShareKit b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/FBSDKShareKit old mode 100755 new mode 100644 index 09fee2f6..24e32e07 Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/FBSDKShareKit and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/FBSDKShareKit differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h index 750f8427..a38fd6b2 100644 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h @@ -1,4 +1,6 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +#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 FBSDKSHAREKIT_SWIFT_H #define FBSDKSHAREKIT_SWIFT_H #pragma clang diagnostic push @@ -21,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -181,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -191,11 +204,33 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif -@import CoreGraphics; +@import CoreFoundation; @import FBSDKCoreKit; @import Foundation; @import ObjectiveC; @@ -203,6 +238,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -210,6 +246,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -218,6 +255,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSURL; @class NSString; @@ -317,7 +355,7 @@ SWIFT_CLASS_NAMED("CameraEffectTextures") /// The common interface for sharing buttons. /// See FBSendButton and FBShareButton -SWIFT_PROTOCOL_NAMED("SharingButton") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_PROTOCOL_NAMED("SharingButton") @protocol FBSDKSharingButton /// The content to be shared. @property (nonatomic, strong) id _Nullable shareContent; @@ -958,8 +996,15 @@ SWIFT_PROTOCOL_NAMED("SharingDelegate") +#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/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Info.plist b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Info.plist index 1574ab53..d11fd74a 100644 Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Info.plist and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Info.plist differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.abi.json b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 00000000..d8dd6f2f --- /dev/null +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,29047 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "AppInviteContent", + "printedName": "AppInviteContent", + "children": [ + { + "kind": "TypeDecl", + "name": "Destination", + "printedName": "Destination", + "children": [ + { + "kind": "Var", + "name": "facebook", + "printedName": "facebook", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.AppInviteContent.Destination.Type) -> FBSDKShareKit.AppInviteContent.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.AppInviteContent.Destination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8facebookyA2EmF", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8facebookyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "messenger", + "printedName": "messenger", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.AppInviteContent.Destination.Type) -> FBSDKShareKit.AppInviteContent.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.AppInviteContent.Destination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO9messengeryA2EmF", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO9messengeryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.Destination?", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueAESgSi_tcfc", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueAESgSi_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKAppInviteDestination", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Var", + "name": "appInvitePreviewImageURL", + "printedName": "appInvitePreviewImageURL", + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)appInvitePreviewImageURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)appInvitePreviewImageURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setAppInvitePreviewImageURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkURL", + "printedName": "appLinkURL", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)appLinkURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)appLinkURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setAppLinkURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0VvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0VvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "promotionCode", + "printedName": "promotionCode", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)promotionCode", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)promotionCode", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setPromotionCode:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "promotionText", + "printedName": "promotionText", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)promotionText", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)promotionText", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setPromotionText:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "destination", + "printedName": "destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)destination", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)destination", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setDestination:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLinkURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppInviteContent", + "printedName": "FBSDKShareKit.AppInviteContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)initWithAppLinkURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURLAC10Foundation0H0V_tcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithAppLinkURL:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppInviteContent", + "printedName": "FBSDKShareKit.AppInviteContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)init", + "mangledName": "$s13FBSDKShareKit16AppInviteContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvs", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(validator:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validator12errorFactoryAeA15ShareValidating_pXp_So18FBSDKErrorCreating_ptcfc", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validator12errorFactoryAeA15ShareValidating_pXp_So18FBSDKErrorCreating_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKAppInviteContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "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": "CameraEffectArguments", + "printedName": "CameraEffectArguments", + "children": [ + { + "kind": "Var", + "name": "arguments", + "printedName": "arguments", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(py)arguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC9argumentsSDySSypGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)arguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC9argumentsSDySSypGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)setString:forKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC3set_6forKeyySSSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setString:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "string", + "printedName": "string(forKey:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)stringForKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC6string6forKeySSSgSS_tF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)setArray:forKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC3set_6forKeyySaySSGSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setArray:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)arrayForKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC5array6forKeySaySSGSgSS_tF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)init", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKCameraEffectArguments", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CameraEffectTextures", + "printedName": "CameraEffectTextures", + "children": [ + { + "kind": "Var", + "name": "textures", + "printedName": "textures", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : UIKit.UIImage]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(py)textures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC8texturesSDySSSo7UIImageCGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : UIKit.UIImage]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)textures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC8texturesSDySSSo7UIImageCGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)setImage:forKey:", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC3set_6forKeyySo7UIImageCSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setImage:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)imageForKey:", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC5image6forKeySo7UIImageCSgSS_tF", + "moduleName": "FBSDKShareKit", + "objc_name": "imageForKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)init", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKCameraEffectTextures", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ContentFlags", + "printedName": "ContentFlags", + "children": [ + { + "kind": "Var", + "name": "containsMedia", + "printedName": "containsMedia", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV13containsMediaSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "containsPhotos", + "printedName": "containsPhotos", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "containsVideos", + "printedName": "containsVideos", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV14containsVideosSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(containsMedia:containsPhotos:containsVideos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMedia0E6Photos0E6VideosACSb_S2btcfc", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMedia0E6Photos0E6VideosACSb_S2btcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "containsAllTypes", + "printedName": "containsAllTypes", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "|=", + "printedName": "|=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "paramValueOwnership": "InOut", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit12ContentFlagsV2oeoiyyACz_ACtFZ", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV2oeoiyyACz_ACtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit12ContentFlagsV", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV", + "moduleName": "FBSDKShareKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKShareKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKShareKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "FBSendButton", + "printedName": "FBSendButton", + "children": [ + { + "kind": "Var", + "name": "dialog", + "printedName": "dialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)dialog", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)dialog", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)setDialog:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "objc_name": "setShareContent:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "analyticsParameters", + "printedName": "analyticsParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)analyticsParameters", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "analyticsParameters", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)analyticsParameters", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "analyticsParameters", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingEventName", + "printedName": "impressionTrackingEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avp", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingEventName", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avg", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingEventName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingIdentifier", + "printedName": "impressionTrackingIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC28impressionTrackingIdentifierSSvp", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingIdentifier", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC28impressionTrackingIdentifierSSvg", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingIdentifier", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isImplicitlyDisabled", + "printedName": "isImplicitlyDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)implicitlyDisabled", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC20isImplicitlyDisabledSbvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "implicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)isImplicitlyDisabled", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC20isImplicitlyDisabledSbvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isImplicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configureButton", + "printedName": "configureButton()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)configureButton", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC09configureD0yyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "share", + "printedName": "share()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)share", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5shareyyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "IBAction", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSendButton", + "printedName": "FBSDKShareKit.FBSendButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)initWithFrame:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSendButton", + "printedName": "FBSDKShareKit.FBSendButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)initWithCoder:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilityAESo013FBSDKInternalH0_p_tcfc", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilityAESo013FBSDKInternalH0_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSendButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingButton", + "printedName": "SharingButton", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "FBShareButton", + "printedName": "FBShareButton", + "children": [ + { + "kind": "Var", + "name": "dialog", + "printedName": "dialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)dialog", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)dialog", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)setDialog:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "objc_name": "setShareContent:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "analyticsParameters", + "printedName": "analyticsParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)analyticsParameters", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)analyticsParameters", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingEventName", + "printedName": "impressionTrackingEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingIdentifier", + "printedName": "impressionTrackingIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC28impressionTrackingIdentifierSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC28impressionTrackingIdentifierSSvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isImplicitlyDisabled", + "printedName": "isImplicitlyDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)implicitlyDisabled", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC20isImplicitlyDisabledSbvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "implicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)isImplicitlyDisabled", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC20isImplicitlyDisabledSbvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isImplicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configureButton", + "printedName": "configureButton()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)configureButton", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC09configureD0yyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "share", + "printedName": "share()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)share", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5shareyyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "IBAction", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBShareButton", + "printedName": "FBSDKShareKit.FBShareButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)initWithFrame:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBShareButton", + "printedName": "FBSDKShareKit.FBShareButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)initWithCoder:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvs", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAeA28UserInterfaceStringProviding_p_tcfc", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAeA28UserInterfaceStringProviding_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingButton", + "printedName": "SharingButton", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP" + }, + { + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Hashtag", + "printedName": "Hashtag", + "children": [ + { + "kind": "Var", + "name": "stringRepresentation", + "printedName": "stringRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)stringRepresentation", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)stringRepresentation", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)setStringRepresentation:", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit7HashtagC20stringRepresentationSSvM", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)initWithString:", + "mangledName": "$s13FBSDKShareKit7HashtagCyACSScfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithString:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)description", + "mangledName": "$s13FBSDKShareKit7HashtagC11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)description", + "mangledName": "$s13FBSDKShareKit7HashtagC11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)isValid", + "mangledName": "$s13FBSDKShareKit7HashtagC7isValidSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)isValid", + "mangledName": "$s13FBSDKShareKit7HashtagC7isValidSbvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)hash", + "mangledName": "$s13FBSDKShareKit7HashtagC4hashSivp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)hash", + "mangledName": "$s13FBSDKShareKit7HashtagC4hashSivg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)isEqual:", + "mangledName": "$s13FBSDKShareKit7HashtagC7isEqualySbypSgF", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)init", + "mangledName": "$s13FBSDKShareKit7HashtagCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag", + "mangledName": "$s13FBSDKShareKit7HashtagC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKHashtag", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "MediaLibrarySearching", + "printedName": "MediaLibrarySearching", + "children": [ + { + "kind": "Function", + "name": "fb_findImage", + "printedName": "fb_findImage(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.MediaLibrarySearching>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fb_getVideoURL", + "printedName": "fb_getVideoURL(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP14fb_getVideoURL3for10Foundation0I0VSo7PHAssetC_tKF", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP14fb_getVideoURL3for10Foundation0I0VSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.MediaLibrarySearching>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessageDialog", + "printedName": "MessageDialog", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)delegate", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)delegate", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setDelegate:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)shareContent", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)shareContent", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShareContent:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "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@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShouldFailOnDataError:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)init", + "mangledName": "$s13FBSDKShareKit13MessageDialogCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)initWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7content8delegateAcA14SharingContent_pSg_AA0G8Delegate_pSgtcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithContent:delegate:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(content:delegate:shareDialogConfiguration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ShareDialogConfigurationProtocol", + "printedName": "FBSDKShareKit.ShareDialogConfigurationProtocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessageDialogC7content8delegate05shareD13ConfigurationAcA14SharingContent_pSg_AA0I8Delegate_pSgAA05SharedH8Protocol_ptcfc", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7content8delegate05shareD13ConfigurationAcA14SharingContent_pSg_AA0I8Delegate_pSgAA05SharedH8Protocol_ptcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "dialog", + "printedName": "dialog(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(cm)dialogWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC6dialog7content8delegateAcA14SharingContent_pSg_AA0H8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "objc_name": "dialogWithContent:delegate:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(cm)showWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC4show7content8delegateAcA14SharingContent_pSg_AA0H8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "objc_name": "showWithContent:delegate:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7canShowSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7canShowSbvg", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)show", + "mangledName": "$s13FBSDKShareKit13MessageDialogC4showSbyF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "show", + "declAttributes": [ + "ObjC", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8validateyyKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleCompletion", + "printedName": "handleCompletion(dialogResults:response:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)handleCompletionWithDialogResults:response:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16handleCompletion13dialogResults8responseySDySSypG_So22FBSDKBridgeAPIResponseCtF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestFactory", + "printedName": "bridgeAPIRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestOpener", + "printedName": "bridgeAPIRequestOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUtility", + "printedName": "shareUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenWallet:bridgeAPIRequestFactory:bridgeAPIRequestOpener:errorFactory:eventLogger:internalUtility:shareUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWallet23bridgeAPIRequestFactory0jK6Opener05errorL011eventLogger15internalUtility05shareR0AESo011FBSDKAccessH9Providing_pXp_So011FBSDKBridgeK8Creating_pSo0vK7Opening_pSo010FBSDKErrorW0_pAA17ShareEventLogging_pSo27FBSDKAppAvailabilityChecker_So013FBSDKInternalR0pAA0zR8Protocol_AA0Z10ValidatingpXptcfc", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWallet23bridgeAPIRequestFactory0jK6Opener05errorL011eventLogger15internalUtility05shareR0AESo011FBSDKAccessH9Providing_pXp_So011FBSDKBridgeK8Creating_pSo0vK7Opening_pSo010FBSDKErrorW0_pAA17ShareEventLogging_pSo27FBSDKAppAvailabilityChecker_So013FBSDKInternalR0pAA0zR8Protocol_AA0Z10ValidatingpXptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog", + "mangledName": "$s13FBSDKShareKit13MessageDialogC", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "FBSDKMessageDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingDialog", + "printedName": "SharingDialog", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP" + }, + { + "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": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessengerIcon", + "printedName": "MessengerIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13MessengerIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "mangledName": "$s13FBSDKShareKit13MessengerIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessengerIcon", + "printedName": "FBSDKShareKit.MessengerIcon", + "usr": "s:13FBSDKShareKit13MessengerIconC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessengerIconCACycfc", + "mangledName": "$s13FBSDKShareKit13MessengerIconCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit13MessengerIconC", + "mangledName": "$s13FBSDKShareKit13MessengerIconC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKMessengerIcon", + "declAttributes": [ + "ObjCRuntimeName", + "Final", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "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": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV13dependentType025_F6BEFA4E8B98C73B76B4E918H6DF1851LLxmvp", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV13dependentType025_F6BEFA4E8B98C73B76B4E918H6DF1851LLxmvp", + "moduleName": "FBSDKShareKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKShareKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareAppEventsParameters", + "printedName": "ShareAppEventsParameters", + "children": [ + { + "kind": "TypeDecl", + "name": "DialogOutcomeValue", + "printedName": "DialogOutcomeValue", + "children": [ + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completed", + "printedName": "completed", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ContentTypeValue", + "printedName": "ContentTypeValue", + "children": [ + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "photo", + "printedName": "photo", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "camera", + "printedName": "camera", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareBridgeAPI", + "printedName": "ShareBridgeAPI", + "children": [ + { + "kind": "TypeDecl", + "name": "MethodName", + "printedName": "MethodName", + "children": [ + { + "kind": "Var", + "name": "camera", + "printedName": "camera", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CompletionGesture", + "printedName": "CompletionGesture", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cancelValue", + "printedName": "cancelValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PostIDKey", + "printedName": "PostIDKey", + "children": [ + { + "kind": "Var", + "name": "results", + "printedName": "results", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webParameters", + "printedName": "webParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareBridgeAPIRequestFactory", + "printedName": "ShareBridgeAPIRequestFactory", + "children": [ + { + "kind": "Function", + "name": "bridgeAPIRequest", + "printedName": "bridgeAPIRequest(with:scheme:methodName:parameters:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "FBSDKBridgeAPIProtocolType", + "printedName": "FBSDKCoreKit.FBSDKBridgeAPIProtocolType", + "usr": "c:@E@FBSDKBridgeAPIProtocolType" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC06bridgeE04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeE0_pSgSo0O15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryC06bridgeE04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeE0_pSgSo0O15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "moduleName": "FBSDKShareKit", + "objc_name": "bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareBridgeAPIRequestFactory", + "printedName": "FBSDKShareKit.ShareBridgeAPIRequestFactory", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryCACycfc", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryCACycfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryC", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareCameraEffectContent", + "printedName": "ShareCameraEffectContent", + "children": [ + { + "kind": "Var", + "name": "effectID", + "printedName": "effectID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "effectArguments", + "printedName": "effectArguments", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectArguments", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectArguments", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectArguments:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0CvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "effectTextures", + "printedName": "effectTextures", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectTextures", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectTextures", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectTextures:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0CvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)placeID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)placeID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)ref", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)ref", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)pageID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)pageID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "SetterAccess", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareCameraEffectContent", + "printedName": "FBSDKShareKit.ShareCameraEffectContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)init", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalUtility:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtility12errorFactoryAESo013FBSDKInternalJ0_p_So18FBSDKErrorCreating_ptcfc", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtility12errorFactoryAESo013FBSDKInternalJ0_p_So18FBSDKErrorCreating_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareCameraEffectContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareDialog", + "printedName": "ShareDialog", + "children": [ + { + "kind": "Var", + "name": "fromViewController", + "printedName": "fromViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "UIKit.UIViewController?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)fromViewController", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)fromViewController", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setFromViewController:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)mode", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)mode", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setMode:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC4modeAC4ModeOvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)delegate", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)delegate", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setDelegate:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)shareContent", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)shareContent", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShareContent:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "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@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShouldFailOnDataError:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "webDialog", + "printedName": "webDialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)webDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setWebDialog:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)initWithViewController:content:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC14viewController7content8delegateACSo06UIViewF0CSg_AA14SharingContent_pSgAA0J8Delegate_pSgtcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithViewController:content:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "dialog", + "printedName": "dialog(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(cm)dialogWithViewController:withContent:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC6dialog14viewController7content8delegateACSo06UIViewG0CSg_AA14SharingContent_pSgAA0K8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isOpen": true, + "objc_name": "dialogWithViewController:withContent:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(cm)showFromViewController:withContent:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4show14viewController7content8delegateACSo06UIViewG0CSg_AA14SharingContent_pSgAA0K8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isOpen": true, + "objc_name": "showFromViewController:withContent:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)init", + "mangledName": "$s13FBSDKShareKit11ShareDialogCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalURLOpener", + "printedName": "internalURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUtility", + "printedName": "shareUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestFactory", + "printedName": "bridgeAPIRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestOpener", + "printedName": "bridgeAPIRequestOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "socialComposeViewControllerFactory", + "printedName": "socialComposeViewControllerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "windowFinder", + "printedName": "windowFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mediaLibrarySearcher", + "printedName": "mediaLibrarySearcher", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 10, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalURLOpener:internalUtility:settings:shareUtility:bridgeAPIRequestFactory:bridgeAPIRequestOpener:socialComposeViewControllerFactory:windowFinder:errorFactory:eventLogger:mediaLibrarySearcher:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + }, + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpener0G7Utility8settings05shareI023bridgeAPIRequestFactory0lM6Opener027socialComposeViewControllerN012windowFinder05errorN011eventLogger20mediaLibrarySearcherAeA0C18InternalURLOpening_p_So013FBSDKInternalI0_p09FBSDKCoreB016SettingsProtocol_pAA0cI8Protocol_AA0C10ValidatingpXpSo011FBSDKBridgeM8Creating_pSo011FBSDKBridgeM7Opening_pAA06SocialqrsN8Protocol_pSo19_FBSDKWindowFinding_pSo18FBSDKErrorCreating_pAA0C12EventLogging_pAA05MediaZ9Searching_ptcfc", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpener0G7Utility8settings05shareI023bridgeAPIRequestFactory0lM6Opener027socialComposeViewControllerN012windowFinder05errorN011eventLogger20mediaLibrarySearcherAeA0C18InternalURLOpening_p_So013FBSDKInternalI0_p09FBSDKCoreB016SettingsProtocol_pAA0cI8Protocol_AA0C10ValidatingpXpSo011FBSDKBridgeM8Creating_pSo011FBSDKBridgeM7Opening_pAA06SocialqrsN8Protocol_pSo19_FBSDKWindowFinding_pSo18FBSDKErrorCreating_pAA0C12EventLogging_pAA05MediaZ9Searching_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit11ShareDialogC7canShowSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "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@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit11ShareDialogC7canShowSbvg", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)show", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4showSbyF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "show", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8validateyyKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialog", + "printedName": "webDialog(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog:didCompleteWithResults:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD0_22didCompleteWithResultsy09FBSDKCoreB004_WebD0C_SDySSypGtF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialog:didCompleteWithResults:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialog", + "printedName": "webDialog(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog:didFailWithError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD0_16didFailWithErrory09FBSDKCoreB004_WebD0C_s0I0_ptF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialog:didFailWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogDidCancel", + "printedName": "webDialogDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialogDidCancel:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD9DidCancelyy09FBSDKCoreB004_WebD0CF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialogDidCancel:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Mode", + "printedName": "Mode", + "children": [ + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO9automaticyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO9automaticyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "native", + "printedName": "native", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO6nativeyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO6nativeyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "shareSheet", + "printedName": "shareSheet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO10shareSheetyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO10shareSheetyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "browser", + "printedName": "browser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO7browseryA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO7browseryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "web", + "printedName": "web", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO3webyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO3webyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "feedBrowser", + "printedName": "feedBrowser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO11feedBrowseryA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11feedBrowseryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "feedWeb", + "printedName": "feedWeb", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO7feedWebyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO7feedWebyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareDialogMode", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "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": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "FBSDKShareDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingDialog", + "printedName": "SharingDialog", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP" + }, + { + "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": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareDialogConfigurationProtocol", + "printedName": "ShareDialogConfigurationProtocol", + "children": [ + { + "kind": "Function", + "name": "shouldUseNativeDialog", + "printedName": "shouldUseNativeDialog(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP015shouldUseNativeD003forD4NameSbSS_tF", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP015shouldUseNativeD003forD4NameSbSS_tF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareDialogConfigurationProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP29shouldUseSafariViewController03forD4NameSbSS_tF", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP29shouldUseSafariViewController03forD4NameSbSS_tF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareDialogConfigurationProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ShareErrorDomain", + "printedName": "ShareErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16ShareErrorDomainSSvp", + "mangledName": "$s13FBSDKShareKit16ShareErrorDomainSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "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:13FBSDKShareKit16ShareErrorDomainSSvg", + "mangledName": "$s13FBSDKShareKit16ShareErrorDomainSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ShareError", + "printedName": "ShareError", + "children": [ + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorReserved", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8reservedyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "openGraph", + "printedName": "openGraph", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorOpenGraph", + "mangledName": "$s13FBSDKShareKit10ShareErrorO9openGraphyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "dialogNotAvailable", + "printedName": "dialogNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorDialogNotAvailable", + "mangledName": "$s13FBSDKShareKit10ShareErrorO18dialogNotAvailableyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorUnknown", + "mangledName": "$s13FBSDKShareKit10ShareErrorO7unknownyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareErrorO8rawValueSivp", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueSivp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareErrorO8rawValueSivg", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueSivg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError", + "mangledName": "$s13FBSDKShareKit10ShareErrorO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareEventLogging", + "printedName": "ShareEventLogging", + "children": [ + { + "kind": "Function", + "name": "logInternalEvent", + "printedName": "logInternalEvent(_:parameters:isImplicitlyLogged:accessToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP011logInternalD0_10parameters18isImplicitlyLogged11accessTokenySo08FBSDKAppD4Namea_SDySo0nd9ParameterO0aypGSgSbSo011FBSDKAccessM0CSgtF", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP011logInternalD0_10parameters18isImplicitlyLogged11accessTokenySo08FBSDKAppD4Namea_SDySo0nd9ParameterO0aypGSgSbSo011FBSDKAccessM0CSgtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareInternalURLOpening", + "printedName": "ShareInternalURLOpening", + "children": [ + { + "kind": "Function", + "name": "canOpenURL", + "printedName": "canOpenURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening(im)canOpenURL:", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP10canOpenURLySb10Foundation0H0VF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareInternalURLOpening>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKShareInternalURLOpening", + "declAttributes": [ + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareLinkContent", + "printedName": "ShareLinkContent", + "children": [ + { + "kind": "Var", + "name": "quote", + "printedName": "quote", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)quote", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)quote", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setQuote:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC5quoteSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)placeID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)placeID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)ref", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)ref", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)pageID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)pageID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareLinkContent", + "printedName": "FBSDKShareKit.ShareLinkContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)init", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareLinkContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "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": "ShareMedia", + "printedName": "ShareMedia", + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKShareMedia", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareMediaContent", + "printedName": "ShareMediaContent", + "children": [ + { + "kind": "Var", + "name": "media", + "printedName": "media", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)media", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)media", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setMedia:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)ref", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)ref", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)init", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareMediaContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharePhoto", + "printedName": "SharePhoto", + "children": [ + { + "kind": "Var", + "name": "image", + "printedName": "image", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)image", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)image", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setImage:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)imageURL", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)imageURL", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setImageURL:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "photoAsset", + "printedName": "photoAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)photoAsset", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)photoAsset", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setPhotoAsset:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isUserGenerated", + "printedName": "isUserGenerated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)isUserGenerated", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)isUserGenerated", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvg", + "moduleName": "FBSDKShareKit", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setIsUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "caption", + "printedName": "caption", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)caption", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)caption", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setCaption:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC7captionSSSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(image:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithImage:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5image15isUserGeneratedACSo7UIImageC_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageURL:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithImageURL:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL15isUserGeneratedAC10Foundation0F0V_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(photoAsset:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithPhotoAsset:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAsset15isUserGeneratedACSo7PHAssetC_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(source:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6source15isUserGeneratedA2C6SourceOSg_Sbtcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6source15isUserGeneratedA2C6SourceOSg_Sbtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)init", + "mangledName": "$s13FBSDKShareKit10SharePhotoCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Source", + "printedName": "Source", + "children": [ + { + "kind": "Var", + "name": "image", + "printedName": "image", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (UIKit.UIImage) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(UIKit.UIImage) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5imageyAESo7UIImageCcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageyAESo7UIImageCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (Foundation.URL) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (Photos.PHAsset) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Photos.PHAsset) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetyAESo7PHAssetCcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetyAESo7PHAssetCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "image", + "printedName": "image", + "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:13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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:13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7UIImageCSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7UIImageCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "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:13FBSDKShareKit10SharePhotoC6SourceOyAESg10Foundation3URLVSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESg10Foundation3URLVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7PHAssetCSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7PHAssetCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto", + "mangledName": "$s13FBSDKShareKit10SharePhotoC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSharePhoto", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareMedia", + "printedName": "ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharePhotoContent", + "printedName": "SharePhotoContent", + "children": [ + { + "kind": "Var", + "name": "photos", + "printedName": "photos", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)photos", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)photos", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPhotos:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)ref", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)ref", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)init", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "imageFinder", + "printedName": "imageFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvp", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvg", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageFinder:validator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinder9validatorAeA21MediaLibrarySearching_p_AA0C10Validating_pXptcfc", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinder9validatorAeA21MediaLibrarySearching_p_AA0C10Validating_pXptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSharePhotoContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareUIApplication", + "printedName": "ShareUIApplication", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvpZ", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvgZ", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareUtilityProtocol", + "printedName": "ShareUtilityProtocol", + "children": [ + { + "kind": "Function", + "name": "feedShareDictionary", + "printedName": "feedShareDictionary(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAsyncWebPhotoContent", + "printedName": "buildAsyncWebPhotoContent(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any])", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP25buildAsyncWebPhotoContent_10completionyAA0ciJ0C_ySb_SSSDySSypGtctFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP25buildAsyncWebPhotoContent_10completionyAA0ciJ0C_ySb_SSSDySSypGtctFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWebShareBridgeComponents", + "printedName": "buildWebShareBridgeComponents(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP08buildWebC16BridgeComponents3forAA0gchI0VAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP08buildWebC16BridgeComponents3forAA0gchI0VAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hashtagString", + "printedName": "hashtagString(from:)", + "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": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bridgeParameters", + "printedName": "bridgeParameters(for:options:shouldFailOnDataError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentFlags", + "printedName": "getContentFlags(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP15getContentFlags3forAA0gH0VAA07SharingG0_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP15getContentFlags3forAA0gH0VAA07SharingG0_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shareMediaContentContainsPhotosAndVideos", + "printedName": "shareMediaContentContainsPhotosAndVideos(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP40shareMediaContentContainsPhotosAndVideosySbAA0cgH0CFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP40shareMediaContentContainsPhotosAndVideosySbAA0cgH0CFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "WebShareBridgeComponents", + "printedName": "WebShareBridgeComponents", + "children": [ + { + "kind": "Var", + "name": "methodName", + "printedName": "methodName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvp", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvg", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvs", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvM", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvp", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvg", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvs", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvM", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(methodName:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodName10parametersACSS_SDySSypGtcfc", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodName10parametersACSS_SDySSypGtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV", + "moduleName": "FBSDKShareKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareValidating", + "printedName": "ShareValidating", + "children": [ + { + "kind": "Function", + "name": "validateRequiredValue", + "printedName": "validateRequiredValue(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP21validateRequiredValue_5namedyyp_SStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP21validateRequiredValue_5namedyyp_SStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArgument", + "printedName": "validateArgument(_:named:in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP16validateArgument_5named2inyqd___SSShyqd__GtKSHRd__lFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP16validateArgument_5named2inyqd___SSShyqd__GtKSHRd__lFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.ShareValidating, τ_1_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArray", + "printedName": "validateArray(_:minCount:maxCount:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateNetworkURL", + "printedName": "validateNetworkURL(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateShareContent", + "printedName": "validateShareContent(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit15ShareValidatingP", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareVideo", + "printedName": "ShareVideo", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)data", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)data", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setData:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "videoAsset", + "printedName": "videoAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)videoAsset", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)videoAsset", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setVideoAsset:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "videoURL", + "printedName": "videoURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)videoURL", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)videoURL", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setVideoURL:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "previewPhoto", + "printedName": "previewPhoto", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)previewPhoto", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)previewPhoto", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setPreviewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithData:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data12previewPhotoAC10Foundation4DataV_AA0cG0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(videoAsset:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithVideoAsset:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAsset12previewPhotoACSo7PHAssetC_AA0cH0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(videoURL:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithVideoURL:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL12previewPhotoAC10Foundation0F0V_AA0cH0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(source:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6source12previewPhotoA2C6SourceOSg_AA0cG0CSgtcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6source12previewPhotoA2C6SourceOSg_AA0cG0CSgtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)init", + "mangledName": "$s13FBSDKShareKit10ShareVideoCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Source", + "printedName": "Source", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Foundation.Data) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4datayAE10Foundation4DataVcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4datayAE10Foundation4DataVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Foundation.URL) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Photos.PHAsset) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Photos.PHAsset) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetyAESo7PHAssetCcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetyAESo7PHAssetCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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:13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation4DataVSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation4DataVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "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:13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation3URLVSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation3URLVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceOyAESgSo7PHAssetCSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESgSo7PHAssetCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo", + "mangledName": "$s13FBSDKShareKit10ShareVideoC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareVideo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareMedia", + "printedName": "ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareVideoContent", + "printedName": "ShareVideoContent", + "children": [ + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)video", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)video", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setVideo:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC5videoAA0cD0CvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)ref", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)ref", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "SetterAccess", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideoContent", + "printedName": "FBSDKShareKit.ShareVideoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)init", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mediaLibrarySearcher", + "printedName": "mediaLibrarySearcher", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvp", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvg", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(validator:mediaLibrarySearcher:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validator20mediaLibrarySearcherAeA0C10Validating_pXp_AA05MediaJ9Searching_ptcfc", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validator20mediaLibrarySearcherAeA0C10Validating_pXp_AA05MediaJ9Searching_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareVideoContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Sharing", + "printedName": "Sharing", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)delegate", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "ReferenceOwnership", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)delegate", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)shareContent", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)shareContent", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit7SharingP8validateyyKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharing", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingButton", + "printedName": "SharingButton", + "children": [ + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingButton>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingButton>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingButton", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharingContent", + "printedName": "SharingContent", + "children": [ + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)placeID", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)placeID", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)ref", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)ref", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)pageID", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)pageID", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit14SharingContentP9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit14SharingContentP9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit14SharingContentP13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : FBSDKShareKit.SharingValidatable, τ_0_0 : ObjectiveC.NSObjectProtocol>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingContent", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingDelegate", + "printedName": "SharingDelegate", + "children": [ + { + "kind": "Function", + "name": "sharer", + "printedName": "sharer(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharer:didCompleteWithResults:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP6sharer_22didCompleteWithResultsyAA0C0_p_SDySSypGtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharer:didCompleteWithResults:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sharer", + "printedName": "sharer(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharer:didFailWithError:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP6sharer_16didFailWithErroryAA0C0_p_s0I0_ptF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharer:didFailWithError:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sharerDidCancel", + "printedName": "sharerDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharerDidCancel:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP15sharerDidCancelyyAA0C0_pF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharerDidCancel:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingDialog", + "printedName": "SharingDialog", + "children": [ + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit13SharingDialogP7canShowSbvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit13SharingDialogP7canShowSbvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDialog>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(im)show", + "mangledName": "$s13FBSDKShareKit13SharingDialogP4showSbyF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDialog>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "children": [ + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingValidatable>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingValidatable", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Social", + "printedName": "Social", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SocialComposeViewControllerFactory", + "printedName": "SocialComposeViewControllerFactory", + "children": [ + { + "kind": "Function", + "name": "makeSocialComposeViewController", + "printedName": "makeSocialComposeViewController()", + "children": [ + { + "kind": "TypeNominal", + "name": "SLComposeViewController", + "printedName": "Social.SLComposeViewController", + "usr": "c:objc(cs)SLComposeViewController" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC04makecdeF0So09SLComposeeF0CyF", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryC04makecdeF0So09SLComposeeF0CyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactory", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactory", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryCACycfc", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryCACycfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryC", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Social", + "printedName": "Social", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "SocialComposeViewControllerFactoryProtocol", + "children": [ + { + "kind": "Function", + "name": "makeSocialComposeViewController", + "printedName": "makeSocialComposeViewController()", + "children": [ + { + "kind": "TypeNominal", + "name": "SLComposeViewController", + "printedName": "Social.SLComposeViewController", + "usr": "c:objc(cs)SLComposeViewController" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP04makecdeF0So09SLComposeeF0CyF", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP04makecdeF0So09SLComposeeF0CyF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SocialComposeViewControllerFactoryProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "children": [ + { + "kind": "Var", + "name": "bundleForStrings", + "printedName": "bundleForStrings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.UserInterfaceStringProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "_ShareUtility", + "printedName": "_ShareUtility", + "children": [ + { + "kind": "Function", + "name": "validateRequiredValue", + "printedName": "validateRequiredValue(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO21validateRequiredValue_5namedyyp_SStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO21validateRequiredValue_5namedyyp_SStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArgument", + "printedName": "validateArgument(_:named:in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO16validateArgument_5named2inyx_SSShyxGtKSHRzlFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO16validateArgument_5named2inyx_SSShyxGtKSHRzlFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArray", + "printedName": "validateArray(_:minCount:maxCount:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateNetworkURL", + "printedName": "validateNetworkURL(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateShareContent", + "printedName": "validateShareContent(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "hasDefaultArg": true, + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWebShareBridgeComponents", + "printedName": "buildWebShareBridgeComponents(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO08buildWebC16BridgeComponents3forAA0fcgH0VAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO08buildWebC16BridgeComponents3forAA0fcgH0VAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAsyncWebPhotoContent", + "printedName": "buildAsyncWebPhotoContent(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any])", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO25buildAsyncWebPhotoContent_10completionyAA0chI0C_ySb_SSSDySSypGtctFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO25buildAsyncWebPhotoContent_10completionyAA0chI0C_ySb_SSSDySSypGtctFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "feedShareDictionary", + "printedName": "feedShareDictionary(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hashtagString", + "printedName": "hashtagString(from:)", + "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": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bridgeParameters", + "printedName": "bridgeParameters(for:options:shouldFailOnDataError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "hasDefaultArg": true, + "usr": "c:@E@FBSDKShareBridgeOptions" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentFlags", + "printedName": "getContentFlags(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO15getContentFlags3forAA0fG0VAA07SharingF0_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO15getContentFlags3forAA0fG0VAA07SharingF0_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shareMediaContentContainsPhotosAndVideos", + "printedName": "shareMediaContentContainsPhotosAndVideos(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO40shareMediaContentContainsPhotosAndVideosySbAA0cfG0CFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO40shareMediaContentContainsPhotosAndVideosySbAA0cfG0CFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit13_ShareUtilityO", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareValidating", + "printedName": "ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP" + }, + { + "kind": "Conformance", + "name": "ShareUtilityProtocol", + "printedName": "ShareUtilityProtocol", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PHImageManager", + "printedName": "PHImageManager", + "children": [ + { + "kind": "TypeDecl", + "name": "MediaLibrarySearchError", + "printedName": "MediaLibrarySearchError", + "children": [ + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Var", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvp", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Accessor", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvg", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearchError", + "printedName": "Photos.PHImageManager.MediaLibrarySearchError", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Constructor", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetAESo7PHAssetC_tcfc", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetAESo7PHAssetC_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "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": "fb_findImage", + "printedName": "fb_findImage(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fb_getVideoURL", + "printedName": "fb_getVideoURL(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE14fb_getVideoURL3for10Foundation0H0VSo7PHAssetC_tKF", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE14fb_getVideoURL3for10Foundation0H0VSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)PHImageManager", + "moduleName": "Photos", + "isOpen": true, + "intro_iOS": "8", + "objc_name": "PHImageManager", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "MediaLibrarySearching", + "printedName": "MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "messengerShareDialogShow", + "printedName": "messengerShareDialogShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messengerShareDialogResult", + "printedName": "messengerShareDialogResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sendButtonImpression", + "printedName": "sendButtonImpression", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sendButtonDidTap", + "printedName": "sendButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareButtonImpression", + "printedName": "shareButtonImpression", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareButtonDidTap", + "printedName": "shareButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareDialogShow", + "printedName": "shareDialogShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareDialogResult", + "printedName": "shareDialogResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName", + "moduleName": "FBSDKCoreKit", + "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": "ParameterName", + "printedName": "ParameterName", + "children": [ + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "outcome", + "printedName": "outcome", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentType", + "printedName": "shareContentType", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentPageID", + "printedName": "shareContentPageID", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentUUID", + "printedName": "shareContentUUID", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName", + "moduleName": "FBSDKCoreKit", + "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": "ShareDialogConfiguration", + "printedName": "ShareDialogConfiguration", + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV", + "moduleName": "FBSDKCoreKit", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ShareDialogConfigurationProtocol", + "printedName": "ShareDialogConfigurationProtocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP" + }, + { + "kind": "Conformance", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEvents", + "printedName": "AppEvents", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAppEvents", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAppEvents", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ShareEventLogging", + "printedName": "ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIApplication", + "printedName": "UIApplication", + "declKind": "Class", + "usr": "c:objc(cs)UIApplication", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIApplication", + "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": "Conformance", + "name": "ShareInternalURLOpening", + "printedName": "ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InternalUtility", + "printedName": "InternalUtility", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKInternalUtility", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKInternalUtility", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "StringLiteral", + "offset": 338, + "length": 16, + "value": "\"FBSDKShareKit.AppInviteContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 367, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 401, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 435, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/Hashtag.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 7, + "value": "\"FBSDKShareKit.Hashtag\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/MessageDialog.swift", + "kind": "BooleanLiteral", + "offset": 1367, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/MessageDialog.swift", + "kind": "BooleanLiteral", + "offset": 1508, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 32, + "value": "\"fb_messenger_dialog_share_show\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 432, + "length": 34, + "value": "\"fb_messenger_dialog_share_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 544, + "length": 27, + "value": "\"fb_send_button_impression\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 620, + "length": 24, + "value": "\"fb_send_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 724, + "length": 28, + "value": "\"fb_share_button_impression\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 802, + "length": 25, + "value": "\"fb_share_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 901, + "length": 22, + "value": "\"fb_dialog_share_show\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 973, + "length": 24, + "value": "\"fb_dialog_share_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 33, + "value": "\"fb_dialog_outcome_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 402, + "length": 19, + "value": "\"fb_dialog_outcome\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 30, + "value": "\"fb_dialog_share_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 555, + "length": 16, + "value": "\"fb_dialog_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 631, + "length": 33, + "value": "\"fb_dialog_share_content_page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 30, + "value": "\"fb_dialog_share_content_uuid\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 844, + "length": 11, + "value": "\"Cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 883, + "length": 11, + "value": "\"Completed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 919, + "length": 8, + "value": "\"Failed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 983, + "length": 8, + "value": "\"Status\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1015, + "length": 7, + "value": "\"Photo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1046, + "length": 7, + "value": "\"Video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1078, + "length": 8, + "value": "\"Camera\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1112, + "length": 9, + "value": "\"Unknown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 296, + "length": 8, + "value": "\"camera\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 328, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 389, + "length": 19, + "value": "\"completionGesture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 8, + "value": "\"cancel\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 496, + "length": 8, + "value": "\"postId\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 9, + "value": "\"post_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ShareCameraEffectContent.swift", + "kind": "StringLiteral", + "offset": 523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 6, + "value": "\"feed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 741, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 856, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 1817, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 400, + "length": 11, + "value": "\"FBSDKShareKit.ShareDialog\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "Array", + "offset": 22128, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 29908, + "length": 8, + "value": "\"app_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 29976, + "length": 10, + "value": "\"hashtags\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 30047, + "length": 8, + "value": "\"quotes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 772, + "length": 10, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 7, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 967, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 1053, + "length": 7, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 772, + "length": 10, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 7, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 967, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 1053, + "length": 7, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 24, + "value": "\"com.facebook.sdk.share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 687, + "length": 9, + "value": "201" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 845, + "length": 18, + "value": "202" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 7, + "value": "203" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 687, + "length": 9, + "value": "201" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 845, + "length": 18, + "value": "202" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 7, + "value": "203" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhoto.swift", + "kind": "BooleanLiteral", + "offset": 3009, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhoto.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"FBSDKShareKit.SharePhoto\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhotoContent.swift", + "kind": "IntegerLiteral", + "offset": 3474, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhotoContent.swift", + "kind": "IntegerLiteral", + "offset": 3480, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ShareVideo.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 10, + "value": "\"FBSDKShareKit.ShareVideo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/SocialComposeViewControllerFactory.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 27, + "value": "\"com.apple.social.facebook\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/_ShareUtility.swift", + "kind": "Array", + "offset": 2340, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/_ShareUtility.swift", + "kind": "Array", + "offset": 5265, + "length": 2, + "value": "[]" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.private.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.private.swiftinterface new file mode 100644 index 00000000..d9b77862 --- /dev/null +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -0,0 +1,368 @@ +// 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-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import FBSDKCoreKit +import FBSDKCoreKit_Basics +@_exported import FBSDKShareKit +import Foundation +import Photos +import Social +import Swift +import UIKit +import _Concurrency +import _StringProcessing +@objcMembers @objc(FBSDKAppInviteContent) final public class AppInviteContent : ObjectiveC.NSObject { + @objc(FBSDKAppInviteDestination) public enum Destination : Swift.Int { + case facebook + case messenger + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } + } + @objc final public var appInvitePreviewImageURL: Foundation.URL? + @objc final public var appLinkURL: Foundation.URL + @objc final public var promotionCode: Swift.String? + @objc final public var promotionText: Swift.String? + @objc final public var destination: FBSDKShareKit.AppInviteContent.Destination + @objc(initWithAppLinkURL:) public init(appLinkURL: Foundation.URL) + @objc deinit +} +extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { + @objc final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCameraEffectArguments) final public class CameraEffectArguments : ObjectiveC.NSObject { + @objc(setString:forKey:) final public func set(_ string: Swift.String?, forKey key: Swift.String) + @objc final public func string(forKey key: Swift.String) -> Swift.String? + @objc(setArray:forKey:) final public func set(_ array: [Swift.String]?, forKey key: Swift.String) + @objc final public func array(forKey key: Swift.String) -> [Swift.String]? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCameraEffectTextures) final public class CameraEffectTextures : ObjectiveC.NSObject { + @objc(setImage:forKey:) final public func set(_ image: UIKit.UIImage?, forKey key: Swift.String) + @objc(imageForKey:) final public func image(forKey key: Swift.String) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSendButton) @_Concurrency.MainActor(unsafe) final public class FBSendButton : FBSDKCoreKit.FBButton, FBSDKShareKit.SharingButton, FBSDKCoreKit.FBButtonImpressionLogging { + @objc @_Concurrency.MainActor(unsafe) final public var dialog: FBSDKShareKit.MessageDialog? + @_Concurrency.MainActor(unsafe) @objc final public var shareContent: FBSDKShareKit.SharingContent? { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc final public var analyticsParameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]? { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc final public var impressionTrackingEventName: FBSDKCoreKit.AppEvents.Name { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc final public var impressionTrackingIdentifier: Swift.String { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public func configureButton() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareButton) @_Concurrency.MainActor(unsafe) final public class FBShareButton : FBSDKCoreKit.FBButton, FBSDKShareKit.SharingButton { + @_Concurrency.MainActor(unsafe) @objc final public var shareContent: FBSDKShareKit.SharingContent? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var analyticsParameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]? { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public var impressionTrackingEventName: FBSDKCoreKit.AppEvents.Name { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public var impressionTrackingIdentifier: Swift.String { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public func configureButton() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objcMembers @objc(FBSDKHashtag) final public class Hashtag : ObjectiveC.NSObject { + @objc final public var stringRepresentation: Swift.String + @objc(initWithString:) public init(_ string: Swift.String) + @objc override final public var description: Swift.String { + @objc get + } + @objc final public var isValid: Swift.Bool { + @objc get + } + @objc override final public var hash: Swift.Int { + @objc get + } + @objc override final public func isEqual(_ object: Any?) -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKMessageDialog) public class MessageDialog : ObjectiveC.NSObject, FBSDKShareKit.SharingDialog { + @objc weak public var delegate: FBSDKShareKit.SharingDelegate? + @objc public var shareContent: FBSDKShareKit.SharingContent? + @objc public var shouldFailOnDataError: Swift.Bool + @objc(initWithContent:delegate:) convenience public init(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) + @objc(dialogWithContent:delegate:) public static func dialog(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.MessageDialog + @objc(showWithContent:delegate:) public static func show(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.MessageDialog + @objc public var canShow: Swift.Bool { + @objc get + } + @discardableResult + @objc public func show() -> Swift.Bool + @objc public func validate() throws + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareCameraEffectContent) final public class ShareCameraEffectContent : ObjectiveC.NSObject { + @objc final public var effectID: Swift.String + @objc final public var effectArguments: FBSDKShareKit.CameraEffectArguments + @objc final public var effectTextures: FBSDKShareKit.CameraEffectTextures + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public var shareUUID: Swift.String? { + get + } + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareCameraEffectContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objcMembers @objc(FBSDKShareDialog) public class ShareDialog : ObjectiveC.NSObject, FBSDKShareKit.SharingDialog { + @objc weak public var fromViewController: UIKit.UIViewController? + @objc public var mode: FBSDKShareKit.ShareDialog.Mode + @objc weak public var delegate: FBSDKShareKit.SharingDelegate? + @objc public var shareContent: FBSDKShareKit.SharingContent? + @objc public var shouldFailOnDataError: Swift.Bool + @objc(initWithViewController:content:delegate:) public init(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) + @objc deinit + @objc(dialogWithViewController:withContent:delegate:) public class func dialog(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.ShareDialog + @discardableResult + @objc(showFromViewController:withContent:delegate:) public class func show(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.ShareDialog +} +extension FBSDKShareKit.ShareDialog { + @objc dynamic public var canShow: Swift.Bool { + @objc get + } + @discardableResult + @objc dynamic public func show() -> Swift.Bool + @objc dynamic public func validate() throws +} +extension FBSDKShareKit.ShareDialog : FBSDKCoreKit.WebDialogDelegate { + @objc dynamic public func webDialog(_ webDialog: FBSDKCoreKit._WebDialog, didCompleteWithResults results: [Swift.String : Any]) + @objc dynamic public func webDialog(_ webDialog: FBSDKCoreKit._WebDialog, didFailWithError error: Swift.Error) + @objc dynamic public func webDialogDidCancel(_ webDialog: FBSDKCoreKit._WebDialog) +} +extension FBSDKShareKit.ShareDialog { + @objc(FBSDKShareDialogMode) public enum Mode : Swift.UInt, Swift.CustomStringConvertible { + case automatic + case native + case shareSheet + case browser + case web + case feedBrowser + case feedWeb + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } +} +public let ShareErrorDomain: Swift.String +@objc(FBSDKShareError) public enum ShareError : Swift.Int { + case reserved = 200 + case openGraph + case dialogNotAvailable + case unknown + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareLinkContent) final public class ShareLinkContent : ObjectiveC.NSObject { + @objc final public var quote: Swift.String? + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objc(FBSDKShareMedia) public protocol ShareMedia { +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareMediaContent) final public class ShareMediaContent : ObjectiveC.NSObject { + @objc final public var media: [FBSDKShareKit.ShareMedia] + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKSharePhoto) final public class SharePhoto : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { + @objc final public var image: UIKit.UIImage? { + @objc get + @objc set + } + @objc final public var imageURL: Foundation.URL? { + @objc get + @objc set + } + @objc final public var photoAsset: Photos.PHAsset? { + @objc get + @objc set + } + @objc final public var isUserGenerated: Swift.Bool + @objc final public var caption: Swift.String? + @objc convenience public init(image: UIKit.UIImage, isUserGenerated: Swift.Bool) + @objc convenience public init(imageURL: Foundation.URL, isUserGenerated: Swift.Bool) + @objc convenience public init(photoAsset: Photos.PHAsset, isUserGenerated: Swift.Bool) + @objc deinit +} +extension FBSDKShareKit.SharePhoto : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSharePhotoContent) final public class SharePhotoContent : ObjectiveC.NSObject { + @objc final public var photos: [FBSDKShareKit.SharePhoto] + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKShareVideo) final public class ShareVideo : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { + @objc final public var data: Foundation.Data? { + @objc get + @objc set + } + @objc final public var videoAsset: Photos.PHAsset? { + @objc get + @objc set + } + @objc final public var videoURL: Foundation.URL? { + @objc get + @objc set + } + @objc final public var previewPhoto: FBSDKShareKit.SharePhoto? + @objc convenience public init(data: Foundation.Data, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc convenience public init(videoAsset: Photos.PHAsset, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc convenience public init(videoURL: Foundation.URL, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc deinit +} +extension FBSDKShareKit.ShareVideo : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareVideoContent) final public class ShareVideoContent : ObjectiveC.NSObject { + @objc final public var video: FBSDKShareKit.ShareVideo + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public var shareUUID: Swift.String? { + get + } + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objc(FBSDKSharing) public protocol Sharing { + @objc weak var delegate: FBSDKShareKit.SharingDelegate? { get set } + @objc var shareContent: FBSDKShareKit.SharingContent? { get set } + @objc var shouldFailOnDataError: Swift.Bool { get set } + @objc(validateWithError:) func validate() throws +} +@objc(FBSDKSharingButton) public protocol SharingButton { + @objc var shareContent: FBSDKShareKit.SharingContent? { get set } +} +@objc(FBSDKSharingContent) public protocol SharingContent : FBSDKShareKit.SharingValidatable, ObjectiveC.NSObjectProtocol { + @objc var contentURL: Foundation.URL? { get set } + @objc var hashtag: FBSDKShareKit.Hashtag? { get set } + @objc var peopleIDs: [Swift.String] { get set } + @objc var placeID: Swift.String? { get set } + @objc var ref: Swift.String? { get set } + @objc var pageID: Swift.String? { get set } + @objc var shareUUID: Swift.String? { get } + @objc(addParameters:bridgeOptions:) func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +@objc(FBSDKSharingDelegate) public protocol SharingDelegate { + @objc(sharer:didCompleteWithResults:) func sharer(_ sharer: FBSDKShareKit.Sharing, didCompleteWithResults results: [Swift.String : Any]) + @objc(sharer:didFailWithError:) func sharer(_ sharer: FBSDKShareKit.Sharing, didFailWithError error: Swift.Error) + @objc(sharerDidCancel:) func sharerDidCancel(_ sharer: FBSDKShareKit.Sharing) +} +@objc(FBSDKSharingDialog) public protocol SharingDialog : FBSDKShareKit.Sharing { + @objc var canShow: Swift.Bool { get } + @objc @discardableResult + func show() -> Swift.Bool +} +@objc(FBSDKSharingValidatable) public protocol SharingValidatable { + @objc(validateWithOptions:error:) func validate(options: FBSDKShareKit.ShareBridgeOptions) throws +} +public enum _ShareUtility { +} +extension FBSDKShareKit._ShareUtility { + public static func validateRequiredValue(_ value: Any, named name: Swift.String) throws + public static func validateArgument(_ value: Argument, named name: Swift.String, in possibleValues: Swift.Set) throws where Argument : Swift.Hashable +} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.Equatable {} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.Hashable {} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.RawRepresentable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.Equatable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.Hashable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.RawRepresentable {} +extension FBSDKShareKit.ShareError : Swift.Equatable {} +extension FBSDKShareKit.ShareError : Swift.Hashable {} +extension FBSDKShareKit.ShareError : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.swiftdoc b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.swiftdoc index 301873bb..dd04ad71 100644 Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.swiftdoc and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.swiftinterface index 324b7606..d9b77862 100644 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.swiftinterface +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import FBSDKCoreKit import FBSDKCoreKit_Basics @_exported import FBSDKShareKit @@ -10,6 +11,7 @@ import Social import Swift import UIKit import _Concurrency +import _StringProcessing @objcMembers @objc(FBSDKAppInviteContent) final public class AppInviteContent : ObjectiveC.NSObject { @objc(FBSDKAppInviteDestination) public enum Destination : Swift.Int { case facebook @@ -61,10 +63,10 @@ extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { @objc get } @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { - @_Concurrency.MainActor(unsafe) @objc get + @objc get } @objc @_Concurrency.MainActor(unsafe) final public func configureButton() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } @@ -83,10 +85,10 @@ extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { @objc get } @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { - @_Concurrency.MainActor(unsafe) @objc get + @objc get } @objc @_Concurrency.MainActor(unsafe) final public func configureButton() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } @@ -323,7 +325,6 @@ extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { @objc var shouldFailOnDataError: Swift.Bool { get set } @objc(validateWithError:) func validate() throws } -@available(tvOS, unavailable) @objc(FBSDKSharingButton) public protocol SharingButton { @objc var shareContent: FBSDKShareKit.SharingContent? { get set } } diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/module.modulemap b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/module.modulemap index 3d203af2..7cc573a3 100644 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/module.modulemap +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/FBSDKShareKit.framework/Modules/module.modulemap @@ -6,6 +6,6 @@ framework module FBSDKShareKit { } module FBSDKShareKit.Swift { - header "FBSDKShareKit-Swift.h" - requires objc + header "FBSDKShareKit-Swift.h" + requires objc } diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index a57ddd8e..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKShareKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit b/ios/platform/FBSDKShareKit.xcframework/ios-arm64/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit deleted file mode 100644 index a3a617c7..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/FBSDKShareKit b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/FBSDKShareKit deleted file mode 120000 index c4b82978..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/FBSDKShareKit +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/FBSDKShareKit \ No newline at end of file diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/FBSDKShareKit b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/FBSDKShareKit new file mode 100644 index 00000000..f03d0f96 Binary files /dev/null and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/FBSDKShareKit differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Headers b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Headers deleted file mode 120000 index a177d2a6..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Headers/FBSDKShareBridgeOptions.h b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Headers/FBSDKShareBridgeOptions.h similarity index 100% rename from ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Headers/FBSDKShareBridgeOptions.h rename to ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Headers/FBSDKShareBridgeOptions.h diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Headers/FBSDKShareErrorDomain.h b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Headers/FBSDKShareErrorDomain.h similarity index 100% rename from ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Headers/FBSDKShareErrorDomain.h rename to ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Headers/FBSDKShareErrorDomain.h diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Headers/FBSDKShareKit-Swift.h b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h similarity index 97% rename from ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Headers/FBSDKShareKit-Swift.h rename to ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h index d231ab0f..ce9bb8fd 100644 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Headers/FBSDKShareKit-Swift.h +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBSDKSHAREKIT_SWIFT_H #define FBSDKSHAREKIT_SWIFT_H #pragma clang diagnostic push @@ -23,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -183,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -193,11 +204,33 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif -@import CoreGraphics; +@import CoreFoundation; @import FBSDKCoreKit; @import Foundation; @import ObjectiveC; @@ -205,6 +238,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -212,6 +246,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -220,6 +255,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSURL; @class NSString; @@ -319,7 +355,7 @@ SWIFT_CLASS_NAMED("CameraEffectTextures") /// The common interface for sharing buttons. /// See FBSendButton and FBShareButton -SWIFT_PROTOCOL_NAMED("SharingButton") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_PROTOCOL_NAMED("SharingButton") @protocol FBSDKSharingButton /// The content to be shared. @property (nonatomic, strong) id _Nullable shareContent; @@ -960,6 +996,9 @@ SWIFT_PROTOCOL_NAMED("SharingDelegate") +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif @@ -967,7 +1006,7 @@ SWIFT_PROTOCOL_NAMED("SharingDelegate") #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBSDKSHAREKIT_SWIFT_H #define FBSDKSHAREKIT_SWIFT_H #pragma clang diagnostic push @@ -990,11 +1029,20 @@ SWIFT_PROTOCOL_NAMED("SharingDelegate") # 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 @@ -1150,9 +1198,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -1160,11 +1210,33 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif -@import CoreGraphics; +@import CoreFoundation; @import FBSDKCoreKit; @import Foundation; @import ObjectiveC; @@ -1172,6 +1244,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -1179,6 +1252,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -1187,6 +1261,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSURL; @class NSString; @@ -1286,7 +1361,7 @@ SWIFT_CLASS_NAMED("CameraEffectTextures") /// The common interface for sharing buttons. /// See FBSendButton and FBShareButton -SWIFT_PROTOCOL_NAMED("SharingButton") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_PROTOCOL_NAMED("SharingButton") @protocol FBSDKSharingButton /// The content to be shared. @property (nonatomic, strong) id _Nullable shareContent; @@ -1927,10 +2002,15 @@ SWIFT_PROTOCOL_NAMED("SharingDelegate") +#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/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Headers/FBSDKShareKit.h b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Headers/FBSDKShareKit.h similarity index 100% rename from ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Headers/FBSDKShareKit.h rename to ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Headers/FBSDKShareKit.h diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules deleted file mode 120000 index 5736f318..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.abi.json b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.abi.json new file mode 100644 index 00000000..edee5509 --- /dev/null +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.abi.json @@ -0,0 +1,29048 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "AppInviteContent", + "printedName": "AppInviteContent", + "children": [ + { + "kind": "TypeDecl", + "name": "Destination", + "printedName": "Destination", + "children": [ + { + "kind": "Var", + "name": "facebook", + "printedName": "facebook", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.AppInviteContent.Destination.Type) -> FBSDKShareKit.AppInviteContent.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.AppInviteContent.Destination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8facebookyA2EmF", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8facebookyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "messenger", + "printedName": "messenger", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.AppInviteContent.Destination.Type) -> FBSDKShareKit.AppInviteContent.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.AppInviteContent.Destination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO9messengeryA2EmF", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO9messengeryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.Destination?", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueAESgSi_tcfc", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueAESgSi_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKAppInviteDestination", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Var", + "name": "appInvitePreviewImageURL", + "printedName": "appInvitePreviewImageURL", + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)appInvitePreviewImageURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)appInvitePreviewImageURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setAppInvitePreviewImageURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkURL", + "printedName": "appLinkURL", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)appLinkURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)appLinkURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setAppLinkURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0VvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0VvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "promotionCode", + "printedName": "promotionCode", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)promotionCode", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)promotionCode", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setPromotionCode:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "promotionText", + "printedName": "promotionText", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)promotionText", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)promotionText", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setPromotionText:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "destination", + "printedName": "destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)destination", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)destination", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setDestination:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLinkURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppInviteContent", + "printedName": "FBSDKShareKit.AppInviteContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)initWithAppLinkURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURLAC10Foundation0H0V_tcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithAppLinkURL:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppInviteContent", + "printedName": "FBSDKShareKit.AppInviteContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)init", + "mangledName": "$s13FBSDKShareKit16AppInviteContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvs", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(validator:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validator12errorFactoryAeA15ShareValidating_pXp_So18FBSDKErrorCreating_ptcfc", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validator12errorFactoryAeA15ShareValidating_pXp_So18FBSDKErrorCreating_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKAppInviteContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "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": "CameraEffectArguments", + "printedName": "CameraEffectArguments", + "children": [ + { + "kind": "Var", + "name": "arguments", + "printedName": "arguments", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(py)arguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC9argumentsSDySSypGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)arguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC9argumentsSDySSypGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)setString:forKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC3set_6forKeyySSSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setString:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "string", + "printedName": "string(forKey:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)stringForKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC6string6forKeySSSgSS_tF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)setArray:forKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC3set_6forKeyySaySSGSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setArray:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)arrayForKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC5array6forKeySaySSGSgSS_tF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)init", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKCameraEffectArguments", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CameraEffectTextures", + "printedName": "CameraEffectTextures", + "children": [ + { + "kind": "Var", + "name": "textures", + "printedName": "textures", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : UIKit.UIImage]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(py)textures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC8texturesSDySSSo7UIImageCGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : UIKit.UIImage]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)textures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC8texturesSDySSSo7UIImageCGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)setImage:forKey:", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC3set_6forKeyySo7UIImageCSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setImage:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)imageForKey:", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC5image6forKeySo7UIImageCSgSS_tF", + "moduleName": "FBSDKShareKit", + "objc_name": "imageForKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)init", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKCameraEffectTextures", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ContentFlags", + "printedName": "ContentFlags", + "children": [ + { + "kind": "Var", + "name": "containsMedia", + "printedName": "containsMedia", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV13containsMediaSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "containsPhotos", + "printedName": "containsPhotos", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "containsVideos", + "printedName": "containsVideos", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV14containsVideosSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(containsMedia:containsPhotos:containsVideos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMedia0E6Photos0E6VideosACSb_S2btcfc", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMedia0E6Photos0E6VideosACSb_S2btcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "containsAllTypes", + "printedName": "containsAllTypes", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "|=", + "printedName": "|=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "paramValueOwnership": "InOut", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit12ContentFlagsV2oeoiyyACz_ACtFZ", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV2oeoiyyACz_ACtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit12ContentFlagsV", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV", + "moduleName": "FBSDKShareKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKShareKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKShareKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "FBSendButton", + "printedName": "FBSendButton", + "children": [ + { + "kind": "Var", + "name": "dialog", + "printedName": "dialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)dialog", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)dialog", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)setDialog:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "objc_name": "setShareContent:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "analyticsParameters", + "printedName": "analyticsParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)analyticsParameters", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "analyticsParameters", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)analyticsParameters", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "analyticsParameters", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingEventName", + "printedName": "impressionTrackingEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avp", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingEventName", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avg", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingEventName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingIdentifier", + "printedName": "impressionTrackingIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC28impressionTrackingIdentifierSSvp", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingIdentifier", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC28impressionTrackingIdentifierSSvg", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingIdentifier", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isImplicitlyDisabled", + "printedName": "isImplicitlyDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)implicitlyDisabled", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC20isImplicitlyDisabledSbvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "implicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)isImplicitlyDisabled", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC20isImplicitlyDisabledSbvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isImplicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configureButton", + "printedName": "configureButton()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)configureButton", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC09configureD0yyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "share", + "printedName": "share()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)share", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5shareyyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "IBAction", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSendButton", + "printedName": "FBSDKShareKit.FBSendButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)initWithFrame:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSendButton", + "printedName": "FBSDKShareKit.FBSendButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)initWithCoder:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilityAESo013FBSDKInternalH0_p_tcfc", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilityAESo013FBSDKInternalH0_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSendButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingButton", + "printedName": "SharingButton", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "FBShareButton", + "printedName": "FBShareButton", + "children": [ + { + "kind": "Var", + "name": "dialog", + "printedName": "dialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)dialog", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)dialog", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)setDialog:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "objc_name": "setShareContent:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "analyticsParameters", + "printedName": "analyticsParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)analyticsParameters", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)analyticsParameters", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingEventName", + "printedName": "impressionTrackingEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingIdentifier", + "printedName": "impressionTrackingIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC28impressionTrackingIdentifierSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC28impressionTrackingIdentifierSSvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isImplicitlyDisabled", + "printedName": "isImplicitlyDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)implicitlyDisabled", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC20isImplicitlyDisabledSbvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "implicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)isImplicitlyDisabled", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC20isImplicitlyDisabledSbvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isImplicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configureButton", + "printedName": "configureButton()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)configureButton", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC09configureD0yyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "share", + "printedName": "share()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)share", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5shareyyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "IBAction", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBShareButton", + "printedName": "FBSDKShareKit.FBShareButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)initWithFrame:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBShareButton", + "printedName": "FBSDKShareKit.FBShareButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)initWithCoder:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvs", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAeA28UserInterfaceStringProviding_p_tcfc", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAeA28UserInterfaceStringProviding_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingButton", + "printedName": "SharingButton", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP" + }, + { + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Hashtag", + "printedName": "Hashtag", + "children": [ + { + "kind": "Var", + "name": "stringRepresentation", + "printedName": "stringRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)stringRepresentation", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)stringRepresentation", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)setStringRepresentation:", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit7HashtagC20stringRepresentationSSvM", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)initWithString:", + "mangledName": "$s13FBSDKShareKit7HashtagCyACSScfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithString:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)description", + "mangledName": "$s13FBSDKShareKit7HashtagC11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)description", + "mangledName": "$s13FBSDKShareKit7HashtagC11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)isValid", + "mangledName": "$s13FBSDKShareKit7HashtagC7isValidSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)isValid", + "mangledName": "$s13FBSDKShareKit7HashtagC7isValidSbvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)hash", + "mangledName": "$s13FBSDKShareKit7HashtagC4hashSivp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)hash", + "mangledName": "$s13FBSDKShareKit7HashtagC4hashSivg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)isEqual:", + "mangledName": "$s13FBSDKShareKit7HashtagC7isEqualySbypSgF", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)init", + "mangledName": "$s13FBSDKShareKit7HashtagCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag", + "mangledName": "$s13FBSDKShareKit7HashtagC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKHashtag", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "MediaLibrarySearching", + "printedName": "MediaLibrarySearching", + "children": [ + { + "kind": "Function", + "name": "fb_findImage", + "printedName": "fb_findImage(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.MediaLibrarySearching>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fb_getVideoURL", + "printedName": "fb_getVideoURL(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP14fb_getVideoURL3for10Foundation0I0VSo7PHAssetC_tKF", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP14fb_getVideoURL3for10Foundation0I0VSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.MediaLibrarySearching>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessageDialog", + "printedName": "MessageDialog", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)delegate", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)delegate", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setDelegate:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)shareContent", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)shareContent", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShareContent:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "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@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShouldFailOnDataError:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)init", + "mangledName": "$s13FBSDKShareKit13MessageDialogCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)initWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7content8delegateAcA14SharingContent_pSg_AA0G8Delegate_pSgtcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithContent:delegate:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(content:delegate:shareDialogConfiguration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ShareDialogConfigurationProtocol", + "printedName": "FBSDKShareKit.ShareDialogConfigurationProtocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessageDialogC7content8delegate05shareD13ConfigurationAcA14SharingContent_pSg_AA0I8Delegate_pSgAA05SharedH8Protocol_ptcfc", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7content8delegate05shareD13ConfigurationAcA14SharingContent_pSg_AA0I8Delegate_pSgAA05SharedH8Protocol_ptcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "dialog", + "printedName": "dialog(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(cm)dialogWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC6dialog7content8delegateAcA14SharingContent_pSg_AA0H8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "objc_name": "dialogWithContent:delegate:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(cm)showWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC4show7content8delegateAcA14SharingContent_pSg_AA0H8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "objc_name": "showWithContent:delegate:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7canShowSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7canShowSbvg", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)show", + "mangledName": "$s13FBSDKShareKit13MessageDialogC4showSbyF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "show", + "declAttributes": [ + "ObjC", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8validateyyKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleCompletion", + "printedName": "handleCompletion(dialogResults:response:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)handleCompletionWithDialogResults:response:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16handleCompletion13dialogResults8responseySDySSypG_So22FBSDKBridgeAPIResponseCtF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestFactory", + "printedName": "bridgeAPIRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestOpener", + "printedName": "bridgeAPIRequestOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUtility", + "printedName": "shareUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenWallet:bridgeAPIRequestFactory:bridgeAPIRequestOpener:errorFactory:eventLogger:internalUtility:shareUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWallet23bridgeAPIRequestFactory0jK6Opener05errorL011eventLogger15internalUtility05shareR0AESo011FBSDKAccessH9Providing_pXp_So011FBSDKBridgeK8Creating_pSo0vK7Opening_pSo010FBSDKErrorW0_pAA17ShareEventLogging_pSo27FBSDKAppAvailabilityChecker_So013FBSDKInternalR0pAA0zR8Protocol_AA0Z10ValidatingpXptcfc", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWallet23bridgeAPIRequestFactory0jK6Opener05errorL011eventLogger15internalUtility05shareR0AESo011FBSDKAccessH9Providing_pXp_So011FBSDKBridgeK8Creating_pSo0vK7Opening_pSo010FBSDKErrorW0_pAA17ShareEventLogging_pSo27FBSDKAppAvailabilityChecker_So013FBSDKInternalR0pAA0zR8Protocol_AA0Z10ValidatingpXptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog", + "mangledName": "$s13FBSDKShareKit13MessageDialogC", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "FBSDKMessageDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingDialog", + "printedName": "SharingDialog", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP" + }, + { + "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": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessengerIcon", + "printedName": "MessengerIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessengerIcon(im)pathWith:", + "mangledName": "$s13FBSDKShareKit13MessengerIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessengerIcon", + "printedName": "FBSDKShareKit.MessengerIcon", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessengerIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessengerIcon(im)init", + "mangledName": "$s13FBSDKShareKit13MessengerIconCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessengerIcon", + "mangledName": "$s13FBSDKShareKit13MessengerIconC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKMessengerIcon", + "declAttributes": [ + "Final", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "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": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV13dependentType025_F6BEFA4E8B98C73B76B4E918H6DF1851LLxmvp", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV13dependentType025_F6BEFA4E8B98C73B76B4E918H6DF1851LLxmvp", + "moduleName": "FBSDKShareKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKShareKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareAppEventsParameters", + "printedName": "ShareAppEventsParameters", + "children": [ + { + "kind": "TypeDecl", + "name": "DialogOutcomeValue", + "printedName": "DialogOutcomeValue", + "children": [ + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completed", + "printedName": "completed", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ContentTypeValue", + "printedName": "ContentTypeValue", + "children": [ + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "photo", + "printedName": "photo", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "camera", + "printedName": "camera", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareBridgeAPI", + "printedName": "ShareBridgeAPI", + "children": [ + { + "kind": "TypeDecl", + "name": "MethodName", + "printedName": "MethodName", + "children": [ + { + "kind": "Var", + "name": "camera", + "printedName": "camera", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CompletionGesture", + "printedName": "CompletionGesture", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cancelValue", + "printedName": "cancelValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PostIDKey", + "printedName": "PostIDKey", + "children": [ + { + "kind": "Var", + "name": "results", + "printedName": "results", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webParameters", + "printedName": "webParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareBridgeAPIRequestFactory", + "printedName": "ShareBridgeAPIRequestFactory", + "children": [ + { + "kind": "Function", + "name": "bridgeAPIRequest", + "printedName": "bridgeAPIRequest(with:scheme:methodName:parameters:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "FBSDKBridgeAPIProtocolType", + "printedName": "FBSDKCoreKit.FBSDKBridgeAPIProtocolType", + "usr": "c:@E@FBSDKBridgeAPIProtocolType" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC06bridgeE04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeE0_pSgSo0O15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryC06bridgeE04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeE0_pSgSo0O15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "moduleName": "FBSDKShareKit", + "objc_name": "bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareBridgeAPIRequestFactory", + "printedName": "FBSDKShareKit.ShareBridgeAPIRequestFactory", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryCACycfc", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryCACycfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryC", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareCameraEffectContent", + "printedName": "ShareCameraEffectContent", + "children": [ + { + "kind": "Var", + "name": "effectID", + "printedName": "effectID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "effectArguments", + "printedName": "effectArguments", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectArguments", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectArguments", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectArguments:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0CvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "effectTextures", + "printedName": "effectTextures", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectTextures", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectTextures", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectTextures:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0CvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)placeID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)placeID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)ref", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)ref", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)pageID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)pageID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "SetterAccess", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareCameraEffectContent", + "printedName": "FBSDKShareKit.ShareCameraEffectContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)init", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalUtility:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtility12errorFactoryAESo013FBSDKInternalJ0_p_So18FBSDKErrorCreating_ptcfc", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtility12errorFactoryAESo013FBSDKInternalJ0_p_So18FBSDKErrorCreating_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareCameraEffectContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareDialog", + "printedName": "ShareDialog", + "children": [ + { + "kind": "Var", + "name": "fromViewController", + "printedName": "fromViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "UIKit.UIViewController?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)fromViewController", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)fromViewController", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setFromViewController:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)mode", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)mode", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setMode:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC4modeAC4ModeOvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)delegate", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)delegate", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setDelegate:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)shareContent", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)shareContent", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShareContent:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "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@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShouldFailOnDataError:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "webDialog", + "printedName": "webDialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)webDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setWebDialog:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)initWithViewController:content:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC14viewController7content8delegateACSo06UIViewF0CSg_AA14SharingContent_pSgAA0J8Delegate_pSgtcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithViewController:content:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "dialog", + "printedName": "dialog(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(cm)dialogWithViewController:withContent:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC6dialog14viewController7content8delegateACSo06UIViewG0CSg_AA14SharingContent_pSgAA0K8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isOpen": true, + "objc_name": "dialogWithViewController:withContent:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(cm)showFromViewController:withContent:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4show14viewController7content8delegateACSo06UIViewG0CSg_AA14SharingContent_pSgAA0K8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isOpen": true, + "objc_name": "showFromViewController:withContent:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)init", + "mangledName": "$s13FBSDKShareKit11ShareDialogCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalURLOpener", + "printedName": "internalURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUtility", + "printedName": "shareUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestFactory", + "printedName": "bridgeAPIRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestOpener", + "printedName": "bridgeAPIRequestOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "socialComposeViewControllerFactory", + "printedName": "socialComposeViewControllerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "windowFinder", + "printedName": "windowFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mediaLibrarySearcher", + "printedName": "mediaLibrarySearcher", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 10, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalURLOpener:internalUtility:settings:shareUtility:bridgeAPIRequestFactory:bridgeAPIRequestOpener:socialComposeViewControllerFactory:windowFinder:errorFactory:eventLogger:mediaLibrarySearcher:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + }, + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpener0G7Utility8settings05shareI023bridgeAPIRequestFactory0lM6Opener027socialComposeViewControllerN012windowFinder05errorN011eventLogger20mediaLibrarySearcherAeA0C18InternalURLOpening_p_So013FBSDKInternalI0_p09FBSDKCoreB016SettingsProtocol_pAA0cI8Protocol_AA0C10ValidatingpXpSo011FBSDKBridgeM8Creating_pSo011FBSDKBridgeM7Opening_pAA06SocialqrsN8Protocol_pSo19_FBSDKWindowFinding_pSo18FBSDKErrorCreating_pAA0C12EventLogging_pAA05MediaZ9Searching_ptcfc", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpener0G7Utility8settings05shareI023bridgeAPIRequestFactory0lM6Opener027socialComposeViewControllerN012windowFinder05errorN011eventLogger20mediaLibrarySearcherAeA0C18InternalURLOpening_p_So013FBSDKInternalI0_p09FBSDKCoreB016SettingsProtocol_pAA0cI8Protocol_AA0C10ValidatingpXpSo011FBSDKBridgeM8Creating_pSo011FBSDKBridgeM7Opening_pAA06SocialqrsN8Protocol_pSo19_FBSDKWindowFinding_pSo18FBSDKErrorCreating_pAA0C12EventLogging_pAA05MediaZ9Searching_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit11ShareDialogC7canShowSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "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@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit11ShareDialogC7canShowSbvg", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)show", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4showSbyF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "show", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8validateyyKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialog", + "printedName": "webDialog(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog:didCompleteWithResults:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD0_22didCompleteWithResultsy09FBSDKCoreB004_WebD0C_SDySSypGtF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialog:didCompleteWithResults:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialog", + "printedName": "webDialog(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog:didFailWithError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD0_16didFailWithErrory09FBSDKCoreB004_WebD0C_s0I0_ptF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialog:didFailWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogDidCancel", + "printedName": "webDialogDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialogDidCancel:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD9DidCancelyy09FBSDKCoreB004_WebD0CF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialogDidCancel:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Mode", + "printedName": "Mode", + "children": [ + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO9automaticyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO9automaticyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "native", + "printedName": "native", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO6nativeyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO6nativeyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "shareSheet", + "printedName": "shareSheet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO10shareSheetyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO10shareSheetyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "browser", + "printedName": "browser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO7browseryA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO7browseryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "web", + "printedName": "web", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO3webyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO3webyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "feedBrowser", + "printedName": "feedBrowser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO11feedBrowseryA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11feedBrowseryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "feedWeb", + "printedName": "feedWeb", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO7feedWebyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO7feedWebyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareDialogMode", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "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": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "FBSDKShareDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingDialog", + "printedName": "SharingDialog", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP" + }, + { + "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": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareDialogConfigurationProtocol", + "printedName": "ShareDialogConfigurationProtocol", + "children": [ + { + "kind": "Function", + "name": "shouldUseNativeDialog", + "printedName": "shouldUseNativeDialog(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP015shouldUseNativeD003forD4NameSbSS_tF", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP015shouldUseNativeD003forD4NameSbSS_tF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareDialogConfigurationProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP29shouldUseSafariViewController03forD4NameSbSS_tF", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP29shouldUseSafariViewController03forD4NameSbSS_tF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareDialogConfigurationProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ShareErrorDomain", + "printedName": "ShareErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16ShareErrorDomainSSvp", + "mangledName": "$s13FBSDKShareKit16ShareErrorDomainSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "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:13FBSDKShareKit16ShareErrorDomainSSvg", + "mangledName": "$s13FBSDKShareKit16ShareErrorDomainSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ShareError", + "printedName": "ShareError", + "children": [ + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorReserved", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8reservedyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "openGraph", + "printedName": "openGraph", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorOpenGraph", + "mangledName": "$s13FBSDKShareKit10ShareErrorO9openGraphyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "dialogNotAvailable", + "printedName": "dialogNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorDialogNotAvailable", + "mangledName": "$s13FBSDKShareKit10ShareErrorO18dialogNotAvailableyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorUnknown", + "mangledName": "$s13FBSDKShareKit10ShareErrorO7unknownyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareErrorO8rawValueSivp", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueSivp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareErrorO8rawValueSivg", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueSivg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError", + "mangledName": "$s13FBSDKShareKit10ShareErrorO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareEventLogging", + "printedName": "ShareEventLogging", + "children": [ + { + "kind": "Function", + "name": "logInternalEvent", + "printedName": "logInternalEvent(_:parameters:isImplicitlyLogged:accessToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP011logInternalD0_10parameters18isImplicitlyLogged11accessTokenySo08FBSDKAppD4Namea_SDySo0nd9ParameterO0aypGSgSbSo011FBSDKAccessM0CSgtF", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP011logInternalD0_10parameters18isImplicitlyLogged11accessTokenySo08FBSDKAppD4Namea_SDySo0nd9ParameterO0aypGSgSbSo011FBSDKAccessM0CSgtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareInternalURLOpening", + "printedName": "ShareInternalURLOpening", + "children": [ + { + "kind": "Function", + "name": "canOpenURL", + "printedName": "canOpenURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening(im)canOpenURL:", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP10canOpenURLySb10Foundation0H0VF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareInternalURLOpening>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKShareInternalURLOpening", + "declAttributes": [ + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareLinkContent", + "printedName": "ShareLinkContent", + "children": [ + { + "kind": "Var", + "name": "quote", + "printedName": "quote", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)quote", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)quote", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setQuote:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC5quoteSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)placeID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)placeID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)ref", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)ref", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)pageID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)pageID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareLinkContent", + "printedName": "FBSDKShareKit.ShareLinkContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)init", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareLinkContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "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": "ShareMedia", + "printedName": "ShareMedia", + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKShareMedia", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareMediaContent", + "printedName": "ShareMediaContent", + "children": [ + { + "kind": "Var", + "name": "media", + "printedName": "media", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)media", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)media", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setMedia:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)ref", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)ref", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)init", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareMediaContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharePhoto", + "printedName": "SharePhoto", + "children": [ + { + "kind": "Var", + "name": "image", + "printedName": "image", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)image", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)image", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setImage:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)imageURL", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)imageURL", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setImageURL:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "photoAsset", + "printedName": "photoAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)photoAsset", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)photoAsset", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setPhotoAsset:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isUserGenerated", + "printedName": "isUserGenerated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)isUserGenerated", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)isUserGenerated", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvg", + "moduleName": "FBSDKShareKit", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setIsUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "caption", + "printedName": "caption", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)caption", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)caption", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setCaption:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC7captionSSSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(image:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithImage:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5image15isUserGeneratedACSo7UIImageC_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageURL:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithImageURL:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL15isUserGeneratedAC10Foundation0F0V_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(photoAsset:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithPhotoAsset:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAsset15isUserGeneratedACSo7PHAssetC_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(source:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6source15isUserGeneratedA2C6SourceOSg_Sbtcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6source15isUserGeneratedA2C6SourceOSg_Sbtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)init", + "mangledName": "$s13FBSDKShareKit10SharePhotoCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Source", + "printedName": "Source", + "children": [ + { + "kind": "Var", + "name": "image", + "printedName": "image", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (UIKit.UIImage) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(UIKit.UIImage) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5imageyAESo7UIImageCcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageyAESo7UIImageCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (Foundation.URL) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (Photos.PHAsset) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Photos.PHAsset) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetyAESo7PHAssetCcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetyAESo7PHAssetCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "image", + "printedName": "image", + "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:13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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:13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7UIImageCSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7UIImageCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "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:13FBSDKShareKit10SharePhotoC6SourceOyAESg10Foundation3URLVSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESg10Foundation3URLVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7PHAssetCSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7PHAssetCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto", + "mangledName": "$s13FBSDKShareKit10SharePhotoC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSharePhoto", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareMedia", + "printedName": "ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharePhotoContent", + "printedName": "SharePhotoContent", + "children": [ + { + "kind": "Var", + "name": "photos", + "printedName": "photos", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)photos", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)photos", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPhotos:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)ref", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)ref", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)init", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "imageFinder", + "printedName": "imageFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvp", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvg", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageFinder:validator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinder9validatorAeA21MediaLibrarySearching_p_AA0C10Validating_pXptcfc", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinder9validatorAeA21MediaLibrarySearching_p_AA0C10Validating_pXptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSharePhotoContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareUIApplication", + "printedName": "ShareUIApplication", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvpZ", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvgZ", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareUtilityProtocol", + "printedName": "ShareUtilityProtocol", + "children": [ + { + "kind": "Function", + "name": "feedShareDictionary", + "printedName": "feedShareDictionary(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAsyncWebPhotoContent", + "printedName": "buildAsyncWebPhotoContent(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any])", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP25buildAsyncWebPhotoContent_10completionyAA0ciJ0C_ySb_SSSDySSypGtctFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP25buildAsyncWebPhotoContent_10completionyAA0ciJ0C_ySb_SSSDySSypGtctFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWebShareBridgeComponents", + "printedName": "buildWebShareBridgeComponents(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP08buildWebC16BridgeComponents3forAA0gchI0VAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP08buildWebC16BridgeComponents3forAA0gchI0VAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hashtagString", + "printedName": "hashtagString(from:)", + "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": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bridgeParameters", + "printedName": "bridgeParameters(for:options:shouldFailOnDataError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentFlags", + "printedName": "getContentFlags(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP15getContentFlags3forAA0gH0VAA07SharingG0_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP15getContentFlags3forAA0gH0VAA07SharingG0_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shareMediaContentContainsPhotosAndVideos", + "printedName": "shareMediaContentContainsPhotosAndVideos(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP40shareMediaContentContainsPhotosAndVideosySbAA0cgH0CFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP40shareMediaContentContainsPhotosAndVideosySbAA0cgH0CFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "WebShareBridgeComponents", + "printedName": "WebShareBridgeComponents", + "children": [ + { + "kind": "Var", + "name": "methodName", + "printedName": "methodName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvp", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvg", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvs", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvM", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvp", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvg", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvs", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvM", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(methodName:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodName10parametersACSS_SDySSypGtcfc", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodName10parametersACSS_SDySSypGtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV", + "moduleName": "FBSDKShareKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareValidating", + "printedName": "ShareValidating", + "children": [ + { + "kind": "Function", + "name": "validateRequiredValue", + "printedName": "validateRequiredValue(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP21validateRequiredValue_5namedyyp_SStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP21validateRequiredValue_5namedyyp_SStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArgument", + "printedName": "validateArgument(_:named:in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP16validateArgument_5named2inyqd___SSShyqd__GtKSHRd__lFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP16validateArgument_5named2inyqd___SSShyqd__GtKSHRd__lFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.ShareValidating, τ_1_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArray", + "printedName": "validateArray(_:minCount:maxCount:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateNetworkURL", + "printedName": "validateNetworkURL(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateShareContent", + "printedName": "validateShareContent(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit15ShareValidatingP", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareVideo", + "printedName": "ShareVideo", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)data", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)data", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setData:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "videoAsset", + "printedName": "videoAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)videoAsset", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)videoAsset", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setVideoAsset:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "videoURL", + "printedName": "videoURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)videoURL", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)videoURL", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setVideoURL:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "previewPhoto", + "printedName": "previewPhoto", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)previewPhoto", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)previewPhoto", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setPreviewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithData:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data12previewPhotoAC10Foundation4DataV_AA0cG0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(videoAsset:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithVideoAsset:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAsset12previewPhotoACSo7PHAssetC_AA0cH0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(videoURL:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithVideoURL:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL12previewPhotoAC10Foundation0F0V_AA0cH0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(source:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6source12previewPhotoA2C6SourceOSg_AA0cG0CSgtcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6source12previewPhotoA2C6SourceOSg_AA0cG0CSgtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)init", + "mangledName": "$s13FBSDKShareKit10ShareVideoCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Source", + "printedName": "Source", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Foundation.Data) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4datayAE10Foundation4DataVcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4datayAE10Foundation4DataVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Foundation.URL) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Photos.PHAsset) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Photos.PHAsset) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetyAESo7PHAssetCcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetyAESo7PHAssetCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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:13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation4DataVSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation4DataVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "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:13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation3URLVSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation3URLVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceOyAESgSo7PHAssetCSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESgSo7PHAssetCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo", + "mangledName": "$s13FBSDKShareKit10ShareVideoC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareVideo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareMedia", + "printedName": "ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareVideoContent", + "printedName": "ShareVideoContent", + "children": [ + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)video", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)video", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setVideo:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC5videoAA0cD0CvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)ref", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)ref", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "SetterAccess", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideoContent", + "printedName": "FBSDKShareKit.ShareVideoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)init", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mediaLibrarySearcher", + "printedName": "mediaLibrarySearcher", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvp", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvg", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(validator:mediaLibrarySearcher:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validator20mediaLibrarySearcherAeA0C10Validating_pXp_AA05MediaJ9Searching_ptcfc", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validator20mediaLibrarySearcherAeA0C10Validating_pXp_AA05MediaJ9Searching_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareVideoContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Sharing", + "printedName": "Sharing", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)delegate", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "ReferenceOwnership", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)delegate", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)shareContent", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)shareContent", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit7SharingP8validateyyKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharing", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingButton", + "printedName": "SharingButton", + "children": [ + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingButton>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingButton>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingButton", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharingContent", + "printedName": "SharingContent", + "children": [ + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)placeID", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)placeID", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)ref", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)ref", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)pageID", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)pageID", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit14SharingContentP9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit14SharingContentP9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit14SharingContentP13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : FBSDKShareKit.SharingValidatable, τ_0_0 : ObjectiveC.NSObjectProtocol>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingContent", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingDelegate", + "printedName": "SharingDelegate", + "children": [ + { + "kind": "Function", + "name": "sharer", + "printedName": "sharer(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharer:didCompleteWithResults:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP6sharer_22didCompleteWithResultsyAA0C0_p_SDySSypGtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharer:didCompleteWithResults:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sharer", + "printedName": "sharer(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharer:didFailWithError:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP6sharer_16didFailWithErroryAA0C0_p_s0I0_ptF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharer:didFailWithError:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sharerDidCancel", + "printedName": "sharerDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharerDidCancel:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP15sharerDidCancelyyAA0C0_pF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharerDidCancel:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingDialog", + "printedName": "SharingDialog", + "children": [ + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit13SharingDialogP7canShowSbvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit13SharingDialogP7canShowSbvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDialog>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(im)show", + "mangledName": "$s13FBSDKShareKit13SharingDialogP4showSbyF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDialog>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "children": [ + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingValidatable>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingValidatable", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Social", + "printedName": "Social", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SocialComposeViewControllerFactory", + "printedName": "SocialComposeViewControllerFactory", + "children": [ + { + "kind": "Function", + "name": "makeSocialComposeViewController", + "printedName": "makeSocialComposeViewController()", + "children": [ + { + "kind": "TypeNominal", + "name": "SLComposeViewController", + "printedName": "Social.SLComposeViewController", + "usr": "c:objc(cs)SLComposeViewController" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC04makecdeF0So09SLComposeeF0CyF", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryC04makecdeF0So09SLComposeeF0CyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactory", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactory", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryCACycfc", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryCACycfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryC", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Social", + "printedName": "Social", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "SocialComposeViewControllerFactoryProtocol", + "children": [ + { + "kind": "Function", + "name": "makeSocialComposeViewController", + "printedName": "makeSocialComposeViewController()", + "children": [ + { + "kind": "TypeNominal", + "name": "SLComposeViewController", + "printedName": "Social.SLComposeViewController", + "usr": "c:objc(cs)SLComposeViewController" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP04makecdeF0So09SLComposeeF0CyF", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP04makecdeF0So09SLComposeeF0CyF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SocialComposeViewControllerFactoryProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "children": [ + { + "kind": "Var", + "name": "bundleForStrings", + "printedName": "bundleForStrings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.UserInterfaceStringProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "_ShareUtility", + "printedName": "_ShareUtility", + "children": [ + { + "kind": "Function", + "name": "validateRequiredValue", + "printedName": "validateRequiredValue(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO21validateRequiredValue_5namedyyp_SStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO21validateRequiredValue_5namedyyp_SStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArgument", + "printedName": "validateArgument(_:named:in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO16validateArgument_5named2inyx_SSShyxGtKSHRzlFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO16validateArgument_5named2inyx_SSShyxGtKSHRzlFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArray", + "printedName": "validateArray(_:minCount:maxCount:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateNetworkURL", + "printedName": "validateNetworkURL(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateShareContent", + "printedName": "validateShareContent(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "hasDefaultArg": true, + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWebShareBridgeComponents", + "printedName": "buildWebShareBridgeComponents(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO08buildWebC16BridgeComponents3forAA0fcgH0VAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO08buildWebC16BridgeComponents3forAA0fcgH0VAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAsyncWebPhotoContent", + "printedName": "buildAsyncWebPhotoContent(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any])", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO25buildAsyncWebPhotoContent_10completionyAA0chI0C_ySb_SSSDySSypGtctFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO25buildAsyncWebPhotoContent_10completionyAA0chI0C_ySb_SSSDySSypGtctFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "feedShareDictionary", + "printedName": "feedShareDictionary(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hashtagString", + "printedName": "hashtagString(from:)", + "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": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bridgeParameters", + "printedName": "bridgeParameters(for:options:shouldFailOnDataError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "hasDefaultArg": true, + "usr": "c:@E@FBSDKShareBridgeOptions" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentFlags", + "printedName": "getContentFlags(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO15getContentFlags3forAA0fG0VAA07SharingF0_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO15getContentFlags3forAA0fG0VAA07SharingF0_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shareMediaContentContainsPhotosAndVideos", + "printedName": "shareMediaContentContainsPhotosAndVideos(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO40shareMediaContentContainsPhotosAndVideosySbAA0cfG0CFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO40shareMediaContentContainsPhotosAndVideosySbAA0cfG0CFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit13_ShareUtilityO", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareValidating", + "printedName": "ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP" + }, + { + "kind": "Conformance", + "name": "ShareUtilityProtocol", + "printedName": "ShareUtilityProtocol", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PHImageManager", + "printedName": "PHImageManager", + "children": [ + { + "kind": "TypeDecl", + "name": "MediaLibrarySearchError", + "printedName": "MediaLibrarySearchError", + "children": [ + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Var", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvp", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Accessor", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvg", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearchError", + "printedName": "Photos.PHImageManager.MediaLibrarySearchError", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Constructor", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetAESo7PHAssetC_tcfc", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetAESo7PHAssetC_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "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": "fb_findImage", + "printedName": "fb_findImage(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fb_getVideoURL", + "printedName": "fb_getVideoURL(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE14fb_getVideoURL3for10Foundation0H0VSo7PHAssetC_tKF", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE14fb_getVideoURL3for10Foundation0H0VSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)PHImageManager", + "moduleName": "Photos", + "isOpen": true, + "intro_iOS": "8", + "objc_name": "PHImageManager", + "declAttributes": [ + "Available", + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "MediaLibrarySearching", + "printedName": "MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "messengerShareDialogShow", + "printedName": "messengerShareDialogShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messengerShareDialogResult", + "printedName": "messengerShareDialogResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sendButtonImpression", + "printedName": "sendButtonImpression", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sendButtonDidTap", + "printedName": "sendButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareButtonImpression", + "printedName": "shareButtonImpression", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareButtonDidTap", + "printedName": "shareButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareDialogShow", + "printedName": "shareDialogShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareDialogResult", + "printedName": "shareDialogResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName", + "moduleName": "FBSDKCoreKit", + "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": "ParameterName", + "printedName": "ParameterName", + "children": [ + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "outcome", + "printedName": "outcome", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentType", + "printedName": "shareContentType", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentPageID", + "printedName": "shareContentPageID", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentUUID", + "printedName": "shareContentUUID", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName", + "moduleName": "FBSDKCoreKit", + "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": "ShareDialogConfiguration", + "printedName": "ShareDialogConfiguration", + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV", + "moduleName": "FBSDKCoreKit", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ShareDialogConfigurationProtocol", + "printedName": "ShareDialogConfigurationProtocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP" + }, + { + "kind": "Conformance", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEvents", + "printedName": "AppEvents", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAppEvents", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAppEvents", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ShareEventLogging", + "printedName": "ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIApplication", + "printedName": "UIApplication", + "declKind": "Class", + "usr": "c:objc(cs)UIApplication", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIApplication", + "declAttributes": [ + "Available", + "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": "Conformance", + "name": "ShareInternalURLOpening", + "printedName": "ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InternalUtility", + "printedName": "InternalUtility", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKInternalUtility", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKInternalUtility", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "StringLiteral", + "offset": 338, + "length": 16, + "value": "\"FBSDKShareKit.AppInviteContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 367, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 401, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 435, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/Hashtag.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 7, + "value": "\"FBSDKShareKit.Hashtag\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/MessageDialog.swift", + "kind": "BooleanLiteral", + "offset": 1367, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/MessageDialog.swift", + "kind": "BooleanLiteral", + "offset": 1508, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 32, + "value": "\"fb_messenger_dialog_share_show\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 432, + "length": 34, + "value": "\"fb_messenger_dialog_share_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 544, + "length": 27, + "value": "\"fb_send_button_impression\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 620, + "length": 24, + "value": "\"fb_send_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 724, + "length": 28, + "value": "\"fb_share_button_impression\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 802, + "length": 25, + "value": "\"fb_share_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 901, + "length": 22, + "value": "\"fb_dialog_share_show\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 973, + "length": 24, + "value": "\"fb_dialog_share_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 33, + "value": "\"fb_dialog_outcome_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 402, + "length": 19, + "value": "\"fb_dialog_outcome\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 30, + "value": "\"fb_dialog_share_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 555, + "length": 16, + "value": "\"fb_dialog_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 631, + "length": 33, + "value": "\"fb_dialog_share_content_page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 30, + "value": "\"fb_dialog_share_content_uuid\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 844, + "length": 11, + "value": "\"Cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 883, + "length": 11, + "value": "\"Completed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 919, + "length": 8, + "value": "\"Failed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 983, + "length": 8, + "value": "\"Status\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1015, + "length": 7, + "value": "\"Photo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1046, + "length": 7, + "value": "\"Video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1078, + "length": 8, + "value": "\"Camera\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1112, + "length": 9, + "value": "\"Unknown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 296, + "length": 8, + "value": "\"camera\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 328, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 389, + "length": 19, + "value": "\"completionGesture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 8, + "value": "\"cancel\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 496, + "length": 8, + "value": "\"postId\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 9, + "value": "\"post_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ShareCameraEffectContent.swift", + "kind": "StringLiteral", + "offset": 523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 6, + "value": "\"feed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 741, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 856, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 1817, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 400, + "length": 11, + "value": "\"FBSDKShareKit.ShareDialog\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "Array", + "offset": 22128, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 29908, + "length": 8, + "value": "\"app_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 29976, + "length": 10, + "value": "\"hashtags\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 30047, + "length": 8, + "value": "\"quotes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 772, + "length": 10, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 7, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 967, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 1053, + "length": 7, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 772, + "length": 10, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 7, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 967, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 1053, + "length": 7, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 24, + "value": "\"com.facebook.sdk.share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 687, + "length": 9, + "value": "201" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 845, + "length": 18, + "value": "202" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 7, + "value": "203" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 687, + "length": 9, + "value": "201" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 845, + "length": 18, + "value": "202" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 7, + "value": "203" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhoto.swift", + "kind": "BooleanLiteral", + "offset": 3009, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhoto.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"FBSDKShareKit.SharePhoto\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhotoContent.swift", + "kind": "IntegerLiteral", + "offset": 3474, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhotoContent.swift", + "kind": "IntegerLiteral", + "offset": 3480, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ShareVideo.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 10, + "value": "\"FBSDKShareKit.ShareVideo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/SocialComposeViewControllerFactory.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 27, + "value": "\"com.apple.social.facebook\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/_ShareUtility.swift", + "kind": "Array", + "offset": 2340, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/_ShareUtility.swift", + "kind": "Array", + "offset": 5265, + "length": 2, + "value": "[]" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface new file mode 100644 index 00000000..55adf6be --- /dev/null +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface @@ -0,0 +1,368 @@ +// 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-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import FBSDKCoreKit +import FBSDKCoreKit_Basics +@_exported import FBSDKShareKit +import Foundation +import Photos +import Social +import Swift +import UIKit +import _Concurrency +import _StringProcessing +@objcMembers @objc(FBSDKAppInviteContent) final public class AppInviteContent : ObjectiveC.NSObject { + @objc(FBSDKAppInviteDestination) public enum Destination : Swift.Int { + case facebook + case messenger + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } + } + @objc final public var appInvitePreviewImageURL: Foundation.URL? + @objc final public var appLinkURL: Foundation.URL + @objc final public var promotionCode: Swift.String? + @objc final public var promotionText: Swift.String? + @objc final public var destination: FBSDKShareKit.AppInviteContent.Destination + @objc(initWithAppLinkURL:) public init(appLinkURL: Foundation.URL) + @objc deinit +} +extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { + @objc final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCameraEffectArguments) final public class CameraEffectArguments : ObjectiveC.NSObject { + @objc(setString:forKey:) final public func set(_ string: Swift.String?, forKey key: Swift.String) + @objc final public func string(forKey key: Swift.String) -> Swift.String? + @objc(setArray:forKey:) final public func set(_ array: [Swift.String]?, forKey key: Swift.String) + @objc final public func array(forKey key: Swift.String) -> [Swift.String]? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCameraEffectTextures) final public class CameraEffectTextures : ObjectiveC.NSObject { + @objc(setImage:forKey:) final public func set(_ image: UIKit.UIImage?, forKey key: Swift.String) + @objc(imageForKey:) final public func image(forKey key: Swift.String) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSendButton) @_Concurrency.MainActor(unsafe) final public class FBSendButton : FBSDKCoreKit.FBButton, FBSDKShareKit.SharingButton, FBSDKCoreKit.FBButtonImpressionLogging { + @objc @_Concurrency.MainActor(unsafe) final public var dialog: FBSDKShareKit.MessageDialog? + @_Concurrency.MainActor(unsafe) @objc final public var shareContent: FBSDKShareKit.SharingContent? { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc final public var analyticsParameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]? { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc final public var impressionTrackingEventName: FBSDKCoreKit.AppEvents.Name { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc final public var impressionTrackingIdentifier: Swift.String { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public func configureButton() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareButton) @_Concurrency.MainActor(unsafe) final public class FBShareButton : FBSDKCoreKit.FBButton, FBSDKShareKit.SharingButton { + @_Concurrency.MainActor(unsafe) @objc final public var shareContent: FBSDKShareKit.SharingContent? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var analyticsParameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]? { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public var impressionTrackingEventName: FBSDKCoreKit.AppEvents.Name { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public var impressionTrackingIdentifier: Swift.String { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public func configureButton() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objcMembers @objc(FBSDKHashtag) final public class Hashtag : ObjectiveC.NSObject { + @objc final public var stringRepresentation: Swift.String + @objc(initWithString:) public init(_ string: Swift.String) + @objc override final public var description: Swift.String { + @objc get + } + @objc final public var isValid: Swift.Bool { + @objc get + } + @objc override final public var hash: Swift.Int { + @objc get + } + @objc override final public func isEqual(_ object: Any?) -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKMessageDialog) public class MessageDialog : ObjectiveC.NSObject, FBSDKShareKit.SharingDialog { + @objc weak public var delegate: FBSDKShareKit.SharingDelegate? + @objc public var shareContent: FBSDKShareKit.SharingContent? + @objc public var shouldFailOnDataError: Swift.Bool + @objc(initWithContent:delegate:) convenience public init(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) + @objc(dialogWithContent:delegate:) public static func dialog(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.MessageDialog + @objc(showWithContent:delegate:) public static func show(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.MessageDialog + @objc public var canShow: Swift.Bool { + @objc get + } + @discardableResult + @objc public func show() -> Swift.Bool + @objc public func validate() throws + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareCameraEffectContent) final public class ShareCameraEffectContent : ObjectiveC.NSObject { + @objc final public var effectID: Swift.String + @objc final public var effectArguments: FBSDKShareKit.CameraEffectArguments + @objc final public var effectTextures: FBSDKShareKit.CameraEffectTextures + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public var shareUUID: Swift.String? { + get + } + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareCameraEffectContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objcMembers @objc(FBSDKShareDialog) public class ShareDialog : ObjectiveC.NSObject, FBSDKShareKit.SharingDialog { + @objc weak public var fromViewController: UIKit.UIViewController? + @objc public var mode: FBSDKShareKit.ShareDialog.Mode + @objc weak public var delegate: FBSDKShareKit.SharingDelegate? + @objc public var shareContent: FBSDKShareKit.SharingContent? + @objc public var shouldFailOnDataError: Swift.Bool + @objc(initWithViewController:content:delegate:) public init(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) + @objc deinit + @objc(dialogWithViewController:withContent:delegate:) public class func dialog(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.ShareDialog + @discardableResult + @objc(showFromViewController:withContent:delegate:) public class func show(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.ShareDialog +} +extension FBSDKShareKit.ShareDialog { + @objc dynamic public var canShow: Swift.Bool { + @objc get + } + @discardableResult + @objc dynamic public func show() -> Swift.Bool + @objc dynamic public func validate() throws +} +extension FBSDKShareKit.ShareDialog : FBSDKCoreKit.WebDialogDelegate { + @objc dynamic public func webDialog(_ webDialog: FBSDKCoreKit._WebDialog, didCompleteWithResults results: [Swift.String : Any]) + @objc dynamic public func webDialog(_ webDialog: FBSDKCoreKit._WebDialog, didFailWithError error: Swift.Error) + @objc dynamic public func webDialogDidCancel(_ webDialog: FBSDKCoreKit._WebDialog) +} +extension FBSDKShareKit.ShareDialog { + @objc(FBSDKShareDialogMode) public enum Mode : Swift.UInt, Swift.CustomStringConvertible { + case automatic + case native + case shareSheet + case browser + case web + case feedBrowser + case feedWeb + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } +} +public let ShareErrorDomain: Swift.String +@objc(FBSDKShareError) public enum ShareError : Swift.Int { + case reserved = 200 + case openGraph + case dialogNotAvailable + case unknown + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareLinkContent) final public class ShareLinkContent : ObjectiveC.NSObject { + @objc final public var quote: Swift.String? + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objc(FBSDKShareMedia) public protocol ShareMedia { +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareMediaContent) final public class ShareMediaContent : ObjectiveC.NSObject { + @objc final public var media: [FBSDKShareKit.ShareMedia] + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKSharePhoto) final public class SharePhoto : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { + @objc final public var image: UIKit.UIImage? { + @objc get + @objc set + } + @objc final public var imageURL: Foundation.URL? { + @objc get + @objc set + } + @objc final public var photoAsset: Photos.PHAsset? { + @objc get + @objc set + } + @objc final public var isUserGenerated: Swift.Bool + @objc final public var caption: Swift.String? + @objc convenience public init(image: UIKit.UIImage, isUserGenerated: Swift.Bool) + @objc convenience public init(imageURL: Foundation.URL, isUserGenerated: Swift.Bool) + @objc convenience public init(photoAsset: Photos.PHAsset, isUserGenerated: Swift.Bool) + @objc deinit +} +extension FBSDKShareKit.SharePhoto : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSharePhotoContent) final public class SharePhotoContent : ObjectiveC.NSObject { + @objc final public var photos: [FBSDKShareKit.SharePhoto] + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKShareVideo) final public class ShareVideo : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { + @objc final public var data: Foundation.Data? { + @objc get + @objc set + } + @objc final public var videoAsset: Photos.PHAsset? { + @objc get + @objc set + } + @objc final public var videoURL: Foundation.URL? { + @objc get + @objc set + } + @objc final public var previewPhoto: FBSDKShareKit.SharePhoto? + @objc convenience public init(data: Foundation.Data, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc convenience public init(videoAsset: Photos.PHAsset, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc convenience public init(videoURL: Foundation.URL, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc deinit +} +extension FBSDKShareKit.ShareVideo : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareVideoContent) final public class ShareVideoContent : ObjectiveC.NSObject { + @objc final public var video: FBSDKShareKit.ShareVideo + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public var shareUUID: Swift.String? { + get + } + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objc(FBSDKSharing) public protocol Sharing { + @objc weak var delegate: FBSDKShareKit.SharingDelegate? { get set } + @objc var shareContent: FBSDKShareKit.SharingContent? { get set } + @objc var shouldFailOnDataError: Swift.Bool { get set } + @objc(validateWithError:) func validate() throws +} +@objc(FBSDKSharingButton) public protocol SharingButton { + @objc var shareContent: FBSDKShareKit.SharingContent? { get set } +} +@objc(FBSDKSharingContent) public protocol SharingContent : FBSDKShareKit.SharingValidatable, ObjectiveC.NSObjectProtocol { + @objc var contentURL: Foundation.URL? { get set } + @objc var hashtag: FBSDKShareKit.Hashtag? { get set } + @objc var peopleIDs: [Swift.String] { get set } + @objc var placeID: Swift.String? { get set } + @objc var ref: Swift.String? { get set } + @objc var pageID: Swift.String? { get set } + @objc var shareUUID: Swift.String? { get } + @objc(addParameters:bridgeOptions:) func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +@objc(FBSDKSharingDelegate) public protocol SharingDelegate { + @objc(sharer:didCompleteWithResults:) func sharer(_ sharer: FBSDKShareKit.Sharing, didCompleteWithResults results: [Swift.String : Any]) + @objc(sharer:didFailWithError:) func sharer(_ sharer: FBSDKShareKit.Sharing, didFailWithError error: Swift.Error) + @objc(sharerDidCancel:) func sharerDidCancel(_ sharer: FBSDKShareKit.Sharing) +} +@objc(FBSDKSharingDialog) public protocol SharingDialog : FBSDKShareKit.Sharing { + @objc var canShow: Swift.Bool { get } + @objc @discardableResult + func show() -> Swift.Bool +} +@objc(FBSDKSharingValidatable) public protocol SharingValidatable { + @objc(validateWithOptions:error:) func validate(options: FBSDKShareKit.ShareBridgeOptions) throws +} +public enum _ShareUtility { +} +extension FBSDKShareKit._ShareUtility { + public static func validateRequiredValue(_ value: Any, named name: Swift.String) throws + public static func validateArgument(_ value: Argument, named name: Swift.String, in possibleValues: Swift.Set) throws where Argument : Swift.Hashable +} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.Equatable {} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.Hashable {} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.RawRepresentable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.Equatable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.Hashable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.RawRepresentable {} +extension FBSDKShareKit.ShareError : Swift.Equatable {} +extension FBSDKShareKit.ShareError : Swift.Hashable {} +extension FBSDKShareKit.ShareError : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc similarity index 99% rename from ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc rename to ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc index e489c2db..4a690b14 100644 Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.swiftdoc differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface similarity index 98% rename from ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface rename to ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface index 0a81a3c2..55adf6be 100644 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-macabi.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import FBSDKCoreKit import FBSDKCoreKit_Basics @_exported import FBSDKShareKit @@ -10,6 +11,7 @@ import Social import Swift import UIKit import _Concurrency +import _StringProcessing @objcMembers @objc(FBSDKAppInviteContent) final public class AppInviteContent : ObjectiveC.NSObject { @objc(FBSDKAppInviteDestination) public enum Destination : Swift.Int { case facebook @@ -61,10 +63,10 @@ extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { @objc get } @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { - @_Concurrency.MainActor(unsafe) @objc get + @objc get } @objc @_Concurrency.MainActor(unsafe) final public func configureButton() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } @@ -83,10 +85,10 @@ extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { @objc get } @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { - @_Concurrency.MainActor(unsafe) @objc get + @objc get } @objc @_Concurrency.MainActor(unsafe) final public func configureButton() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } @@ -323,7 +325,6 @@ extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { @objc var shouldFailOnDataError: Swift.Bool { get set } @objc(validateWithError:) func validate() throws } -@available(tvOS, unavailable) @objc(FBSDKSharingButton) public protocol SharingButton { @objc var shareContent: FBSDKShareKit.SharingContent? { get set } } diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.abi.json b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.abi.json new file mode 100644 index 00000000..edee5509 --- /dev/null +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.abi.json @@ -0,0 +1,29048 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "AppInviteContent", + "printedName": "AppInviteContent", + "children": [ + { + "kind": "TypeDecl", + "name": "Destination", + "printedName": "Destination", + "children": [ + { + "kind": "Var", + "name": "facebook", + "printedName": "facebook", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.AppInviteContent.Destination.Type) -> FBSDKShareKit.AppInviteContent.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.AppInviteContent.Destination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8facebookyA2EmF", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8facebookyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "messenger", + "printedName": "messenger", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.AppInviteContent.Destination.Type) -> FBSDKShareKit.AppInviteContent.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.AppInviteContent.Destination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO9messengeryA2EmF", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO9messengeryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.Destination?", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueAESgSi_tcfc", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueAESgSi_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKAppInviteDestination", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Var", + "name": "appInvitePreviewImageURL", + "printedName": "appInvitePreviewImageURL", + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)appInvitePreviewImageURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)appInvitePreviewImageURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setAppInvitePreviewImageURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkURL", + "printedName": "appLinkURL", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)appLinkURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)appLinkURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setAppLinkURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0VvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0VvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "promotionCode", + "printedName": "promotionCode", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)promotionCode", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)promotionCode", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setPromotionCode:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "promotionText", + "printedName": "promotionText", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)promotionText", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)promotionText", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setPromotionText:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "destination", + "printedName": "destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)destination", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)destination", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setDestination:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLinkURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppInviteContent", + "printedName": "FBSDKShareKit.AppInviteContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)initWithAppLinkURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURLAC10Foundation0H0V_tcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithAppLinkURL:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppInviteContent", + "printedName": "FBSDKShareKit.AppInviteContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)init", + "mangledName": "$s13FBSDKShareKit16AppInviteContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvs", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(validator:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validator12errorFactoryAeA15ShareValidating_pXp_So18FBSDKErrorCreating_ptcfc", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validator12errorFactoryAeA15ShareValidating_pXp_So18FBSDKErrorCreating_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKAppInviteContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "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": "CameraEffectArguments", + "printedName": "CameraEffectArguments", + "children": [ + { + "kind": "Var", + "name": "arguments", + "printedName": "arguments", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(py)arguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC9argumentsSDySSypGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)arguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC9argumentsSDySSypGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)setString:forKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC3set_6forKeyySSSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setString:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "string", + "printedName": "string(forKey:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)stringForKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC6string6forKeySSSgSS_tF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)setArray:forKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC3set_6forKeyySaySSGSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setArray:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)arrayForKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC5array6forKeySaySSGSgSS_tF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)init", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKCameraEffectArguments", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CameraEffectTextures", + "printedName": "CameraEffectTextures", + "children": [ + { + "kind": "Var", + "name": "textures", + "printedName": "textures", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : UIKit.UIImage]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(py)textures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC8texturesSDySSSo7UIImageCGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : UIKit.UIImage]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)textures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC8texturesSDySSSo7UIImageCGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)setImage:forKey:", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC3set_6forKeyySo7UIImageCSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setImage:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)imageForKey:", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC5image6forKeySo7UIImageCSgSS_tF", + "moduleName": "FBSDKShareKit", + "objc_name": "imageForKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)init", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKCameraEffectTextures", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ContentFlags", + "printedName": "ContentFlags", + "children": [ + { + "kind": "Var", + "name": "containsMedia", + "printedName": "containsMedia", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV13containsMediaSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "containsPhotos", + "printedName": "containsPhotos", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "containsVideos", + "printedName": "containsVideos", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV14containsVideosSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(containsMedia:containsPhotos:containsVideos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMedia0E6Photos0E6VideosACSb_S2btcfc", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMedia0E6Photos0E6VideosACSb_S2btcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "containsAllTypes", + "printedName": "containsAllTypes", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "|=", + "printedName": "|=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "paramValueOwnership": "InOut", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit12ContentFlagsV2oeoiyyACz_ACtFZ", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV2oeoiyyACz_ACtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit12ContentFlagsV", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV", + "moduleName": "FBSDKShareKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKShareKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKShareKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "FBSendButton", + "printedName": "FBSendButton", + "children": [ + { + "kind": "Var", + "name": "dialog", + "printedName": "dialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)dialog", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)dialog", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)setDialog:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "objc_name": "setShareContent:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "analyticsParameters", + "printedName": "analyticsParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)analyticsParameters", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "analyticsParameters", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)analyticsParameters", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "analyticsParameters", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingEventName", + "printedName": "impressionTrackingEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avp", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingEventName", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avg", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingEventName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingIdentifier", + "printedName": "impressionTrackingIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC28impressionTrackingIdentifierSSvp", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingIdentifier", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC28impressionTrackingIdentifierSSvg", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingIdentifier", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isImplicitlyDisabled", + "printedName": "isImplicitlyDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)implicitlyDisabled", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC20isImplicitlyDisabledSbvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "implicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)isImplicitlyDisabled", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC20isImplicitlyDisabledSbvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isImplicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configureButton", + "printedName": "configureButton()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)configureButton", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC09configureD0yyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "share", + "printedName": "share()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)share", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5shareyyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "IBAction", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSendButton", + "printedName": "FBSDKShareKit.FBSendButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)initWithFrame:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSendButton", + "printedName": "FBSDKShareKit.FBSendButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)initWithCoder:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilityAESo013FBSDKInternalH0_p_tcfc", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilityAESo013FBSDKInternalH0_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSendButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingButton", + "printedName": "SharingButton", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "FBShareButton", + "printedName": "FBShareButton", + "children": [ + { + "kind": "Var", + "name": "dialog", + "printedName": "dialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)dialog", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)dialog", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)setDialog:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "objc_name": "setShareContent:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "analyticsParameters", + "printedName": "analyticsParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)analyticsParameters", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)analyticsParameters", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingEventName", + "printedName": "impressionTrackingEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingIdentifier", + "printedName": "impressionTrackingIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC28impressionTrackingIdentifierSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC28impressionTrackingIdentifierSSvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isImplicitlyDisabled", + "printedName": "isImplicitlyDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)implicitlyDisabled", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC20isImplicitlyDisabledSbvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "implicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)isImplicitlyDisabled", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC20isImplicitlyDisabledSbvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isImplicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configureButton", + "printedName": "configureButton()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)configureButton", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC09configureD0yyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "share", + "printedName": "share()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)share", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5shareyyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "IBAction", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBShareButton", + "printedName": "FBSDKShareKit.FBShareButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)initWithFrame:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBShareButton", + "printedName": "FBSDKShareKit.FBShareButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)initWithCoder:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvs", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAeA28UserInterfaceStringProviding_p_tcfc", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAeA28UserInterfaceStringProviding_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingButton", + "printedName": "SharingButton", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP" + }, + { + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Hashtag", + "printedName": "Hashtag", + "children": [ + { + "kind": "Var", + "name": "stringRepresentation", + "printedName": "stringRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)stringRepresentation", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)stringRepresentation", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)setStringRepresentation:", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit7HashtagC20stringRepresentationSSvM", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)initWithString:", + "mangledName": "$s13FBSDKShareKit7HashtagCyACSScfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithString:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)description", + "mangledName": "$s13FBSDKShareKit7HashtagC11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)description", + "mangledName": "$s13FBSDKShareKit7HashtagC11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)isValid", + "mangledName": "$s13FBSDKShareKit7HashtagC7isValidSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)isValid", + "mangledName": "$s13FBSDKShareKit7HashtagC7isValidSbvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)hash", + "mangledName": "$s13FBSDKShareKit7HashtagC4hashSivp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)hash", + "mangledName": "$s13FBSDKShareKit7HashtagC4hashSivg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)isEqual:", + "mangledName": "$s13FBSDKShareKit7HashtagC7isEqualySbypSgF", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)init", + "mangledName": "$s13FBSDKShareKit7HashtagCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag", + "mangledName": "$s13FBSDKShareKit7HashtagC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKHashtag", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "MediaLibrarySearching", + "printedName": "MediaLibrarySearching", + "children": [ + { + "kind": "Function", + "name": "fb_findImage", + "printedName": "fb_findImage(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.MediaLibrarySearching>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fb_getVideoURL", + "printedName": "fb_getVideoURL(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP14fb_getVideoURL3for10Foundation0I0VSo7PHAssetC_tKF", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP14fb_getVideoURL3for10Foundation0I0VSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.MediaLibrarySearching>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessageDialog", + "printedName": "MessageDialog", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)delegate", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)delegate", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setDelegate:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)shareContent", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)shareContent", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShareContent:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "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@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShouldFailOnDataError:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)init", + "mangledName": "$s13FBSDKShareKit13MessageDialogCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)initWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7content8delegateAcA14SharingContent_pSg_AA0G8Delegate_pSgtcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithContent:delegate:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(content:delegate:shareDialogConfiguration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ShareDialogConfigurationProtocol", + "printedName": "FBSDKShareKit.ShareDialogConfigurationProtocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessageDialogC7content8delegate05shareD13ConfigurationAcA14SharingContent_pSg_AA0I8Delegate_pSgAA05SharedH8Protocol_ptcfc", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7content8delegate05shareD13ConfigurationAcA14SharingContent_pSg_AA0I8Delegate_pSgAA05SharedH8Protocol_ptcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "dialog", + "printedName": "dialog(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(cm)dialogWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC6dialog7content8delegateAcA14SharingContent_pSg_AA0H8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "objc_name": "dialogWithContent:delegate:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(cm)showWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC4show7content8delegateAcA14SharingContent_pSg_AA0H8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "objc_name": "showWithContent:delegate:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7canShowSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7canShowSbvg", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)show", + "mangledName": "$s13FBSDKShareKit13MessageDialogC4showSbyF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "show", + "declAttributes": [ + "ObjC", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8validateyyKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleCompletion", + "printedName": "handleCompletion(dialogResults:response:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)handleCompletionWithDialogResults:response:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16handleCompletion13dialogResults8responseySDySSypG_So22FBSDKBridgeAPIResponseCtF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestFactory", + "printedName": "bridgeAPIRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestOpener", + "printedName": "bridgeAPIRequestOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUtility", + "printedName": "shareUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenWallet:bridgeAPIRequestFactory:bridgeAPIRequestOpener:errorFactory:eventLogger:internalUtility:shareUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWallet23bridgeAPIRequestFactory0jK6Opener05errorL011eventLogger15internalUtility05shareR0AESo011FBSDKAccessH9Providing_pXp_So011FBSDKBridgeK8Creating_pSo0vK7Opening_pSo010FBSDKErrorW0_pAA17ShareEventLogging_pSo27FBSDKAppAvailabilityChecker_So013FBSDKInternalR0pAA0zR8Protocol_AA0Z10ValidatingpXptcfc", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWallet23bridgeAPIRequestFactory0jK6Opener05errorL011eventLogger15internalUtility05shareR0AESo011FBSDKAccessH9Providing_pXp_So011FBSDKBridgeK8Creating_pSo0vK7Opening_pSo010FBSDKErrorW0_pAA17ShareEventLogging_pSo27FBSDKAppAvailabilityChecker_So013FBSDKInternalR0pAA0zR8Protocol_AA0Z10ValidatingpXptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog", + "mangledName": "$s13FBSDKShareKit13MessageDialogC", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "FBSDKMessageDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingDialog", + "printedName": "SharingDialog", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP" + }, + { + "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": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessengerIcon", + "printedName": "MessengerIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessengerIcon(im)pathWith:", + "mangledName": "$s13FBSDKShareKit13MessengerIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessengerIcon", + "printedName": "FBSDKShareKit.MessengerIcon", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessengerIcon" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessengerIcon(im)init", + "mangledName": "$s13FBSDKShareKit13MessengerIconCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessengerIcon", + "mangledName": "$s13FBSDKShareKit13MessengerIconC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKMessengerIcon", + "declAttributes": [ + "Final", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "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": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV13dependentType025_F6BEFA4E8B98C73B76B4E918H6DF1851LLxmvp", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV13dependentType025_F6BEFA4E8B98C73B76B4E918H6DF1851LLxmvp", + "moduleName": "FBSDKShareKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKShareKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareAppEventsParameters", + "printedName": "ShareAppEventsParameters", + "children": [ + { + "kind": "TypeDecl", + "name": "DialogOutcomeValue", + "printedName": "DialogOutcomeValue", + "children": [ + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completed", + "printedName": "completed", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ContentTypeValue", + "printedName": "ContentTypeValue", + "children": [ + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "photo", + "printedName": "photo", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "camera", + "printedName": "camera", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareBridgeAPI", + "printedName": "ShareBridgeAPI", + "children": [ + { + "kind": "TypeDecl", + "name": "MethodName", + "printedName": "MethodName", + "children": [ + { + "kind": "Var", + "name": "camera", + "printedName": "camera", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CompletionGesture", + "printedName": "CompletionGesture", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cancelValue", + "printedName": "cancelValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PostIDKey", + "printedName": "PostIDKey", + "children": [ + { + "kind": "Var", + "name": "results", + "printedName": "results", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webParameters", + "printedName": "webParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareBridgeAPIRequestFactory", + "printedName": "ShareBridgeAPIRequestFactory", + "children": [ + { + "kind": "Function", + "name": "bridgeAPIRequest", + "printedName": "bridgeAPIRequest(with:scheme:methodName:parameters:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "FBSDKBridgeAPIProtocolType", + "printedName": "FBSDKCoreKit.FBSDKBridgeAPIProtocolType", + "usr": "c:@E@FBSDKBridgeAPIProtocolType" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC06bridgeE04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeE0_pSgSo0O15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryC06bridgeE04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeE0_pSgSo0O15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "moduleName": "FBSDKShareKit", + "objc_name": "bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareBridgeAPIRequestFactory", + "printedName": "FBSDKShareKit.ShareBridgeAPIRequestFactory", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryCACycfc", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryCACycfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryC", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareCameraEffectContent", + "printedName": "ShareCameraEffectContent", + "children": [ + { + "kind": "Var", + "name": "effectID", + "printedName": "effectID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "effectArguments", + "printedName": "effectArguments", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectArguments", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectArguments", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectArguments:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0CvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "effectTextures", + "printedName": "effectTextures", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectTextures", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectTextures", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectTextures:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0CvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)placeID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)placeID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)ref", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)ref", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)pageID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)pageID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "SetterAccess", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareCameraEffectContent", + "printedName": "FBSDKShareKit.ShareCameraEffectContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)init", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalUtility:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtility12errorFactoryAESo013FBSDKInternalJ0_p_So18FBSDKErrorCreating_ptcfc", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtility12errorFactoryAESo013FBSDKInternalJ0_p_So18FBSDKErrorCreating_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareCameraEffectContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareDialog", + "printedName": "ShareDialog", + "children": [ + { + "kind": "Var", + "name": "fromViewController", + "printedName": "fromViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "UIKit.UIViewController?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)fromViewController", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)fromViewController", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setFromViewController:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)mode", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)mode", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setMode:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC4modeAC4ModeOvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)delegate", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)delegate", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setDelegate:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)shareContent", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)shareContent", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShareContent:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "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@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShouldFailOnDataError:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "webDialog", + "printedName": "webDialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)webDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setWebDialog:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)initWithViewController:content:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC14viewController7content8delegateACSo06UIViewF0CSg_AA14SharingContent_pSgAA0J8Delegate_pSgtcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithViewController:content:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "dialog", + "printedName": "dialog(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(cm)dialogWithViewController:withContent:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC6dialog14viewController7content8delegateACSo06UIViewG0CSg_AA14SharingContent_pSgAA0K8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isOpen": true, + "objc_name": "dialogWithViewController:withContent:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(cm)showFromViewController:withContent:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4show14viewController7content8delegateACSo06UIViewG0CSg_AA14SharingContent_pSgAA0K8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isOpen": true, + "objc_name": "showFromViewController:withContent:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)init", + "mangledName": "$s13FBSDKShareKit11ShareDialogCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalURLOpener", + "printedName": "internalURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUtility", + "printedName": "shareUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestFactory", + "printedName": "bridgeAPIRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestOpener", + "printedName": "bridgeAPIRequestOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "socialComposeViewControllerFactory", + "printedName": "socialComposeViewControllerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "windowFinder", + "printedName": "windowFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mediaLibrarySearcher", + "printedName": "mediaLibrarySearcher", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 10, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalURLOpener:internalUtility:settings:shareUtility:bridgeAPIRequestFactory:bridgeAPIRequestOpener:socialComposeViewControllerFactory:windowFinder:errorFactory:eventLogger:mediaLibrarySearcher:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + }, + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpener0G7Utility8settings05shareI023bridgeAPIRequestFactory0lM6Opener027socialComposeViewControllerN012windowFinder05errorN011eventLogger20mediaLibrarySearcherAeA0C18InternalURLOpening_p_So013FBSDKInternalI0_p09FBSDKCoreB016SettingsProtocol_pAA0cI8Protocol_AA0C10ValidatingpXpSo011FBSDKBridgeM8Creating_pSo011FBSDKBridgeM7Opening_pAA06SocialqrsN8Protocol_pSo19_FBSDKWindowFinding_pSo18FBSDKErrorCreating_pAA0C12EventLogging_pAA05MediaZ9Searching_ptcfc", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpener0G7Utility8settings05shareI023bridgeAPIRequestFactory0lM6Opener027socialComposeViewControllerN012windowFinder05errorN011eventLogger20mediaLibrarySearcherAeA0C18InternalURLOpening_p_So013FBSDKInternalI0_p09FBSDKCoreB016SettingsProtocol_pAA0cI8Protocol_AA0C10ValidatingpXpSo011FBSDKBridgeM8Creating_pSo011FBSDKBridgeM7Opening_pAA06SocialqrsN8Protocol_pSo19_FBSDKWindowFinding_pSo18FBSDKErrorCreating_pAA0C12EventLogging_pAA05MediaZ9Searching_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit11ShareDialogC7canShowSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "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@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit11ShareDialogC7canShowSbvg", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)show", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4showSbyF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "show", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8validateyyKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialog", + "printedName": "webDialog(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog:didCompleteWithResults:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD0_22didCompleteWithResultsy09FBSDKCoreB004_WebD0C_SDySSypGtF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialog:didCompleteWithResults:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialog", + "printedName": "webDialog(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog:didFailWithError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD0_16didFailWithErrory09FBSDKCoreB004_WebD0C_s0I0_ptF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialog:didFailWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogDidCancel", + "printedName": "webDialogDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialogDidCancel:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD9DidCancelyy09FBSDKCoreB004_WebD0CF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialogDidCancel:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Mode", + "printedName": "Mode", + "children": [ + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO9automaticyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO9automaticyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "native", + "printedName": "native", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO6nativeyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO6nativeyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "shareSheet", + "printedName": "shareSheet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO10shareSheetyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO10shareSheetyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "browser", + "printedName": "browser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO7browseryA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO7browseryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "web", + "printedName": "web", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO3webyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO3webyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "feedBrowser", + "printedName": "feedBrowser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO11feedBrowseryA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11feedBrowseryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "feedWeb", + "printedName": "feedWeb", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO7feedWebyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO7feedWebyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareDialogMode", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "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": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "FBSDKShareDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingDialog", + "printedName": "SharingDialog", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP" + }, + { + "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": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareDialogConfigurationProtocol", + "printedName": "ShareDialogConfigurationProtocol", + "children": [ + { + "kind": "Function", + "name": "shouldUseNativeDialog", + "printedName": "shouldUseNativeDialog(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP015shouldUseNativeD003forD4NameSbSS_tF", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP015shouldUseNativeD003forD4NameSbSS_tF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareDialogConfigurationProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP29shouldUseSafariViewController03forD4NameSbSS_tF", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP29shouldUseSafariViewController03forD4NameSbSS_tF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareDialogConfigurationProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ShareErrorDomain", + "printedName": "ShareErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16ShareErrorDomainSSvp", + "mangledName": "$s13FBSDKShareKit16ShareErrorDomainSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "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:13FBSDKShareKit16ShareErrorDomainSSvg", + "mangledName": "$s13FBSDKShareKit16ShareErrorDomainSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ShareError", + "printedName": "ShareError", + "children": [ + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorReserved", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8reservedyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "openGraph", + "printedName": "openGraph", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorOpenGraph", + "mangledName": "$s13FBSDKShareKit10ShareErrorO9openGraphyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "dialogNotAvailable", + "printedName": "dialogNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorDialogNotAvailable", + "mangledName": "$s13FBSDKShareKit10ShareErrorO18dialogNotAvailableyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorUnknown", + "mangledName": "$s13FBSDKShareKit10ShareErrorO7unknownyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareErrorO8rawValueSivp", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueSivp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareErrorO8rawValueSivg", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueSivg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError", + "mangledName": "$s13FBSDKShareKit10ShareErrorO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareEventLogging", + "printedName": "ShareEventLogging", + "children": [ + { + "kind": "Function", + "name": "logInternalEvent", + "printedName": "logInternalEvent(_:parameters:isImplicitlyLogged:accessToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP011logInternalD0_10parameters18isImplicitlyLogged11accessTokenySo08FBSDKAppD4Namea_SDySo0nd9ParameterO0aypGSgSbSo011FBSDKAccessM0CSgtF", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP011logInternalD0_10parameters18isImplicitlyLogged11accessTokenySo08FBSDKAppD4Namea_SDySo0nd9ParameterO0aypGSgSbSo011FBSDKAccessM0CSgtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareInternalURLOpening", + "printedName": "ShareInternalURLOpening", + "children": [ + { + "kind": "Function", + "name": "canOpenURL", + "printedName": "canOpenURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening(im)canOpenURL:", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP10canOpenURLySb10Foundation0H0VF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareInternalURLOpening>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKShareInternalURLOpening", + "declAttributes": [ + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareLinkContent", + "printedName": "ShareLinkContent", + "children": [ + { + "kind": "Var", + "name": "quote", + "printedName": "quote", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)quote", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)quote", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setQuote:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC5quoteSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)placeID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)placeID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)ref", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)ref", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)pageID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)pageID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareLinkContent", + "printedName": "FBSDKShareKit.ShareLinkContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)init", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareLinkContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "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": "ShareMedia", + "printedName": "ShareMedia", + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKShareMedia", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareMediaContent", + "printedName": "ShareMediaContent", + "children": [ + { + "kind": "Var", + "name": "media", + "printedName": "media", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)media", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)media", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setMedia:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)ref", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)ref", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)init", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareMediaContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharePhoto", + "printedName": "SharePhoto", + "children": [ + { + "kind": "Var", + "name": "image", + "printedName": "image", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)image", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)image", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setImage:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)imageURL", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)imageURL", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setImageURL:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "photoAsset", + "printedName": "photoAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)photoAsset", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)photoAsset", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setPhotoAsset:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isUserGenerated", + "printedName": "isUserGenerated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)isUserGenerated", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)isUserGenerated", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvg", + "moduleName": "FBSDKShareKit", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setIsUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "caption", + "printedName": "caption", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)caption", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)caption", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setCaption:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC7captionSSSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(image:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithImage:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5image15isUserGeneratedACSo7UIImageC_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageURL:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithImageURL:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL15isUserGeneratedAC10Foundation0F0V_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(photoAsset:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithPhotoAsset:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAsset15isUserGeneratedACSo7PHAssetC_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(source:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6source15isUserGeneratedA2C6SourceOSg_Sbtcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6source15isUserGeneratedA2C6SourceOSg_Sbtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)init", + "mangledName": "$s13FBSDKShareKit10SharePhotoCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Source", + "printedName": "Source", + "children": [ + { + "kind": "Var", + "name": "image", + "printedName": "image", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (UIKit.UIImage) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(UIKit.UIImage) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5imageyAESo7UIImageCcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageyAESo7UIImageCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (Foundation.URL) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (Photos.PHAsset) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Photos.PHAsset) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetyAESo7PHAssetCcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetyAESo7PHAssetCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "image", + "printedName": "image", + "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:13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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:13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7UIImageCSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7UIImageCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "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:13FBSDKShareKit10SharePhotoC6SourceOyAESg10Foundation3URLVSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESg10Foundation3URLVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7PHAssetCSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7PHAssetCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto", + "mangledName": "$s13FBSDKShareKit10SharePhotoC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSharePhoto", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareMedia", + "printedName": "ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharePhotoContent", + "printedName": "SharePhotoContent", + "children": [ + { + "kind": "Var", + "name": "photos", + "printedName": "photos", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)photos", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)photos", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPhotos:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)ref", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)ref", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)init", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "imageFinder", + "printedName": "imageFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvp", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvg", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageFinder:validator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinder9validatorAeA21MediaLibrarySearching_p_AA0C10Validating_pXptcfc", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinder9validatorAeA21MediaLibrarySearching_p_AA0C10Validating_pXptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSharePhotoContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareUIApplication", + "printedName": "ShareUIApplication", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvpZ", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvgZ", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareUtilityProtocol", + "printedName": "ShareUtilityProtocol", + "children": [ + { + "kind": "Function", + "name": "feedShareDictionary", + "printedName": "feedShareDictionary(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAsyncWebPhotoContent", + "printedName": "buildAsyncWebPhotoContent(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any])", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP25buildAsyncWebPhotoContent_10completionyAA0ciJ0C_ySb_SSSDySSypGtctFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP25buildAsyncWebPhotoContent_10completionyAA0ciJ0C_ySb_SSSDySSypGtctFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWebShareBridgeComponents", + "printedName": "buildWebShareBridgeComponents(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP08buildWebC16BridgeComponents3forAA0gchI0VAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP08buildWebC16BridgeComponents3forAA0gchI0VAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hashtagString", + "printedName": "hashtagString(from:)", + "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": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bridgeParameters", + "printedName": "bridgeParameters(for:options:shouldFailOnDataError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentFlags", + "printedName": "getContentFlags(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP15getContentFlags3forAA0gH0VAA07SharingG0_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP15getContentFlags3forAA0gH0VAA07SharingG0_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shareMediaContentContainsPhotosAndVideos", + "printedName": "shareMediaContentContainsPhotosAndVideos(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP40shareMediaContentContainsPhotosAndVideosySbAA0cgH0CFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP40shareMediaContentContainsPhotosAndVideosySbAA0cgH0CFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "WebShareBridgeComponents", + "printedName": "WebShareBridgeComponents", + "children": [ + { + "kind": "Var", + "name": "methodName", + "printedName": "methodName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvp", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvg", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvs", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvM", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvp", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvg", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvs", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvM", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(methodName:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodName10parametersACSS_SDySSypGtcfc", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodName10parametersACSS_SDySSypGtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV", + "moduleName": "FBSDKShareKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareValidating", + "printedName": "ShareValidating", + "children": [ + { + "kind": "Function", + "name": "validateRequiredValue", + "printedName": "validateRequiredValue(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP21validateRequiredValue_5namedyyp_SStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP21validateRequiredValue_5namedyyp_SStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArgument", + "printedName": "validateArgument(_:named:in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP16validateArgument_5named2inyqd___SSShyqd__GtKSHRd__lFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP16validateArgument_5named2inyqd___SSShyqd__GtKSHRd__lFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.ShareValidating, τ_1_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArray", + "printedName": "validateArray(_:minCount:maxCount:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateNetworkURL", + "printedName": "validateNetworkURL(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateShareContent", + "printedName": "validateShareContent(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit15ShareValidatingP", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareVideo", + "printedName": "ShareVideo", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)data", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)data", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setData:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "videoAsset", + "printedName": "videoAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)videoAsset", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)videoAsset", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setVideoAsset:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "videoURL", + "printedName": "videoURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)videoURL", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)videoURL", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setVideoURL:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "previewPhoto", + "printedName": "previewPhoto", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)previewPhoto", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)previewPhoto", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setPreviewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithData:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data12previewPhotoAC10Foundation4DataV_AA0cG0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(videoAsset:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithVideoAsset:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAsset12previewPhotoACSo7PHAssetC_AA0cH0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(videoURL:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithVideoURL:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL12previewPhotoAC10Foundation0F0V_AA0cH0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(source:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6source12previewPhotoA2C6SourceOSg_AA0cG0CSgtcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6source12previewPhotoA2C6SourceOSg_AA0cG0CSgtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)init", + "mangledName": "$s13FBSDKShareKit10ShareVideoCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Source", + "printedName": "Source", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Foundation.Data) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4datayAE10Foundation4DataVcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4datayAE10Foundation4DataVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Foundation.URL) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Photos.PHAsset) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Photos.PHAsset) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetyAESo7PHAssetCcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetyAESo7PHAssetCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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:13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation4DataVSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation4DataVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "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:13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation3URLVSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation3URLVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceOyAESgSo7PHAssetCSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESgSo7PHAssetCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo", + "mangledName": "$s13FBSDKShareKit10ShareVideoC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareVideo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareMedia", + "printedName": "ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareVideoContent", + "printedName": "ShareVideoContent", + "children": [ + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)video", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)video", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setVideo:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC5videoAA0cD0CvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)ref", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)ref", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "SetterAccess", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideoContent", + "printedName": "FBSDKShareKit.ShareVideoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)init", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mediaLibrarySearcher", + "printedName": "mediaLibrarySearcher", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvp", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvg", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(validator:mediaLibrarySearcher:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validator20mediaLibrarySearcherAeA0C10Validating_pXp_AA05MediaJ9Searching_ptcfc", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validator20mediaLibrarySearcherAeA0C10Validating_pXp_AA05MediaJ9Searching_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareVideoContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Sharing", + "printedName": "Sharing", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)delegate", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "ReferenceOwnership", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)delegate", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)shareContent", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)shareContent", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit7SharingP8validateyyKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharing", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingButton", + "printedName": "SharingButton", + "children": [ + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingButton>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingButton>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingButton", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharingContent", + "printedName": "SharingContent", + "children": [ + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)placeID", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)placeID", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)ref", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)ref", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)pageID", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)pageID", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit14SharingContentP9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit14SharingContentP9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit14SharingContentP13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : FBSDKShareKit.SharingValidatable, τ_0_0 : ObjectiveC.NSObjectProtocol>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingContent", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingDelegate", + "printedName": "SharingDelegate", + "children": [ + { + "kind": "Function", + "name": "sharer", + "printedName": "sharer(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharer:didCompleteWithResults:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP6sharer_22didCompleteWithResultsyAA0C0_p_SDySSypGtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharer:didCompleteWithResults:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sharer", + "printedName": "sharer(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharer:didFailWithError:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP6sharer_16didFailWithErroryAA0C0_p_s0I0_ptF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharer:didFailWithError:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sharerDidCancel", + "printedName": "sharerDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharerDidCancel:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP15sharerDidCancelyyAA0C0_pF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharerDidCancel:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingDialog", + "printedName": "SharingDialog", + "children": [ + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit13SharingDialogP7canShowSbvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit13SharingDialogP7canShowSbvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDialog>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(im)show", + "mangledName": "$s13FBSDKShareKit13SharingDialogP4showSbyF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDialog>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "children": [ + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingValidatable>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingValidatable", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Social", + "printedName": "Social", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SocialComposeViewControllerFactory", + "printedName": "SocialComposeViewControllerFactory", + "children": [ + { + "kind": "Function", + "name": "makeSocialComposeViewController", + "printedName": "makeSocialComposeViewController()", + "children": [ + { + "kind": "TypeNominal", + "name": "SLComposeViewController", + "printedName": "Social.SLComposeViewController", + "usr": "c:objc(cs)SLComposeViewController" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC04makecdeF0So09SLComposeeF0CyF", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryC04makecdeF0So09SLComposeeF0CyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactory", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactory", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryCACycfc", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryCACycfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryC", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Social", + "printedName": "Social", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "SocialComposeViewControllerFactoryProtocol", + "children": [ + { + "kind": "Function", + "name": "makeSocialComposeViewController", + "printedName": "makeSocialComposeViewController()", + "children": [ + { + "kind": "TypeNominal", + "name": "SLComposeViewController", + "printedName": "Social.SLComposeViewController", + "usr": "c:objc(cs)SLComposeViewController" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP04makecdeF0So09SLComposeeF0CyF", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP04makecdeF0So09SLComposeeF0CyF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SocialComposeViewControllerFactoryProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "children": [ + { + "kind": "Var", + "name": "bundleForStrings", + "printedName": "bundleForStrings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.UserInterfaceStringProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "_ShareUtility", + "printedName": "_ShareUtility", + "children": [ + { + "kind": "Function", + "name": "validateRequiredValue", + "printedName": "validateRequiredValue(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO21validateRequiredValue_5namedyyp_SStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO21validateRequiredValue_5namedyyp_SStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArgument", + "printedName": "validateArgument(_:named:in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO16validateArgument_5named2inyx_SSShyxGtKSHRzlFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO16validateArgument_5named2inyx_SSShyxGtKSHRzlFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArray", + "printedName": "validateArray(_:minCount:maxCount:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateNetworkURL", + "printedName": "validateNetworkURL(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateShareContent", + "printedName": "validateShareContent(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "hasDefaultArg": true, + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWebShareBridgeComponents", + "printedName": "buildWebShareBridgeComponents(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO08buildWebC16BridgeComponents3forAA0fcgH0VAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO08buildWebC16BridgeComponents3forAA0fcgH0VAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAsyncWebPhotoContent", + "printedName": "buildAsyncWebPhotoContent(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any])", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO25buildAsyncWebPhotoContent_10completionyAA0chI0C_ySb_SSSDySSypGtctFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO25buildAsyncWebPhotoContent_10completionyAA0chI0C_ySb_SSSDySSypGtctFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "feedShareDictionary", + "printedName": "feedShareDictionary(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hashtagString", + "printedName": "hashtagString(from:)", + "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": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bridgeParameters", + "printedName": "bridgeParameters(for:options:shouldFailOnDataError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "hasDefaultArg": true, + "usr": "c:@E@FBSDKShareBridgeOptions" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentFlags", + "printedName": "getContentFlags(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO15getContentFlags3forAA0fG0VAA07SharingF0_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO15getContentFlags3forAA0fG0VAA07SharingF0_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shareMediaContentContainsPhotosAndVideos", + "printedName": "shareMediaContentContainsPhotosAndVideos(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO40shareMediaContentContainsPhotosAndVideosySbAA0cfG0CFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO40shareMediaContentContainsPhotosAndVideosySbAA0cfG0CFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit13_ShareUtilityO", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareValidating", + "printedName": "ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP" + }, + { + "kind": "Conformance", + "name": "ShareUtilityProtocol", + "printedName": "ShareUtilityProtocol", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PHImageManager", + "printedName": "PHImageManager", + "children": [ + { + "kind": "TypeDecl", + "name": "MediaLibrarySearchError", + "printedName": "MediaLibrarySearchError", + "children": [ + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Var", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvp", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Accessor", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvg", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearchError", + "printedName": "Photos.PHImageManager.MediaLibrarySearchError", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Constructor", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetAESo7PHAssetC_tcfc", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetAESo7PHAssetC_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "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": "fb_findImage", + "printedName": "fb_findImage(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fb_getVideoURL", + "printedName": "fb_getVideoURL(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE14fb_getVideoURL3for10Foundation0H0VSo7PHAssetC_tKF", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE14fb_getVideoURL3for10Foundation0H0VSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)PHImageManager", + "moduleName": "Photos", + "isOpen": true, + "intro_iOS": "8", + "objc_name": "PHImageManager", + "declAttributes": [ + "Available", + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "MediaLibrarySearching", + "printedName": "MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "messengerShareDialogShow", + "printedName": "messengerShareDialogShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messengerShareDialogResult", + "printedName": "messengerShareDialogResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sendButtonImpression", + "printedName": "sendButtonImpression", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sendButtonDidTap", + "printedName": "sendButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareButtonImpression", + "printedName": "shareButtonImpression", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareButtonDidTap", + "printedName": "shareButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareDialogShow", + "printedName": "shareDialogShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareDialogResult", + "printedName": "shareDialogResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName", + "moduleName": "FBSDKCoreKit", + "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": "ParameterName", + "printedName": "ParameterName", + "children": [ + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "outcome", + "printedName": "outcome", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentType", + "printedName": "shareContentType", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentPageID", + "printedName": "shareContentPageID", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentUUID", + "printedName": "shareContentUUID", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName", + "moduleName": "FBSDKCoreKit", + "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": "ShareDialogConfiguration", + "printedName": "ShareDialogConfiguration", + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV", + "moduleName": "FBSDKCoreKit", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ShareDialogConfigurationProtocol", + "printedName": "ShareDialogConfigurationProtocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP" + }, + { + "kind": "Conformance", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEvents", + "printedName": "AppEvents", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAppEvents", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAppEvents", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ShareEventLogging", + "printedName": "ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIApplication", + "printedName": "UIApplication", + "declKind": "Class", + "usr": "c:objc(cs)UIApplication", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIApplication", + "declAttributes": [ + "Available", + "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": "Conformance", + "name": "ShareInternalURLOpening", + "printedName": "ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InternalUtility", + "printedName": "InternalUtility", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKInternalUtility", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKInternalUtility", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "StringLiteral", + "offset": 338, + "length": 16, + "value": "\"FBSDKShareKit.AppInviteContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 367, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 401, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 435, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/Hashtag.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 7, + "value": "\"FBSDKShareKit.Hashtag\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/MessageDialog.swift", + "kind": "BooleanLiteral", + "offset": 1367, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/MessageDialog.swift", + "kind": "BooleanLiteral", + "offset": 1508, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 32, + "value": "\"fb_messenger_dialog_share_show\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 432, + "length": 34, + "value": "\"fb_messenger_dialog_share_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 544, + "length": 27, + "value": "\"fb_send_button_impression\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 620, + "length": 24, + "value": "\"fb_send_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 724, + "length": 28, + "value": "\"fb_share_button_impression\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 802, + "length": 25, + "value": "\"fb_share_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 901, + "length": 22, + "value": "\"fb_dialog_share_show\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 973, + "length": 24, + "value": "\"fb_dialog_share_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 33, + "value": "\"fb_dialog_outcome_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 402, + "length": 19, + "value": "\"fb_dialog_outcome\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 30, + "value": "\"fb_dialog_share_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 555, + "length": 16, + "value": "\"fb_dialog_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 631, + "length": 33, + "value": "\"fb_dialog_share_content_page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 30, + "value": "\"fb_dialog_share_content_uuid\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 844, + "length": 11, + "value": "\"Cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 883, + "length": 11, + "value": "\"Completed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 919, + "length": 8, + "value": "\"Failed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 983, + "length": 8, + "value": "\"Status\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1015, + "length": 7, + "value": "\"Photo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1046, + "length": 7, + "value": "\"Video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1078, + "length": 8, + "value": "\"Camera\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1112, + "length": 9, + "value": "\"Unknown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 296, + "length": 8, + "value": "\"camera\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 328, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 389, + "length": 19, + "value": "\"completionGesture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 8, + "value": "\"cancel\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 496, + "length": 8, + "value": "\"postId\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 9, + "value": "\"post_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ShareCameraEffectContent.swift", + "kind": "StringLiteral", + "offset": 523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 6, + "value": "\"feed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 741, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 856, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 1817, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 400, + "length": 11, + "value": "\"FBSDKShareKit.ShareDialog\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "Array", + "offset": 22128, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 29908, + "length": 8, + "value": "\"app_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 29976, + "length": 10, + "value": "\"hashtags\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 30047, + "length": 8, + "value": "\"quotes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 772, + "length": 10, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 7, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 967, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 1053, + "length": 7, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 772, + "length": 10, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 7, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 967, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 1053, + "length": 7, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 24, + "value": "\"com.facebook.sdk.share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 687, + "length": 9, + "value": "201" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 845, + "length": 18, + "value": "202" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 7, + "value": "203" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 687, + "length": 9, + "value": "201" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 845, + "length": 18, + "value": "202" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 7, + "value": "203" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhoto.swift", + "kind": "BooleanLiteral", + "offset": 3009, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhoto.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"FBSDKShareKit.SharePhoto\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhotoContent.swift", + "kind": "IntegerLiteral", + "offset": 3474, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhotoContent.swift", + "kind": "IntegerLiteral", + "offset": 3480, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ShareVideo.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 10, + "value": "\"FBSDKShareKit.ShareVideo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/SocialComposeViewControllerFactory.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 27, + "value": "\"com.apple.social.facebook\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/_ShareUtility.swift", + "kind": "Array", + "offset": 2340, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/_ShareUtility.swift", + "kind": "Array", + "offset": 5265, + "length": 2, + "value": "[]" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface new file mode 100644 index 00000000..776a0910 --- /dev/null +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface @@ -0,0 +1,368 @@ +// 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-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import FBSDKCoreKit +import FBSDKCoreKit_Basics +@_exported import FBSDKShareKit +import Foundation +import Photos +import Social +import Swift +import UIKit +import _Concurrency +import _StringProcessing +@objcMembers @objc(FBSDKAppInviteContent) final public class AppInviteContent : ObjectiveC.NSObject { + @objc(FBSDKAppInviteDestination) public enum Destination : Swift.Int { + case facebook + case messenger + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } + } + @objc final public var appInvitePreviewImageURL: Foundation.URL? + @objc final public var appLinkURL: Foundation.URL + @objc final public var promotionCode: Swift.String? + @objc final public var promotionText: Swift.String? + @objc final public var destination: FBSDKShareKit.AppInviteContent.Destination + @objc(initWithAppLinkURL:) public init(appLinkURL: Foundation.URL) + @objc deinit +} +extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { + @objc final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCameraEffectArguments) final public class CameraEffectArguments : ObjectiveC.NSObject { + @objc(setString:forKey:) final public func set(_ string: Swift.String?, forKey key: Swift.String) + @objc final public func string(forKey key: Swift.String) -> Swift.String? + @objc(setArray:forKey:) final public func set(_ array: [Swift.String]?, forKey key: Swift.String) + @objc final public func array(forKey key: Swift.String) -> [Swift.String]? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCameraEffectTextures) final public class CameraEffectTextures : ObjectiveC.NSObject { + @objc(setImage:forKey:) final public func set(_ image: UIKit.UIImage?, forKey key: Swift.String) + @objc(imageForKey:) final public func image(forKey key: Swift.String) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSendButton) @_Concurrency.MainActor(unsafe) final public class FBSendButton : FBSDKCoreKit.FBButton, FBSDKShareKit.SharingButton, FBSDKCoreKit.FBButtonImpressionLogging { + @objc @_Concurrency.MainActor(unsafe) final public var dialog: FBSDKShareKit.MessageDialog? + @_Concurrency.MainActor(unsafe) @objc final public var shareContent: FBSDKShareKit.SharingContent? { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc final public var analyticsParameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]? { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc final public var impressionTrackingEventName: FBSDKCoreKit.AppEvents.Name { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc final public var impressionTrackingIdentifier: Swift.String { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public func configureButton() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareButton) @_Concurrency.MainActor(unsafe) final public class FBShareButton : FBSDKCoreKit.FBButton, FBSDKShareKit.SharingButton { + @_Concurrency.MainActor(unsafe) @objc final public var shareContent: FBSDKShareKit.SharingContent? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var analyticsParameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]? { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public var impressionTrackingEventName: FBSDKCoreKit.AppEvents.Name { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public var impressionTrackingIdentifier: Swift.String { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public func configureButton() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objcMembers @objc(FBSDKHashtag) final public class Hashtag : ObjectiveC.NSObject { + @objc final public var stringRepresentation: Swift.String + @objc(initWithString:) public init(_ string: Swift.String) + @objc override final public var description: Swift.String { + @objc get + } + @objc final public var isValid: Swift.Bool { + @objc get + } + @objc override final public var hash: Swift.Int { + @objc get + } + @objc override final public func isEqual(_ object: Any?) -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKMessageDialog) public class MessageDialog : ObjectiveC.NSObject, FBSDKShareKit.SharingDialog { + @objc weak public var delegate: FBSDKShareKit.SharingDelegate? + @objc public var shareContent: FBSDKShareKit.SharingContent? + @objc public var shouldFailOnDataError: Swift.Bool + @objc(initWithContent:delegate:) convenience public init(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) + @objc(dialogWithContent:delegate:) public static func dialog(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.MessageDialog + @objc(showWithContent:delegate:) public static func show(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.MessageDialog + @objc public var canShow: Swift.Bool { + @objc get + } + @discardableResult + @objc public func show() -> Swift.Bool + @objc public func validate() throws + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareCameraEffectContent) final public class ShareCameraEffectContent : ObjectiveC.NSObject { + @objc final public var effectID: Swift.String + @objc final public var effectArguments: FBSDKShareKit.CameraEffectArguments + @objc final public var effectTextures: FBSDKShareKit.CameraEffectTextures + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public var shareUUID: Swift.String? { + get + } + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareCameraEffectContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objcMembers @objc(FBSDKShareDialog) public class ShareDialog : ObjectiveC.NSObject, FBSDKShareKit.SharingDialog { + @objc weak public var fromViewController: UIKit.UIViewController? + @objc public var mode: FBSDKShareKit.ShareDialog.Mode + @objc weak public var delegate: FBSDKShareKit.SharingDelegate? + @objc public var shareContent: FBSDKShareKit.SharingContent? + @objc public var shouldFailOnDataError: Swift.Bool + @objc(initWithViewController:content:delegate:) public init(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) + @objc deinit + @objc(dialogWithViewController:withContent:delegate:) public class func dialog(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.ShareDialog + @discardableResult + @objc(showFromViewController:withContent:delegate:) public class func show(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.ShareDialog +} +extension FBSDKShareKit.ShareDialog { + @objc dynamic public var canShow: Swift.Bool { + @objc get + } + @discardableResult + @objc dynamic public func show() -> Swift.Bool + @objc dynamic public func validate() throws +} +extension FBSDKShareKit.ShareDialog : FBSDKCoreKit.WebDialogDelegate { + @objc dynamic public func webDialog(_ webDialog: FBSDKCoreKit._WebDialog, didCompleteWithResults results: [Swift.String : Any]) + @objc dynamic public func webDialog(_ webDialog: FBSDKCoreKit._WebDialog, didFailWithError error: Swift.Error) + @objc dynamic public func webDialogDidCancel(_ webDialog: FBSDKCoreKit._WebDialog) +} +extension FBSDKShareKit.ShareDialog { + @objc(FBSDKShareDialogMode) public enum Mode : Swift.UInt, Swift.CustomStringConvertible { + case automatic + case native + case shareSheet + case browser + case web + case feedBrowser + case feedWeb + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } +} +public let ShareErrorDomain: Swift.String +@objc(FBSDKShareError) public enum ShareError : Swift.Int { + case reserved = 200 + case openGraph + case dialogNotAvailable + case unknown + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareLinkContent) final public class ShareLinkContent : ObjectiveC.NSObject { + @objc final public var quote: Swift.String? + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objc(FBSDKShareMedia) public protocol ShareMedia { +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareMediaContent) final public class ShareMediaContent : ObjectiveC.NSObject { + @objc final public var media: [FBSDKShareKit.ShareMedia] + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKSharePhoto) final public class SharePhoto : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { + @objc final public var image: UIKit.UIImage? { + @objc get + @objc set + } + @objc final public var imageURL: Foundation.URL? { + @objc get + @objc set + } + @objc final public var photoAsset: Photos.PHAsset? { + @objc get + @objc set + } + @objc final public var isUserGenerated: Swift.Bool + @objc final public var caption: Swift.String? + @objc convenience public init(image: UIKit.UIImage, isUserGenerated: Swift.Bool) + @objc convenience public init(imageURL: Foundation.URL, isUserGenerated: Swift.Bool) + @objc convenience public init(photoAsset: Photos.PHAsset, isUserGenerated: Swift.Bool) + @objc deinit +} +extension FBSDKShareKit.SharePhoto : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSharePhotoContent) final public class SharePhotoContent : ObjectiveC.NSObject { + @objc final public var photos: [FBSDKShareKit.SharePhoto] + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKShareVideo) final public class ShareVideo : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { + @objc final public var data: Foundation.Data? { + @objc get + @objc set + } + @objc final public var videoAsset: Photos.PHAsset? { + @objc get + @objc set + } + @objc final public var videoURL: Foundation.URL? { + @objc get + @objc set + } + @objc final public var previewPhoto: FBSDKShareKit.SharePhoto? + @objc convenience public init(data: Foundation.Data, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc convenience public init(videoAsset: Photos.PHAsset, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc convenience public init(videoURL: Foundation.URL, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc deinit +} +extension FBSDKShareKit.ShareVideo : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareVideoContent) final public class ShareVideoContent : ObjectiveC.NSObject { + @objc final public var video: FBSDKShareKit.ShareVideo + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public var shareUUID: Swift.String? { + get + } + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objc(FBSDKSharing) public protocol Sharing { + @objc weak var delegate: FBSDKShareKit.SharingDelegate? { get set } + @objc var shareContent: FBSDKShareKit.SharingContent? { get set } + @objc var shouldFailOnDataError: Swift.Bool { get set } + @objc(validateWithError:) func validate() throws +} +@objc(FBSDKSharingButton) public protocol SharingButton { + @objc var shareContent: FBSDKShareKit.SharingContent? { get set } +} +@objc(FBSDKSharingContent) public protocol SharingContent : FBSDKShareKit.SharingValidatable, ObjectiveC.NSObjectProtocol { + @objc var contentURL: Foundation.URL? { get set } + @objc var hashtag: FBSDKShareKit.Hashtag? { get set } + @objc var peopleIDs: [Swift.String] { get set } + @objc var placeID: Swift.String? { get set } + @objc var ref: Swift.String? { get set } + @objc var pageID: Swift.String? { get set } + @objc var shareUUID: Swift.String? { get } + @objc(addParameters:bridgeOptions:) func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +@objc(FBSDKSharingDelegate) public protocol SharingDelegate { + @objc(sharer:didCompleteWithResults:) func sharer(_ sharer: FBSDKShareKit.Sharing, didCompleteWithResults results: [Swift.String : Any]) + @objc(sharer:didFailWithError:) func sharer(_ sharer: FBSDKShareKit.Sharing, didFailWithError error: Swift.Error) + @objc(sharerDidCancel:) func sharerDidCancel(_ sharer: FBSDKShareKit.Sharing) +} +@objc(FBSDKSharingDialog) public protocol SharingDialog : FBSDKShareKit.Sharing { + @objc var canShow: Swift.Bool { get } + @objc @discardableResult + func show() -> Swift.Bool +} +@objc(FBSDKSharingValidatable) public protocol SharingValidatable { + @objc(validateWithOptions:error:) func validate(options: FBSDKShareKit.ShareBridgeOptions) throws +} +public enum _ShareUtility { +} +extension FBSDKShareKit._ShareUtility { + public static func validateRequiredValue(_ value: Any, named name: Swift.String) throws + public static func validateArgument(_ value: Argument, named name: Swift.String, in possibleValues: Swift.Set) throws where Argument : Swift.Hashable +} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.Equatable {} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.Hashable {} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.RawRepresentable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.Equatable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.Hashable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.RawRepresentable {} +extension FBSDKShareKit.ShareError : Swift.Equatable {} +extension FBSDKShareKit.ShareError : Swift.Hashable {} +extension FBSDKShareKit.ShareError : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc similarity index 99% rename from ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc rename to ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc index 95647610..61f6e40c 100644 Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.swiftdoc differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface similarity index 98% rename from ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface rename to ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface index f6d6acdb..776a0910 100644 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-macabi.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import FBSDKCoreKit import FBSDKCoreKit_Basics @_exported import FBSDKShareKit @@ -10,6 +11,7 @@ import Social import Swift import UIKit import _Concurrency +import _StringProcessing @objcMembers @objc(FBSDKAppInviteContent) final public class AppInviteContent : ObjectiveC.NSObject { @objc(FBSDKAppInviteDestination) public enum Destination : Swift.Int { case facebook @@ -61,10 +63,10 @@ extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { @objc get } @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { - @_Concurrency.MainActor(unsafe) @objc get + @objc get } @objc @_Concurrency.MainActor(unsafe) final public func configureButton() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } @@ -83,10 +85,10 @@ extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { @objc get } @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { - @_Concurrency.MainActor(unsafe) @objc get + @objc get } @objc @_Concurrency.MainActor(unsafe) final public func configureButton() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } @@ -323,7 +325,6 @@ extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { @objc var shouldFailOnDataError: Swift.Bool { get set } @objc(validateWithError:) func validate() throws } -@available(tvOS, unavailable) @objc(FBSDKSharingButton) public protocol SharingButton { @objc var shareContent: FBSDKShareKit.SharingContent? { get set } } diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Modules/module.modulemap b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/module.modulemap similarity index 73% rename from ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Modules/module.modulemap rename to ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/module.modulemap index 3d203af2..7cc573a3 100644 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Modules/module.modulemap +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Modules/module.modulemap @@ -6,6 +6,6 @@ framework module FBSDKShareKit { } module FBSDKShareKit.Swift { - header "FBSDKShareKit-Swift.h" - requires objc + header "FBSDKShareKit-Swift.h" + requires objc } diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Resources b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Resources deleted file mode 120000 index 953ee36f..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Resources/Info.plist b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Resources/Info.plist similarity index 85% rename from ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Resources/Info.plist rename to ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Resources/Info.plist index 2ff5e782..50152346 100644 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Resources/Info.plist +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Resources/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 21G115 + 22F82 CFBundleDevelopmentRegion en CFBundleExecutable @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 15.1.0 + 16.1.3 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 13F100 + 14C18 DTPlatformName macosx DTPlatformVersion - 12.3 + 13.1 DTSDKBuild - 21E226 + 22C55 DTSDKName - macosx12.3 + macosx13.1 DTXcode - 1341 + 1420 DTXcodeBuild - 13F100 + 14C18 LSMinimumSystemVersion 10.15 UIDeviceFamily diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/FBSDKShareKit b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/FBSDKShareKit deleted file mode 100755 index 637265fc..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/FBSDKShareKit and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/module.modulemap b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/module.modulemap deleted file mode 100644 index 3d203af2..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/A/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module FBSDKShareKit { - umbrella header "FBSDKShareKit.h" - - export * - module * { export * } -} - -module FBSDKShareKit.Swift { - header "FBSDKShareKit-Swift.h" - requires objc -} diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/Current b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/Current deleted file mode 120000 index 8c7e5a66..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKShareKit.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index a57ddd8e..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKShareKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit deleted file mode 100644 index 09850730..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-maccatalyst/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/FBSDKShareKit b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/FBSDKShareKit old mode 100755 new mode 100644 index 9d36dbc7..beb790bd Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/FBSDKShareKit and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/FBSDKShareKit differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h index d231ab0f..ce9bb8fd 100644 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBSDKSHAREKIT_SWIFT_H #define FBSDKSHAREKIT_SWIFT_H #pragma clang diagnostic push @@ -23,11 +23,20 @@ # include #endif +#pragma clang diagnostic ignored "-Wduplicate-method-match" #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else #include #include #include +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -183,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -193,11 +204,33 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif -@import CoreGraphics; +@import CoreFoundation; @import FBSDKCoreKit; @import Foundation; @import ObjectiveC; @@ -205,6 +238,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -212,6 +246,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -220,6 +255,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSURL; @class NSString; @@ -319,7 +355,7 @@ SWIFT_CLASS_NAMED("CameraEffectTextures") /// The common interface for sharing buttons. /// See FBSendButton and FBShareButton -SWIFT_PROTOCOL_NAMED("SharingButton") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_PROTOCOL_NAMED("SharingButton") @protocol FBSDKSharingButton /// The content to be shared. @property (nonatomic, strong) id _Nullable shareContent; @@ -960,6 +996,9 @@ SWIFT_PROTOCOL_NAMED("SharingDelegate") +#endif +#if defined(__cplusplus) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif @@ -967,7 +1006,7 @@ SWIFT_PROTOCOL_NAMED("SharingDelegate") #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef FBSDKSHAREKIT_SWIFT_H #define FBSDKSHAREKIT_SWIFT_H #pragma clang diagnostic push @@ -990,11 +1029,20 @@ SWIFT_PROTOCOL_NAMED("SharingDelegate") # 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 @@ -1150,9 +1198,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) # define IBSegueAction #endif +#endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) # define SWIFT_EXTERN extern "C" @@ -1160,11 +1210,33 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif -@import CoreGraphics; +@import CoreFoundation; @import FBSDKCoreKit; @import Foundation; @import ObjectiveC; @@ -1172,6 +1244,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #import +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -1179,6 +1252,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -1187,6 +1261,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) @class NSURL; @class NSString; @@ -1286,7 +1361,7 @@ SWIFT_CLASS_NAMED("CameraEffectTextures") /// The common interface for sharing buttons. /// See FBSendButton and FBShareButton -SWIFT_PROTOCOL_NAMED("SharingButton") SWIFT_AVAILABILITY(tvos,unavailable) +SWIFT_PROTOCOL_NAMED("SharingButton") @protocol FBSDKSharingButton /// The content to be shared. @property (nonatomic, strong) id _Nullable shareContent; @@ -1927,10 +2002,15 @@ SWIFT_PROTOCOL_NAMED("SharingDelegate") +#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/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Info.plist b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Info.plist index a9263e04..5adc0bd3 100644 Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Info.plist and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Info.plist differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.abi.json b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 00000000..d8dd6f2f --- /dev/null +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,29047 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "AppInviteContent", + "printedName": "AppInviteContent", + "children": [ + { + "kind": "TypeDecl", + "name": "Destination", + "printedName": "Destination", + "children": [ + { + "kind": "Var", + "name": "facebook", + "printedName": "facebook", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.AppInviteContent.Destination.Type) -> FBSDKShareKit.AppInviteContent.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.AppInviteContent.Destination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8facebookyA2EmF", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8facebookyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "messenger", + "printedName": "messenger", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.AppInviteContent.Destination.Type) -> FBSDKShareKit.AppInviteContent.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.AppInviteContent.Destination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO9messengeryA2EmF", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO9messengeryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.Destination?", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueAESgSi_tcfc", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueAESgSi_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKAppInviteDestination", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Var", + "name": "appInvitePreviewImageURL", + "printedName": "appInvitePreviewImageURL", + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)appInvitePreviewImageURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)appInvitePreviewImageURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setAppInvitePreviewImageURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkURL", + "printedName": "appLinkURL", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)appLinkURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)appLinkURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setAppLinkURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0VvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0VvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "promotionCode", + "printedName": "promotionCode", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)promotionCode", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)promotionCode", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setPromotionCode:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "promotionText", + "printedName": "promotionText", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)promotionText", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)promotionText", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setPromotionText:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "destination", + "printedName": "destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)destination", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)destination", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setDestination:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLinkURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppInviteContent", + "printedName": "FBSDKShareKit.AppInviteContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)initWithAppLinkURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURLAC10Foundation0H0V_tcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithAppLinkURL:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppInviteContent", + "printedName": "FBSDKShareKit.AppInviteContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)init", + "mangledName": "$s13FBSDKShareKit16AppInviteContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvs", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(validator:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validator12errorFactoryAeA15ShareValidating_pXp_So18FBSDKErrorCreating_ptcfc", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validator12errorFactoryAeA15ShareValidating_pXp_So18FBSDKErrorCreating_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKAppInviteContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "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": "CameraEffectArguments", + "printedName": "CameraEffectArguments", + "children": [ + { + "kind": "Var", + "name": "arguments", + "printedName": "arguments", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(py)arguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC9argumentsSDySSypGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)arguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC9argumentsSDySSypGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)setString:forKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC3set_6forKeyySSSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setString:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "string", + "printedName": "string(forKey:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)stringForKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC6string6forKeySSSgSS_tF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)setArray:forKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC3set_6forKeyySaySSGSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setArray:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)arrayForKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC5array6forKeySaySSGSgSS_tF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)init", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKCameraEffectArguments", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CameraEffectTextures", + "printedName": "CameraEffectTextures", + "children": [ + { + "kind": "Var", + "name": "textures", + "printedName": "textures", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : UIKit.UIImage]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(py)textures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC8texturesSDySSSo7UIImageCGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : UIKit.UIImage]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)textures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC8texturesSDySSSo7UIImageCGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)setImage:forKey:", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC3set_6forKeyySo7UIImageCSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setImage:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)imageForKey:", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC5image6forKeySo7UIImageCSgSS_tF", + "moduleName": "FBSDKShareKit", + "objc_name": "imageForKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)init", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKCameraEffectTextures", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ContentFlags", + "printedName": "ContentFlags", + "children": [ + { + "kind": "Var", + "name": "containsMedia", + "printedName": "containsMedia", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV13containsMediaSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "containsPhotos", + "printedName": "containsPhotos", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "containsVideos", + "printedName": "containsVideos", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV14containsVideosSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(containsMedia:containsPhotos:containsVideos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMedia0E6Photos0E6VideosACSb_S2btcfc", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMedia0E6Photos0E6VideosACSb_S2btcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "containsAllTypes", + "printedName": "containsAllTypes", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "|=", + "printedName": "|=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "paramValueOwnership": "InOut", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit12ContentFlagsV2oeoiyyACz_ACtFZ", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV2oeoiyyACz_ACtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit12ContentFlagsV", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV", + "moduleName": "FBSDKShareKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKShareKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKShareKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "FBSendButton", + "printedName": "FBSendButton", + "children": [ + { + "kind": "Var", + "name": "dialog", + "printedName": "dialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)dialog", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)dialog", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)setDialog:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "objc_name": "setShareContent:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "analyticsParameters", + "printedName": "analyticsParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)analyticsParameters", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "analyticsParameters", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)analyticsParameters", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "analyticsParameters", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingEventName", + "printedName": "impressionTrackingEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avp", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingEventName", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avg", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingEventName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingIdentifier", + "printedName": "impressionTrackingIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC28impressionTrackingIdentifierSSvp", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingIdentifier", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC28impressionTrackingIdentifierSSvg", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingIdentifier", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isImplicitlyDisabled", + "printedName": "isImplicitlyDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)implicitlyDisabled", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC20isImplicitlyDisabledSbvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "implicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)isImplicitlyDisabled", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC20isImplicitlyDisabledSbvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isImplicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configureButton", + "printedName": "configureButton()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)configureButton", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC09configureD0yyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "share", + "printedName": "share()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)share", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5shareyyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "IBAction", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSendButton", + "printedName": "FBSDKShareKit.FBSendButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)initWithFrame:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSendButton", + "printedName": "FBSDKShareKit.FBSendButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)initWithCoder:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilityAESo013FBSDKInternalH0_p_tcfc", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilityAESo013FBSDKInternalH0_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSendButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingButton", + "printedName": "SharingButton", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "FBShareButton", + "printedName": "FBShareButton", + "children": [ + { + "kind": "Var", + "name": "dialog", + "printedName": "dialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)dialog", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)dialog", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)setDialog:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "objc_name": "setShareContent:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "analyticsParameters", + "printedName": "analyticsParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)analyticsParameters", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)analyticsParameters", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingEventName", + "printedName": "impressionTrackingEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingIdentifier", + "printedName": "impressionTrackingIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC28impressionTrackingIdentifierSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC28impressionTrackingIdentifierSSvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isImplicitlyDisabled", + "printedName": "isImplicitlyDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)implicitlyDisabled", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC20isImplicitlyDisabledSbvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "implicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)isImplicitlyDisabled", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC20isImplicitlyDisabledSbvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isImplicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configureButton", + "printedName": "configureButton()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)configureButton", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC09configureD0yyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "share", + "printedName": "share()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)share", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5shareyyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "IBAction", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBShareButton", + "printedName": "FBSDKShareKit.FBShareButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)initWithFrame:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBShareButton", + "printedName": "FBSDKShareKit.FBShareButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)initWithCoder:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvs", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAeA28UserInterfaceStringProviding_p_tcfc", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAeA28UserInterfaceStringProviding_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingButton", + "printedName": "SharingButton", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP" + }, + { + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Hashtag", + "printedName": "Hashtag", + "children": [ + { + "kind": "Var", + "name": "stringRepresentation", + "printedName": "stringRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)stringRepresentation", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)stringRepresentation", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)setStringRepresentation:", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit7HashtagC20stringRepresentationSSvM", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)initWithString:", + "mangledName": "$s13FBSDKShareKit7HashtagCyACSScfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithString:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)description", + "mangledName": "$s13FBSDKShareKit7HashtagC11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)description", + "mangledName": "$s13FBSDKShareKit7HashtagC11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)isValid", + "mangledName": "$s13FBSDKShareKit7HashtagC7isValidSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)isValid", + "mangledName": "$s13FBSDKShareKit7HashtagC7isValidSbvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)hash", + "mangledName": "$s13FBSDKShareKit7HashtagC4hashSivp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)hash", + "mangledName": "$s13FBSDKShareKit7HashtagC4hashSivg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)isEqual:", + "mangledName": "$s13FBSDKShareKit7HashtagC7isEqualySbypSgF", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)init", + "mangledName": "$s13FBSDKShareKit7HashtagCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag", + "mangledName": "$s13FBSDKShareKit7HashtagC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKHashtag", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "MediaLibrarySearching", + "printedName": "MediaLibrarySearching", + "children": [ + { + "kind": "Function", + "name": "fb_findImage", + "printedName": "fb_findImage(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.MediaLibrarySearching>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fb_getVideoURL", + "printedName": "fb_getVideoURL(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP14fb_getVideoURL3for10Foundation0I0VSo7PHAssetC_tKF", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP14fb_getVideoURL3for10Foundation0I0VSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.MediaLibrarySearching>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessageDialog", + "printedName": "MessageDialog", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)delegate", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)delegate", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setDelegate:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)shareContent", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)shareContent", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShareContent:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "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@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShouldFailOnDataError:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)init", + "mangledName": "$s13FBSDKShareKit13MessageDialogCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)initWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7content8delegateAcA14SharingContent_pSg_AA0G8Delegate_pSgtcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithContent:delegate:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(content:delegate:shareDialogConfiguration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ShareDialogConfigurationProtocol", + "printedName": "FBSDKShareKit.ShareDialogConfigurationProtocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessageDialogC7content8delegate05shareD13ConfigurationAcA14SharingContent_pSg_AA0I8Delegate_pSgAA05SharedH8Protocol_ptcfc", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7content8delegate05shareD13ConfigurationAcA14SharingContent_pSg_AA0I8Delegate_pSgAA05SharedH8Protocol_ptcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "dialog", + "printedName": "dialog(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(cm)dialogWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC6dialog7content8delegateAcA14SharingContent_pSg_AA0H8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "objc_name": "dialogWithContent:delegate:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(cm)showWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC4show7content8delegateAcA14SharingContent_pSg_AA0H8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "objc_name": "showWithContent:delegate:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7canShowSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7canShowSbvg", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)show", + "mangledName": "$s13FBSDKShareKit13MessageDialogC4showSbyF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "show", + "declAttributes": [ + "ObjC", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8validateyyKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleCompletion", + "printedName": "handleCompletion(dialogResults:response:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)handleCompletionWithDialogResults:response:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16handleCompletion13dialogResults8responseySDySSypG_So22FBSDKBridgeAPIResponseCtF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestFactory", + "printedName": "bridgeAPIRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestOpener", + "printedName": "bridgeAPIRequestOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUtility", + "printedName": "shareUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenWallet:bridgeAPIRequestFactory:bridgeAPIRequestOpener:errorFactory:eventLogger:internalUtility:shareUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWallet23bridgeAPIRequestFactory0jK6Opener05errorL011eventLogger15internalUtility05shareR0AESo011FBSDKAccessH9Providing_pXp_So011FBSDKBridgeK8Creating_pSo0vK7Opening_pSo010FBSDKErrorW0_pAA17ShareEventLogging_pSo27FBSDKAppAvailabilityChecker_So013FBSDKInternalR0pAA0zR8Protocol_AA0Z10ValidatingpXptcfc", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWallet23bridgeAPIRequestFactory0jK6Opener05errorL011eventLogger15internalUtility05shareR0AESo011FBSDKAccessH9Providing_pXp_So011FBSDKBridgeK8Creating_pSo0vK7Opening_pSo010FBSDKErrorW0_pAA17ShareEventLogging_pSo27FBSDKAppAvailabilityChecker_So013FBSDKInternalR0pAA0zR8Protocol_AA0Z10ValidatingpXptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog", + "mangledName": "$s13FBSDKShareKit13MessageDialogC", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "FBSDKMessageDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingDialog", + "printedName": "SharingDialog", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP" + }, + { + "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": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessengerIcon", + "printedName": "MessengerIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13MessengerIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "mangledName": "$s13FBSDKShareKit13MessengerIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessengerIcon", + "printedName": "FBSDKShareKit.MessengerIcon", + "usr": "s:13FBSDKShareKit13MessengerIconC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessengerIconCACycfc", + "mangledName": "$s13FBSDKShareKit13MessengerIconCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit13MessengerIconC", + "mangledName": "$s13FBSDKShareKit13MessengerIconC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKMessengerIcon", + "declAttributes": [ + "ObjCRuntimeName", + "Final", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "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": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV13dependentType025_F6BEFA4E8B98C73B76B4E918H6DF1851LLxmvp", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV13dependentType025_F6BEFA4E8B98C73B76B4E918H6DF1851LLxmvp", + "moduleName": "FBSDKShareKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKShareKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareAppEventsParameters", + "printedName": "ShareAppEventsParameters", + "children": [ + { + "kind": "TypeDecl", + "name": "DialogOutcomeValue", + "printedName": "DialogOutcomeValue", + "children": [ + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completed", + "printedName": "completed", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ContentTypeValue", + "printedName": "ContentTypeValue", + "children": [ + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "photo", + "printedName": "photo", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "camera", + "printedName": "camera", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareBridgeAPI", + "printedName": "ShareBridgeAPI", + "children": [ + { + "kind": "TypeDecl", + "name": "MethodName", + "printedName": "MethodName", + "children": [ + { + "kind": "Var", + "name": "camera", + "printedName": "camera", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CompletionGesture", + "printedName": "CompletionGesture", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cancelValue", + "printedName": "cancelValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PostIDKey", + "printedName": "PostIDKey", + "children": [ + { + "kind": "Var", + "name": "results", + "printedName": "results", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webParameters", + "printedName": "webParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareBridgeAPIRequestFactory", + "printedName": "ShareBridgeAPIRequestFactory", + "children": [ + { + "kind": "Function", + "name": "bridgeAPIRequest", + "printedName": "bridgeAPIRequest(with:scheme:methodName:parameters:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "FBSDKBridgeAPIProtocolType", + "printedName": "FBSDKCoreKit.FBSDKBridgeAPIProtocolType", + "usr": "c:@E@FBSDKBridgeAPIProtocolType" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC06bridgeE04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeE0_pSgSo0O15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryC06bridgeE04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeE0_pSgSo0O15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "moduleName": "FBSDKShareKit", + "objc_name": "bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareBridgeAPIRequestFactory", + "printedName": "FBSDKShareKit.ShareBridgeAPIRequestFactory", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryCACycfc", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryCACycfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryC", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareCameraEffectContent", + "printedName": "ShareCameraEffectContent", + "children": [ + { + "kind": "Var", + "name": "effectID", + "printedName": "effectID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "effectArguments", + "printedName": "effectArguments", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectArguments", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectArguments", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectArguments:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0CvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "effectTextures", + "printedName": "effectTextures", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectTextures", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectTextures", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectTextures:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0CvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)placeID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)placeID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)ref", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)ref", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)pageID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)pageID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "SetterAccess", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareCameraEffectContent", + "printedName": "FBSDKShareKit.ShareCameraEffectContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)init", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalUtility:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtility12errorFactoryAESo013FBSDKInternalJ0_p_So18FBSDKErrorCreating_ptcfc", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtility12errorFactoryAESo013FBSDKInternalJ0_p_So18FBSDKErrorCreating_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareCameraEffectContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareDialog", + "printedName": "ShareDialog", + "children": [ + { + "kind": "Var", + "name": "fromViewController", + "printedName": "fromViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "UIKit.UIViewController?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)fromViewController", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)fromViewController", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setFromViewController:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)mode", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)mode", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setMode:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC4modeAC4ModeOvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)delegate", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)delegate", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setDelegate:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)shareContent", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)shareContent", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShareContent:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "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@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShouldFailOnDataError:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "webDialog", + "printedName": "webDialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)webDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setWebDialog:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)initWithViewController:content:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC14viewController7content8delegateACSo06UIViewF0CSg_AA14SharingContent_pSgAA0J8Delegate_pSgtcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithViewController:content:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "dialog", + "printedName": "dialog(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(cm)dialogWithViewController:withContent:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC6dialog14viewController7content8delegateACSo06UIViewG0CSg_AA14SharingContent_pSgAA0K8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isOpen": true, + "objc_name": "dialogWithViewController:withContent:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(cm)showFromViewController:withContent:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4show14viewController7content8delegateACSo06UIViewG0CSg_AA14SharingContent_pSgAA0K8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isOpen": true, + "objc_name": "showFromViewController:withContent:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)init", + "mangledName": "$s13FBSDKShareKit11ShareDialogCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalURLOpener", + "printedName": "internalURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUtility", + "printedName": "shareUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestFactory", + "printedName": "bridgeAPIRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestOpener", + "printedName": "bridgeAPIRequestOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "socialComposeViewControllerFactory", + "printedName": "socialComposeViewControllerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "windowFinder", + "printedName": "windowFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mediaLibrarySearcher", + "printedName": "mediaLibrarySearcher", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 10, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalURLOpener:internalUtility:settings:shareUtility:bridgeAPIRequestFactory:bridgeAPIRequestOpener:socialComposeViewControllerFactory:windowFinder:errorFactory:eventLogger:mediaLibrarySearcher:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + }, + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpener0G7Utility8settings05shareI023bridgeAPIRequestFactory0lM6Opener027socialComposeViewControllerN012windowFinder05errorN011eventLogger20mediaLibrarySearcherAeA0C18InternalURLOpening_p_So013FBSDKInternalI0_p09FBSDKCoreB016SettingsProtocol_pAA0cI8Protocol_AA0C10ValidatingpXpSo011FBSDKBridgeM8Creating_pSo011FBSDKBridgeM7Opening_pAA06SocialqrsN8Protocol_pSo19_FBSDKWindowFinding_pSo18FBSDKErrorCreating_pAA0C12EventLogging_pAA05MediaZ9Searching_ptcfc", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpener0G7Utility8settings05shareI023bridgeAPIRequestFactory0lM6Opener027socialComposeViewControllerN012windowFinder05errorN011eventLogger20mediaLibrarySearcherAeA0C18InternalURLOpening_p_So013FBSDKInternalI0_p09FBSDKCoreB016SettingsProtocol_pAA0cI8Protocol_AA0C10ValidatingpXpSo011FBSDKBridgeM8Creating_pSo011FBSDKBridgeM7Opening_pAA06SocialqrsN8Protocol_pSo19_FBSDKWindowFinding_pSo18FBSDKErrorCreating_pAA0C12EventLogging_pAA05MediaZ9Searching_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit11ShareDialogC7canShowSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "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@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit11ShareDialogC7canShowSbvg", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)show", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4showSbyF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "show", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8validateyyKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialog", + "printedName": "webDialog(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog:didCompleteWithResults:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD0_22didCompleteWithResultsy09FBSDKCoreB004_WebD0C_SDySSypGtF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialog:didCompleteWithResults:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialog", + "printedName": "webDialog(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog:didFailWithError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD0_16didFailWithErrory09FBSDKCoreB004_WebD0C_s0I0_ptF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialog:didFailWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogDidCancel", + "printedName": "webDialogDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialogDidCancel:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD9DidCancelyy09FBSDKCoreB004_WebD0CF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialogDidCancel:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Mode", + "printedName": "Mode", + "children": [ + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO9automaticyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO9automaticyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "native", + "printedName": "native", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO6nativeyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO6nativeyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "shareSheet", + "printedName": "shareSheet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO10shareSheetyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO10shareSheetyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "browser", + "printedName": "browser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO7browseryA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO7browseryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "web", + "printedName": "web", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO3webyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO3webyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "feedBrowser", + "printedName": "feedBrowser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO11feedBrowseryA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11feedBrowseryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "feedWeb", + "printedName": "feedWeb", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO7feedWebyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO7feedWebyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareDialogMode", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "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": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "FBSDKShareDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingDialog", + "printedName": "SharingDialog", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP" + }, + { + "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": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareDialogConfigurationProtocol", + "printedName": "ShareDialogConfigurationProtocol", + "children": [ + { + "kind": "Function", + "name": "shouldUseNativeDialog", + "printedName": "shouldUseNativeDialog(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP015shouldUseNativeD003forD4NameSbSS_tF", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP015shouldUseNativeD003forD4NameSbSS_tF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareDialogConfigurationProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP29shouldUseSafariViewController03forD4NameSbSS_tF", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP29shouldUseSafariViewController03forD4NameSbSS_tF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareDialogConfigurationProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ShareErrorDomain", + "printedName": "ShareErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16ShareErrorDomainSSvp", + "mangledName": "$s13FBSDKShareKit16ShareErrorDomainSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "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:13FBSDKShareKit16ShareErrorDomainSSvg", + "mangledName": "$s13FBSDKShareKit16ShareErrorDomainSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ShareError", + "printedName": "ShareError", + "children": [ + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorReserved", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8reservedyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "openGraph", + "printedName": "openGraph", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorOpenGraph", + "mangledName": "$s13FBSDKShareKit10ShareErrorO9openGraphyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "dialogNotAvailable", + "printedName": "dialogNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorDialogNotAvailable", + "mangledName": "$s13FBSDKShareKit10ShareErrorO18dialogNotAvailableyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorUnknown", + "mangledName": "$s13FBSDKShareKit10ShareErrorO7unknownyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareErrorO8rawValueSivp", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueSivp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareErrorO8rawValueSivg", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueSivg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError", + "mangledName": "$s13FBSDKShareKit10ShareErrorO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareEventLogging", + "printedName": "ShareEventLogging", + "children": [ + { + "kind": "Function", + "name": "logInternalEvent", + "printedName": "logInternalEvent(_:parameters:isImplicitlyLogged:accessToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP011logInternalD0_10parameters18isImplicitlyLogged11accessTokenySo08FBSDKAppD4Namea_SDySo0nd9ParameterO0aypGSgSbSo011FBSDKAccessM0CSgtF", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP011logInternalD0_10parameters18isImplicitlyLogged11accessTokenySo08FBSDKAppD4Namea_SDySo0nd9ParameterO0aypGSgSbSo011FBSDKAccessM0CSgtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareInternalURLOpening", + "printedName": "ShareInternalURLOpening", + "children": [ + { + "kind": "Function", + "name": "canOpenURL", + "printedName": "canOpenURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening(im)canOpenURL:", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP10canOpenURLySb10Foundation0H0VF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareInternalURLOpening>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKShareInternalURLOpening", + "declAttributes": [ + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareLinkContent", + "printedName": "ShareLinkContent", + "children": [ + { + "kind": "Var", + "name": "quote", + "printedName": "quote", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)quote", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)quote", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setQuote:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC5quoteSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)placeID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)placeID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)ref", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)ref", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)pageID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)pageID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareLinkContent", + "printedName": "FBSDKShareKit.ShareLinkContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)init", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareLinkContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "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": "ShareMedia", + "printedName": "ShareMedia", + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKShareMedia", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareMediaContent", + "printedName": "ShareMediaContent", + "children": [ + { + "kind": "Var", + "name": "media", + "printedName": "media", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)media", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)media", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setMedia:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)ref", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)ref", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)init", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareMediaContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharePhoto", + "printedName": "SharePhoto", + "children": [ + { + "kind": "Var", + "name": "image", + "printedName": "image", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)image", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)image", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setImage:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)imageURL", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)imageURL", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setImageURL:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "photoAsset", + "printedName": "photoAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)photoAsset", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)photoAsset", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setPhotoAsset:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isUserGenerated", + "printedName": "isUserGenerated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)isUserGenerated", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)isUserGenerated", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvg", + "moduleName": "FBSDKShareKit", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setIsUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "caption", + "printedName": "caption", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)caption", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)caption", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setCaption:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC7captionSSSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(image:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithImage:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5image15isUserGeneratedACSo7UIImageC_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageURL:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithImageURL:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL15isUserGeneratedAC10Foundation0F0V_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(photoAsset:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithPhotoAsset:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAsset15isUserGeneratedACSo7PHAssetC_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(source:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6source15isUserGeneratedA2C6SourceOSg_Sbtcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6source15isUserGeneratedA2C6SourceOSg_Sbtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)init", + "mangledName": "$s13FBSDKShareKit10SharePhotoCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Source", + "printedName": "Source", + "children": [ + { + "kind": "Var", + "name": "image", + "printedName": "image", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (UIKit.UIImage) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(UIKit.UIImage) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5imageyAESo7UIImageCcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageyAESo7UIImageCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (Foundation.URL) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (Photos.PHAsset) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Photos.PHAsset) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetyAESo7PHAssetCcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetyAESo7PHAssetCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "image", + "printedName": "image", + "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:13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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:13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7UIImageCSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7UIImageCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "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:13FBSDKShareKit10SharePhotoC6SourceOyAESg10Foundation3URLVSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESg10Foundation3URLVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7PHAssetCSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7PHAssetCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto", + "mangledName": "$s13FBSDKShareKit10SharePhotoC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSharePhoto", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareMedia", + "printedName": "ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharePhotoContent", + "printedName": "SharePhotoContent", + "children": [ + { + "kind": "Var", + "name": "photos", + "printedName": "photos", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)photos", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)photos", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPhotos:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)ref", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)ref", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)init", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "imageFinder", + "printedName": "imageFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvp", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvg", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageFinder:validator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinder9validatorAeA21MediaLibrarySearching_p_AA0C10Validating_pXptcfc", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinder9validatorAeA21MediaLibrarySearching_p_AA0C10Validating_pXptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSharePhotoContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareUIApplication", + "printedName": "ShareUIApplication", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvpZ", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvgZ", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareUtilityProtocol", + "printedName": "ShareUtilityProtocol", + "children": [ + { + "kind": "Function", + "name": "feedShareDictionary", + "printedName": "feedShareDictionary(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAsyncWebPhotoContent", + "printedName": "buildAsyncWebPhotoContent(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any])", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP25buildAsyncWebPhotoContent_10completionyAA0ciJ0C_ySb_SSSDySSypGtctFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP25buildAsyncWebPhotoContent_10completionyAA0ciJ0C_ySb_SSSDySSypGtctFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWebShareBridgeComponents", + "printedName": "buildWebShareBridgeComponents(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP08buildWebC16BridgeComponents3forAA0gchI0VAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP08buildWebC16BridgeComponents3forAA0gchI0VAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hashtagString", + "printedName": "hashtagString(from:)", + "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": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bridgeParameters", + "printedName": "bridgeParameters(for:options:shouldFailOnDataError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentFlags", + "printedName": "getContentFlags(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP15getContentFlags3forAA0gH0VAA07SharingG0_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP15getContentFlags3forAA0gH0VAA07SharingG0_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shareMediaContentContainsPhotosAndVideos", + "printedName": "shareMediaContentContainsPhotosAndVideos(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP40shareMediaContentContainsPhotosAndVideosySbAA0cgH0CFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP40shareMediaContentContainsPhotosAndVideosySbAA0cgH0CFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "WebShareBridgeComponents", + "printedName": "WebShareBridgeComponents", + "children": [ + { + "kind": "Var", + "name": "methodName", + "printedName": "methodName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvp", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvg", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvs", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvM", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvp", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvg", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvs", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvM", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(methodName:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodName10parametersACSS_SDySSypGtcfc", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodName10parametersACSS_SDySSypGtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV", + "moduleName": "FBSDKShareKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareValidating", + "printedName": "ShareValidating", + "children": [ + { + "kind": "Function", + "name": "validateRequiredValue", + "printedName": "validateRequiredValue(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP21validateRequiredValue_5namedyyp_SStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP21validateRequiredValue_5namedyyp_SStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArgument", + "printedName": "validateArgument(_:named:in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP16validateArgument_5named2inyqd___SSShyqd__GtKSHRd__lFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP16validateArgument_5named2inyqd___SSShyqd__GtKSHRd__lFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.ShareValidating, τ_1_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArray", + "printedName": "validateArray(_:minCount:maxCount:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateNetworkURL", + "printedName": "validateNetworkURL(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateShareContent", + "printedName": "validateShareContent(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit15ShareValidatingP", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareVideo", + "printedName": "ShareVideo", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)data", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)data", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setData:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "videoAsset", + "printedName": "videoAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)videoAsset", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)videoAsset", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setVideoAsset:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "videoURL", + "printedName": "videoURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)videoURL", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)videoURL", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setVideoURL:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "previewPhoto", + "printedName": "previewPhoto", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)previewPhoto", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)previewPhoto", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setPreviewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithData:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data12previewPhotoAC10Foundation4DataV_AA0cG0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(videoAsset:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithVideoAsset:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAsset12previewPhotoACSo7PHAssetC_AA0cH0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(videoURL:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithVideoURL:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL12previewPhotoAC10Foundation0F0V_AA0cH0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(source:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6source12previewPhotoA2C6SourceOSg_AA0cG0CSgtcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6source12previewPhotoA2C6SourceOSg_AA0cG0CSgtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)init", + "mangledName": "$s13FBSDKShareKit10ShareVideoCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Source", + "printedName": "Source", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Foundation.Data) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4datayAE10Foundation4DataVcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4datayAE10Foundation4DataVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Foundation.URL) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Photos.PHAsset) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Photos.PHAsset) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetyAESo7PHAssetCcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetyAESo7PHAssetCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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:13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation4DataVSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation4DataVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "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:13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation3URLVSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation3URLVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceOyAESgSo7PHAssetCSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESgSo7PHAssetCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo", + "mangledName": "$s13FBSDKShareKit10ShareVideoC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareVideo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareMedia", + "printedName": "ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareVideoContent", + "printedName": "ShareVideoContent", + "children": [ + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)video", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)video", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setVideo:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC5videoAA0cD0CvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)ref", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)ref", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "SetterAccess", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideoContent", + "printedName": "FBSDKShareKit.ShareVideoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)init", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mediaLibrarySearcher", + "printedName": "mediaLibrarySearcher", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvp", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvg", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(validator:mediaLibrarySearcher:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validator20mediaLibrarySearcherAeA0C10Validating_pXp_AA05MediaJ9Searching_ptcfc", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validator20mediaLibrarySearcherAeA0C10Validating_pXp_AA05MediaJ9Searching_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareVideoContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Sharing", + "printedName": "Sharing", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)delegate", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "ReferenceOwnership", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)delegate", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)shareContent", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)shareContent", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit7SharingP8validateyyKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharing", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingButton", + "printedName": "SharingButton", + "children": [ + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingButton>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingButton>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingButton", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharingContent", + "printedName": "SharingContent", + "children": [ + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)placeID", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)placeID", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)ref", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)ref", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)pageID", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)pageID", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit14SharingContentP9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit14SharingContentP9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit14SharingContentP13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : FBSDKShareKit.SharingValidatable, τ_0_0 : ObjectiveC.NSObjectProtocol>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingContent", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingDelegate", + "printedName": "SharingDelegate", + "children": [ + { + "kind": "Function", + "name": "sharer", + "printedName": "sharer(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharer:didCompleteWithResults:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP6sharer_22didCompleteWithResultsyAA0C0_p_SDySSypGtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharer:didCompleteWithResults:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sharer", + "printedName": "sharer(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharer:didFailWithError:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP6sharer_16didFailWithErroryAA0C0_p_s0I0_ptF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharer:didFailWithError:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sharerDidCancel", + "printedName": "sharerDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharerDidCancel:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP15sharerDidCancelyyAA0C0_pF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharerDidCancel:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingDialog", + "printedName": "SharingDialog", + "children": [ + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit13SharingDialogP7canShowSbvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit13SharingDialogP7canShowSbvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDialog>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(im)show", + "mangledName": "$s13FBSDKShareKit13SharingDialogP4showSbyF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDialog>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "children": [ + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingValidatable>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingValidatable", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Social", + "printedName": "Social", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SocialComposeViewControllerFactory", + "printedName": "SocialComposeViewControllerFactory", + "children": [ + { + "kind": "Function", + "name": "makeSocialComposeViewController", + "printedName": "makeSocialComposeViewController()", + "children": [ + { + "kind": "TypeNominal", + "name": "SLComposeViewController", + "printedName": "Social.SLComposeViewController", + "usr": "c:objc(cs)SLComposeViewController" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC04makecdeF0So09SLComposeeF0CyF", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryC04makecdeF0So09SLComposeeF0CyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactory", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactory", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryCACycfc", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryCACycfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryC", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Social", + "printedName": "Social", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "SocialComposeViewControllerFactoryProtocol", + "children": [ + { + "kind": "Function", + "name": "makeSocialComposeViewController", + "printedName": "makeSocialComposeViewController()", + "children": [ + { + "kind": "TypeNominal", + "name": "SLComposeViewController", + "printedName": "Social.SLComposeViewController", + "usr": "c:objc(cs)SLComposeViewController" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP04makecdeF0So09SLComposeeF0CyF", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP04makecdeF0So09SLComposeeF0CyF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SocialComposeViewControllerFactoryProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "children": [ + { + "kind": "Var", + "name": "bundleForStrings", + "printedName": "bundleForStrings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.UserInterfaceStringProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "_ShareUtility", + "printedName": "_ShareUtility", + "children": [ + { + "kind": "Function", + "name": "validateRequiredValue", + "printedName": "validateRequiredValue(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO21validateRequiredValue_5namedyyp_SStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO21validateRequiredValue_5namedyyp_SStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArgument", + "printedName": "validateArgument(_:named:in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO16validateArgument_5named2inyx_SSShyxGtKSHRzlFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO16validateArgument_5named2inyx_SSShyxGtKSHRzlFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArray", + "printedName": "validateArray(_:minCount:maxCount:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateNetworkURL", + "printedName": "validateNetworkURL(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateShareContent", + "printedName": "validateShareContent(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "hasDefaultArg": true, + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWebShareBridgeComponents", + "printedName": "buildWebShareBridgeComponents(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO08buildWebC16BridgeComponents3forAA0fcgH0VAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO08buildWebC16BridgeComponents3forAA0fcgH0VAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAsyncWebPhotoContent", + "printedName": "buildAsyncWebPhotoContent(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any])", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO25buildAsyncWebPhotoContent_10completionyAA0chI0C_ySb_SSSDySSypGtctFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO25buildAsyncWebPhotoContent_10completionyAA0chI0C_ySb_SSSDySSypGtctFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "feedShareDictionary", + "printedName": "feedShareDictionary(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hashtagString", + "printedName": "hashtagString(from:)", + "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": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bridgeParameters", + "printedName": "bridgeParameters(for:options:shouldFailOnDataError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "hasDefaultArg": true, + "usr": "c:@E@FBSDKShareBridgeOptions" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentFlags", + "printedName": "getContentFlags(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO15getContentFlags3forAA0fG0VAA07SharingF0_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO15getContentFlags3forAA0fG0VAA07SharingF0_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shareMediaContentContainsPhotosAndVideos", + "printedName": "shareMediaContentContainsPhotosAndVideos(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO40shareMediaContentContainsPhotosAndVideosySbAA0cfG0CFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO40shareMediaContentContainsPhotosAndVideosySbAA0cfG0CFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit13_ShareUtilityO", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareValidating", + "printedName": "ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP" + }, + { + "kind": "Conformance", + "name": "ShareUtilityProtocol", + "printedName": "ShareUtilityProtocol", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PHImageManager", + "printedName": "PHImageManager", + "children": [ + { + "kind": "TypeDecl", + "name": "MediaLibrarySearchError", + "printedName": "MediaLibrarySearchError", + "children": [ + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Var", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvp", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Accessor", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvg", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearchError", + "printedName": "Photos.PHImageManager.MediaLibrarySearchError", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Constructor", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetAESo7PHAssetC_tcfc", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetAESo7PHAssetC_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "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": "fb_findImage", + "printedName": "fb_findImage(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fb_getVideoURL", + "printedName": "fb_getVideoURL(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE14fb_getVideoURL3for10Foundation0H0VSo7PHAssetC_tKF", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE14fb_getVideoURL3for10Foundation0H0VSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)PHImageManager", + "moduleName": "Photos", + "isOpen": true, + "intro_iOS": "8", + "objc_name": "PHImageManager", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "MediaLibrarySearching", + "printedName": "MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "messengerShareDialogShow", + "printedName": "messengerShareDialogShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messengerShareDialogResult", + "printedName": "messengerShareDialogResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sendButtonImpression", + "printedName": "sendButtonImpression", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sendButtonDidTap", + "printedName": "sendButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareButtonImpression", + "printedName": "shareButtonImpression", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareButtonDidTap", + "printedName": "shareButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareDialogShow", + "printedName": "shareDialogShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareDialogResult", + "printedName": "shareDialogResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName", + "moduleName": "FBSDKCoreKit", + "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": "ParameterName", + "printedName": "ParameterName", + "children": [ + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "outcome", + "printedName": "outcome", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentType", + "printedName": "shareContentType", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentPageID", + "printedName": "shareContentPageID", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentUUID", + "printedName": "shareContentUUID", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName", + "moduleName": "FBSDKCoreKit", + "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": "ShareDialogConfiguration", + "printedName": "ShareDialogConfiguration", + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV", + "moduleName": "FBSDKCoreKit", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ShareDialogConfigurationProtocol", + "printedName": "ShareDialogConfigurationProtocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP" + }, + { + "kind": "Conformance", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEvents", + "printedName": "AppEvents", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAppEvents", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAppEvents", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ShareEventLogging", + "printedName": "ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIApplication", + "printedName": "UIApplication", + "declKind": "Class", + "usr": "c:objc(cs)UIApplication", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIApplication", + "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": "Conformance", + "name": "ShareInternalURLOpening", + "printedName": "ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InternalUtility", + "printedName": "InternalUtility", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKInternalUtility", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKInternalUtility", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "StringLiteral", + "offset": 338, + "length": 16, + "value": "\"FBSDKShareKit.AppInviteContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 367, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 401, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 435, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/Hashtag.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 7, + "value": "\"FBSDKShareKit.Hashtag\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/MessageDialog.swift", + "kind": "BooleanLiteral", + "offset": 1367, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/MessageDialog.swift", + "kind": "BooleanLiteral", + "offset": 1508, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 32, + "value": "\"fb_messenger_dialog_share_show\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 432, + "length": 34, + "value": "\"fb_messenger_dialog_share_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 544, + "length": 27, + "value": "\"fb_send_button_impression\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 620, + "length": 24, + "value": "\"fb_send_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 724, + "length": 28, + "value": "\"fb_share_button_impression\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 802, + "length": 25, + "value": "\"fb_share_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 901, + "length": 22, + "value": "\"fb_dialog_share_show\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 973, + "length": 24, + "value": "\"fb_dialog_share_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 33, + "value": "\"fb_dialog_outcome_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 402, + "length": 19, + "value": "\"fb_dialog_outcome\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 30, + "value": "\"fb_dialog_share_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 555, + "length": 16, + "value": "\"fb_dialog_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 631, + "length": 33, + "value": "\"fb_dialog_share_content_page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 30, + "value": "\"fb_dialog_share_content_uuid\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 844, + "length": 11, + "value": "\"Cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 883, + "length": 11, + "value": "\"Completed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 919, + "length": 8, + "value": "\"Failed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 983, + "length": 8, + "value": "\"Status\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1015, + "length": 7, + "value": "\"Photo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1046, + "length": 7, + "value": "\"Video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1078, + "length": 8, + "value": "\"Camera\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1112, + "length": 9, + "value": "\"Unknown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 296, + "length": 8, + "value": "\"camera\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 328, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 389, + "length": 19, + "value": "\"completionGesture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 8, + "value": "\"cancel\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 496, + "length": 8, + "value": "\"postId\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 9, + "value": "\"post_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ShareCameraEffectContent.swift", + "kind": "StringLiteral", + "offset": 523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 6, + "value": "\"feed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 741, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 856, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 1817, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 400, + "length": 11, + "value": "\"FBSDKShareKit.ShareDialog\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "Array", + "offset": 22128, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 29908, + "length": 8, + "value": "\"app_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 29976, + "length": 10, + "value": "\"hashtags\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 30047, + "length": 8, + "value": "\"quotes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 772, + "length": 10, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 7, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 967, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 1053, + "length": 7, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 772, + "length": 10, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 7, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 967, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 1053, + "length": 7, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 24, + "value": "\"com.facebook.sdk.share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 687, + "length": 9, + "value": "201" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 845, + "length": 18, + "value": "202" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 7, + "value": "203" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 687, + "length": 9, + "value": "201" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 845, + "length": 18, + "value": "202" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 7, + "value": "203" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhoto.swift", + "kind": "BooleanLiteral", + "offset": 3009, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhoto.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"FBSDKShareKit.SharePhoto\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhotoContent.swift", + "kind": "IntegerLiteral", + "offset": 3474, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhotoContent.swift", + "kind": "IntegerLiteral", + "offset": 3480, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ShareVideo.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 10, + "value": "\"FBSDKShareKit.ShareVideo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/SocialComposeViewControllerFactory.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 27, + "value": "\"com.apple.social.facebook\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/_ShareUtility.swift", + "kind": "Array", + "offset": 2340, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/_ShareUtility.swift", + "kind": "Array", + "offset": 5265, + "length": 2, + "value": "[]" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 00000000..fdef141f --- /dev/null +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,368 @@ +// 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-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import FBSDKCoreKit +import FBSDKCoreKit_Basics +@_exported import FBSDKShareKit +import Foundation +import Photos +import Social +import Swift +import UIKit +import _Concurrency +import _StringProcessing +@objcMembers @objc(FBSDKAppInviteContent) final public class AppInviteContent : ObjectiveC.NSObject { + @objc(FBSDKAppInviteDestination) public enum Destination : Swift.Int { + case facebook + case messenger + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } + } + @objc final public var appInvitePreviewImageURL: Foundation.URL? + @objc final public var appLinkURL: Foundation.URL + @objc final public var promotionCode: Swift.String? + @objc final public var promotionText: Swift.String? + @objc final public var destination: FBSDKShareKit.AppInviteContent.Destination + @objc(initWithAppLinkURL:) public init(appLinkURL: Foundation.URL) + @objc deinit +} +extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { + @objc final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCameraEffectArguments) final public class CameraEffectArguments : ObjectiveC.NSObject { + @objc(setString:forKey:) final public func set(_ string: Swift.String?, forKey key: Swift.String) + @objc final public func string(forKey key: Swift.String) -> Swift.String? + @objc(setArray:forKey:) final public func set(_ array: [Swift.String]?, forKey key: Swift.String) + @objc final public func array(forKey key: Swift.String) -> [Swift.String]? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCameraEffectTextures) final public class CameraEffectTextures : ObjectiveC.NSObject { + @objc(setImage:forKey:) final public func set(_ image: UIKit.UIImage?, forKey key: Swift.String) + @objc(imageForKey:) final public func image(forKey key: Swift.String) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSendButton) @_Concurrency.MainActor(unsafe) final public class FBSendButton : FBSDKCoreKit.FBButton, FBSDKShareKit.SharingButton, FBSDKCoreKit.FBButtonImpressionLogging { + @objc @_Concurrency.MainActor(unsafe) final public var dialog: FBSDKShareKit.MessageDialog? + @_Concurrency.MainActor(unsafe) @objc final public var shareContent: FBSDKShareKit.SharingContent? { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc final public var analyticsParameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]? { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc final public var impressionTrackingEventName: FBSDKCoreKit.AppEvents.Name { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc final public var impressionTrackingIdentifier: Swift.String { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public func configureButton() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareButton) @_Concurrency.MainActor(unsafe) final public class FBShareButton : FBSDKCoreKit.FBButton, FBSDKShareKit.SharingButton { + @_Concurrency.MainActor(unsafe) @objc final public var shareContent: FBSDKShareKit.SharingContent? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var analyticsParameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]? { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public var impressionTrackingEventName: FBSDKCoreKit.AppEvents.Name { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public var impressionTrackingIdentifier: Swift.String { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public func configureButton() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objcMembers @objc(FBSDKHashtag) final public class Hashtag : ObjectiveC.NSObject { + @objc final public var stringRepresentation: Swift.String + @objc(initWithString:) public init(_ string: Swift.String) + @objc override final public var description: Swift.String { + @objc get + } + @objc final public var isValid: Swift.Bool { + @objc get + } + @objc override final public var hash: Swift.Int { + @objc get + } + @objc override final public func isEqual(_ object: Any?) -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKMessageDialog) public class MessageDialog : ObjectiveC.NSObject, FBSDKShareKit.SharingDialog { + @objc weak public var delegate: FBSDKShareKit.SharingDelegate? + @objc public var shareContent: FBSDKShareKit.SharingContent? + @objc public var shouldFailOnDataError: Swift.Bool + @objc(initWithContent:delegate:) convenience public init(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) + @objc(dialogWithContent:delegate:) public static func dialog(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.MessageDialog + @objc(showWithContent:delegate:) public static func show(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.MessageDialog + @objc public var canShow: Swift.Bool { + @objc get + } + @discardableResult + @objc public func show() -> Swift.Bool + @objc public func validate() throws + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareCameraEffectContent) final public class ShareCameraEffectContent : ObjectiveC.NSObject { + @objc final public var effectID: Swift.String + @objc final public var effectArguments: FBSDKShareKit.CameraEffectArguments + @objc final public var effectTextures: FBSDKShareKit.CameraEffectTextures + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public var shareUUID: Swift.String? { + get + } + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareCameraEffectContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objcMembers @objc(FBSDKShareDialog) public class ShareDialog : ObjectiveC.NSObject, FBSDKShareKit.SharingDialog { + @objc weak public var fromViewController: UIKit.UIViewController? + @objc public var mode: FBSDKShareKit.ShareDialog.Mode + @objc weak public var delegate: FBSDKShareKit.SharingDelegate? + @objc public var shareContent: FBSDKShareKit.SharingContent? + @objc public var shouldFailOnDataError: Swift.Bool + @objc(initWithViewController:content:delegate:) public init(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) + @objc deinit + @objc(dialogWithViewController:withContent:delegate:) public class func dialog(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.ShareDialog + @discardableResult + @objc(showFromViewController:withContent:delegate:) public class func show(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.ShareDialog +} +extension FBSDKShareKit.ShareDialog { + @objc dynamic public var canShow: Swift.Bool { + @objc get + } + @discardableResult + @objc dynamic public func show() -> Swift.Bool + @objc dynamic public func validate() throws +} +extension FBSDKShareKit.ShareDialog : FBSDKCoreKit.WebDialogDelegate { + @objc dynamic public func webDialog(_ webDialog: FBSDKCoreKit._WebDialog, didCompleteWithResults results: [Swift.String : Any]) + @objc dynamic public func webDialog(_ webDialog: FBSDKCoreKit._WebDialog, didFailWithError error: Swift.Error) + @objc dynamic public func webDialogDidCancel(_ webDialog: FBSDKCoreKit._WebDialog) +} +extension FBSDKShareKit.ShareDialog { + @objc(FBSDKShareDialogMode) public enum Mode : Swift.UInt, Swift.CustomStringConvertible { + case automatic + case native + case shareSheet + case browser + case web + case feedBrowser + case feedWeb + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } +} +public let ShareErrorDomain: Swift.String +@objc(FBSDKShareError) public enum ShareError : Swift.Int { + case reserved = 200 + case openGraph + case dialogNotAvailable + case unknown + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareLinkContent) final public class ShareLinkContent : ObjectiveC.NSObject { + @objc final public var quote: Swift.String? + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objc(FBSDKShareMedia) public protocol ShareMedia { +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareMediaContent) final public class ShareMediaContent : ObjectiveC.NSObject { + @objc final public var media: [FBSDKShareKit.ShareMedia] + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKSharePhoto) final public class SharePhoto : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { + @objc final public var image: UIKit.UIImage? { + @objc get + @objc set + } + @objc final public var imageURL: Foundation.URL? { + @objc get + @objc set + } + @objc final public var photoAsset: Photos.PHAsset? { + @objc get + @objc set + } + @objc final public var isUserGenerated: Swift.Bool + @objc final public var caption: Swift.String? + @objc convenience public init(image: UIKit.UIImage, isUserGenerated: Swift.Bool) + @objc convenience public init(imageURL: Foundation.URL, isUserGenerated: Swift.Bool) + @objc convenience public init(photoAsset: Photos.PHAsset, isUserGenerated: Swift.Bool) + @objc deinit +} +extension FBSDKShareKit.SharePhoto : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSharePhotoContent) final public class SharePhotoContent : ObjectiveC.NSObject { + @objc final public var photos: [FBSDKShareKit.SharePhoto] + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKShareVideo) final public class ShareVideo : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { + @objc final public var data: Foundation.Data? { + @objc get + @objc set + } + @objc final public var videoAsset: Photos.PHAsset? { + @objc get + @objc set + } + @objc final public var videoURL: Foundation.URL? { + @objc get + @objc set + } + @objc final public var previewPhoto: FBSDKShareKit.SharePhoto? + @objc convenience public init(data: Foundation.Data, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc convenience public init(videoAsset: Photos.PHAsset, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc convenience public init(videoURL: Foundation.URL, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc deinit +} +extension FBSDKShareKit.ShareVideo : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareVideoContent) final public class ShareVideoContent : ObjectiveC.NSObject { + @objc final public var video: FBSDKShareKit.ShareVideo + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public var shareUUID: Swift.String? { + get + } + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objc(FBSDKSharing) public protocol Sharing { + @objc weak var delegate: FBSDKShareKit.SharingDelegate? { get set } + @objc var shareContent: FBSDKShareKit.SharingContent? { get set } + @objc var shouldFailOnDataError: Swift.Bool { get set } + @objc(validateWithError:) func validate() throws +} +@objc(FBSDKSharingButton) public protocol SharingButton { + @objc var shareContent: FBSDKShareKit.SharingContent? { get set } +} +@objc(FBSDKSharingContent) public protocol SharingContent : FBSDKShareKit.SharingValidatable, ObjectiveC.NSObjectProtocol { + @objc var contentURL: Foundation.URL? { get set } + @objc var hashtag: FBSDKShareKit.Hashtag? { get set } + @objc var peopleIDs: [Swift.String] { get set } + @objc var placeID: Swift.String? { get set } + @objc var ref: Swift.String? { get set } + @objc var pageID: Swift.String? { get set } + @objc var shareUUID: Swift.String? { get } + @objc(addParameters:bridgeOptions:) func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +@objc(FBSDKSharingDelegate) public protocol SharingDelegate { + @objc(sharer:didCompleteWithResults:) func sharer(_ sharer: FBSDKShareKit.Sharing, didCompleteWithResults results: [Swift.String : Any]) + @objc(sharer:didFailWithError:) func sharer(_ sharer: FBSDKShareKit.Sharing, didFailWithError error: Swift.Error) + @objc(sharerDidCancel:) func sharerDidCancel(_ sharer: FBSDKShareKit.Sharing) +} +@objc(FBSDKSharingDialog) public protocol SharingDialog : FBSDKShareKit.Sharing { + @objc var canShow: Swift.Bool { get } + @objc @discardableResult + func show() -> Swift.Bool +} +@objc(FBSDKSharingValidatable) public protocol SharingValidatable { + @objc(validateWithOptions:error:) func validate(options: FBSDKShareKit.ShareBridgeOptions) throws +} +public enum _ShareUtility { +} +extension FBSDKShareKit._ShareUtility { + public static func validateRequiredValue(_ value: Any, named name: Swift.String) throws + public static func validateArgument(_ value: Argument, named name: Swift.String, in possibleValues: Swift.Set) throws where Argument : Swift.Hashable +} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.Equatable {} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.Hashable {} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.RawRepresentable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.Equatable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.Hashable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.RawRepresentable {} +extension FBSDKShareKit.ShareError : Swift.Equatable {} +extension FBSDKShareKit.ShareError : Swift.Hashable {} +extension FBSDKShareKit.ShareError : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc index 81881322..8e2e34cb 100644 Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface index c1eec404..fdef141f 100644 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import FBSDKCoreKit import FBSDKCoreKit_Basics @_exported import FBSDKShareKit @@ -10,6 +11,7 @@ import Social import Swift import UIKit import _Concurrency +import _StringProcessing @objcMembers @objc(FBSDKAppInviteContent) final public class AppInviteContent : ObjectiveC.NSObject { @objc(FBSDKAppInviteDestination) public enum Destination : Swift.Int { case facebook @@ -61,10 +63,10 @@ extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { @objc get } @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { - @_Concurrency.MainActor(unsafe) @objc get + @objc get } @objc @_Concurrency.MainActor(unsafe) final public func configureButton() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } @@ -83,10 +85,10 @@ extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { @objc get } @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { - @_Concurrency.MainActor(unsafe) @objc get + @objc get } @objc @_Concurrency.MainActor(unsafe) final public func configureButton() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } @@ -323,7 +325,6 @@ extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { @objc var shouldFailOnDataError: Swift.Bool { get set } @objc(validateWithError:) func validate() throws } -@available(tvOS, unavailable) @objc(FBSDKSharingButton) public protocol SharingButton { @objc var shareContent: FBSDKShareKit.SharingContent? { get set } } diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.abi.json b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 00000000..d8dd6f2f --- /dev/null +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,29047 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "AppInviteContent", + "printedName": "AppInviteContent", + "children": [ + { + "kind": "TypeDecl", + "name": "Destination", + "printedName": "Destination", + "children": [ + { + "kind": "Var", + "name": "facebook", + "printedName": "facebook", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.AppInviteContent.Destination.Type) -> FBSDKShareKit.AppInviteContent.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.AppInviteContent.Destination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8facebookyA2EmF", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8facebookyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "messenger", + "printedName": "messenger", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.AppInviteContent.Destination.Type) -> FBSDKShareKit.AppInviteContent.Destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.AppInviteContent.Destination.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO9messengeryA2EmF", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO9messengeryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.Destination?", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueAESgSi_tcfc", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueAESgSi_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO8rawValueSivg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11DestinationO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKAppInviteDestination", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Var", + "name": "appInvitePreviewImageURL", + "printedName": "appInvitePreviewImageURL", + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)appInvitePreviewImageURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)appInvitePreviewImageURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.URL?", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setAppInvitePreviewImageURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC03appD15PreviewImageURL10Foundation0I0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appLinkURL", + "printedName": "appLinkURL", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)appLinkURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)appLinkURL", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setAppLinkURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0Vvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0VvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURL10Foundation0H0VvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "promotionCode", + "printedName": "promotionCode", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)promotionCode", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)promotionCode", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setPromotionCode:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionCodeSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "promotionText", + "printedName": "promotionText", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)promotionText", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)promotionText", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setPromotionText:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC13promotionTextSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "destination", + "printedName": "destination", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(py)destination", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)destination", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Destination", + "printedName": "FBSDKShareKit.AppInviteContent.Destination", + "usr": "s:13FBSDKShareKit16AppInviteContentC11DestinationO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)setDestination:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC11destinationAC11DestinationOvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(appLinkURL:)", + "children": [ + { + "kind": "TypeNominal", + "name": "AppInviteContent", + "printedName": "FBSDKShareKit.AppInviteContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)initWithAppLinkURL:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC10appLinkURLAC10Foundation0H0V_tcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithAppLinkURL:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "AppInviteContent", + "printedName": "FBSDKShareKit.AppInviteContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)init", + "mangledName": "$s13FBSDKShareKit16AppInviteContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvs", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validatorAA15ShareValidating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(validator:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validator12errorFactoryAeA15ShareValidating_pXp_So18FBSDKErrorCreating_ptcfc", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV9validator12errorFactoryAeA15ShareValidating_pXp_So18FBSDKErrorCreating_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.AppInviteContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKAppInviteContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKAppInviteContent", + "mangledName": "$s13FBSDKShareKit16AppInviteContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKAppInviteContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.AppInviteContent.TypeDependencies", + "usr": "s:13FBSDKShareKit16AppInviteContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "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": "CameraEffectArguments", + "printedName": "CameraEffectArguments", + "children": [ + { + "kind": "Var", + "name": "arguments", + "printedName": "arguments", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(py)arguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC9argumentsSDySSypGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)arguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC9argumentsSDySSypGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)setString:forKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC3set_6forKeyySSSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setString:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "string", + "printedName": "string(forKey:)", + "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": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)stringForKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC6string6forKeySSSgSS_tF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)setArray:forKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC3set_6forKeyySaySSGSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setArray:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "array", + "printedName": "array(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Swift.String]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sa" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)arrayForKey:", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC5array6forKeySaySSGSgSS_tF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments(im)init", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments", + "mangledName": "$s13FBSDKShareKit21CameraEffectArgumentsC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKCameraEffectArguments", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "CameraEffectTextures", + "printedName": "CameraEffectTextures", + "children": [ + { + "kind": "Var", + "name": "textures", + "printedName": "textures", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : UIKit.UIImage]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(py)textures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC8texturesSDySSSo7UIImageCGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "SetterAccess", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : UIKit.UIImage]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)textures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC8texturesSDySSSo7UIImageCGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "set", + "printedName": "set(_:forKey:)", + "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" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)setImage:forKey:", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC3set_6forKeyySo7UIImageCSg_SStF", + "moduleName": "FBSDKShareKit", + "objc_name": "setImage:forKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "image", + "printedName": "image(forKey:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)imageForKey:", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC5image6forKeySo7UIImageCSgSS_tF", + "moduleName": "FBSDKShareKit", + "objc_name": "imageForKey:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures(im)init", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures", + "mangledName": "$s13FBSDKShareKit20CameraEffectTexturesC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKCameraEffectTextures", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ContentFlags", + "printedName": "ContentFlags", + "children": [ + { + "kind": "Var", + "name": "containsMedia", + "printedName": "containsMedia", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV13containsMediaSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMediaSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMediaSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "containsPhotos", + "printedName": "containsPhotos", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsPhotosSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsPhotosSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "containsVideos", + "printedName": "containsVideos", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit12ContentFlagsV14containsVideosSbvs", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV14containsVideosSbvM", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV14containsVideosSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(containsMedia:containsPhotos:containsVideos:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit12ContentFlagsV13containsMedia0E6Photos0E6VideosACSb_S2btcfc", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV13containsMedia0E6Photos0E6VideosACSb_S2btcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "containsAllTypes", + "printedName": "containsAllTypes", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvp", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvg", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV16containsAllTypesSbvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "|=", + "printedName": "|=(_:_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "paramValueOwnership": "InOut", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit12ContentFlagsV2oeoiyyACz_ACtFZ", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV2oeoiyyACz_ACtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit12ContentFlagsV", + "mangledName": "$s13FBSDKShareKit12ContentFlagsV", + "moduleName": "FBSDKShareKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "AssociatedType", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "declKind": "AssociatedType", + "usr": "s:13FBSDKShareKit15DependentAsTypeP0E12DependenciesQa", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP0E12DependenciesQa", + "moduleName": "FBSDKShareKit", + "protocolReq": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvsZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP22configuredDependencies0eG0QzSgvMZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "implicit": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_0_0.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP19defaultDependencies0eG0QzSgvgZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDependencies", + "printedName": "setDependencies(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE15setDependenciesyy0eG0QzFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getDependencies", + "printedName": "getDependencies()", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE15getDependencies0eG0QzyKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Subscript", + "name": "subscript", + "printedName": "subscript(dynamicMember:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Subscript", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluipZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "τ_1_0?", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "KeyPath", + "printedName": "Swift.KeyPath<τ_0_0.TypeDependencies, τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "DependentMember", + "printedName": "τ_0_0.TypeDependencies" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:s7KeyPathC" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "mangledName": "$s13FBSDKShareKit15DependentAsTypePAAE13dynamicMemberqd__Sgs7KeyPathCy0E12DependenciesQzqd__G_tcluigZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.DependentAsType>", + "sugared_genericSig": "", + "static": true, + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "DynamicMemberLookup", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "FBSendButton", + "printedName": "FBSendButton", + "children": [ + { + "kind": "Var", + "name": "dialog", + "printedName": "dialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)dialog", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "AccessControl", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)dialog", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)setDialog:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC6dialogAA13MessageDialogCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "objc_name": "setShareContent:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "analyticsParameters", + "printedName": "analyticsParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)analyticsParameters", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "analyticsParameters", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)analyticsParameters", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "analyticsParameters", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingEventName", + "printedName": "impressionTrackingEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avp", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingEventName", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avg", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingEventName", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingIdentifier", + "printedName": "impressionTrackingIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC28impressionTrackingIdentifierSSvp", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingIdentifier", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC28impressionTrackingIdentifierSSvg", + "moduleName": "FBSDKShareKit", + "objc_name": "impressionTrackingIdentifier", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isImplicitlyDisabled", + "printedName": "isImplicitlyDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(py)implicitlyDisabled", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC20isImplicitlyDisabledSbvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "implicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)isImplicitlyDisabled", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC20isImplicitlyDisabledSbvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isImplicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configureButton", + "printedName": "configureButton()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)configureButton", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC09configureD0yyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "share", + "printedName": "share()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)share", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5shareyyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "IBAction", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSendButton", + "printedName": "FBSDKShareKit.FBSendButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)initWithFrame:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBSendButton", + "printedName": "FBSDKShareKit.FBSendButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton(im)initWithCoder:", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilityAESo013FBSDKInternalH0_p_tcfc", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV15internalUtilityAESo013FBSDKInternalH0_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBSendButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSendButton", + "mangledName": "$s13FBSDKShareKit12FBSendButtonC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSendButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingButton", + "printedName": "SharingButton", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBSendButton.TypeDependencies", + "usr": "s:13FBSDKShareKit12FBSendButtonC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "FBShareButton", + "printedName": "FBShareButton", + "children": [ + { + "kind": "Var", + "name": "dialog", + "printedName": "dialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)dialog", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)dialog", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)setDialog:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC6dialogAA11ShareDialogCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "objc_name": "shareContent", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "objc_name": "setShareContent:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "analyticsParameters", + "printedName": "analyticsParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)analyticsParameters", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)analyticsParameters", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19analyticsParametersSDySo26FBSDKAppEventParameterNameaypGSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingEventName", + "printedName": "impressionTrackingEventName", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)impressionTrackingEventName", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC27impressionTrackingEventNameSo08FBSDKAppgH0avg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "impressionTrackingIdentifier", + "printedName": "impressionTrackingIdentifier", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC28impressionTrackingIdentifierSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)impressionTrackingIdentifier", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC28impressionTrackingIdentifierSSvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isImplicitlyDisabled", + "printedName": "isImplicitlyDisabled", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(py)implicitlyDisabled", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC20isImplicitlyDisabledSbvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "implicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC", + "Custom", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)isImplicitlyDisabled", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC20isImplicitlyDisabledSbvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isImplicitlyDisabled", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "configureButton", + "printedName": "configureButton()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)configureButton", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC09configureD0yyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "AccessControl", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "share", + "printedName": "share()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)share", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5shareyyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "Custom", + "IBAction", + "RawDocComment", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(frame:)", + "children": [ + { + "kind": "TypeNominal", + "name": "FBShareButton", + "printedName": "FBSDKShareKit.FBShareButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton" + }, + { + "kind": "TypeNominal", + "name": "CGRect", + "printedName": "CoreFoundation.CGRect", + "usr": "c:@S@CGRect" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)initWithFrame:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5frameACSo6CGRectV_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithFrame:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(coder:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton?", + "children": [ + { + "kind": "TypeNominal", + "name": "FBShareButton", + "printedName": "FBSDKShareKit.FBShareButton", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "NSCoder", + "printedName": "Foundation.NSCoder", + "usr": "c:objc(cs)NSCoder" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton(im)initWithCoder:", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC5coderACSgSo7NSCoderC_tcfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "initWithCoder:", + "declAttributes": [ + "Dynamic", + "ObjC", + "Custom", + "Required" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "stringProvider", + "printedName": "stringProvider", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvp", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvg", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvs", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvM", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAA28UserInterfaceStringProviding_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(stringProvider:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "UserInterfaceStringProviding", + "printedName": "FBSDKShareKit.UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAeA28UserInterfaceStringProviding_p_tcfc", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV14stringProviderAeA28UserInterfaceStringProviding_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "Custom", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.FBShareButton.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareButton", + "mangledName": "$s13FBSDKShareKit13FBShareButtonC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareButton", + "declAttributes": [ + "Custom", + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)FBSDKButton", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBButton", + "FBSDKCoreKit.ImpressionLoggingButton", + "UIKit.UIButton", + "UIKit.UIControl", + "UIKit.UIView", + "UIKit.UIResponder", + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingButton", + "printedName": "SharingButton", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP" + }, + { + "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": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.FBShareButton.TypeDependencies", + "usr": "s:13FBSDKShareKit13FBShareButtonC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Hashtag", + "printedName": "Hashtag", + "children": [ + { + "kind": "Var", + "name": "stringRepresentation", + "printedName": "stringRepresentation", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)stringRepresentation", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)stringRepresentation", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)setStringRepresentation:", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit7HashtagC20stringRepresentationSSvM", + "mangledName": "$s13FBSDKShareKit7HashtagC20stringRepresentationSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)initWithString:", + "mangledName": "$s13FBSDKShareKit7HashtagCyACSScfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithString:", + "declAttributes": [ + "AccessControl", + "ObjC" + ], + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)description", + "mangledName": "$s13FBSDKShareKit7HashtagC11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)description", + "mangledName": "$s13FBSDKShareKit7HashtagC11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "description", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "isValid", + "printedName": "isValid", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)isValid", + "mangledName": "$s13FBSDKShareKit7HashtagC7isValidSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)isValid", + "mangledName": "$s13FBSDKShareKit7HashtagC7isValidSbvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "hash", + "printedName": "hash", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(py)hash", + "mangledName": "$s13FBSDKShareKit7HashtagC4hashSivp", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)hash", + "mangledName": "$s13FBSDKShareKit7HashtagC4hashSivg", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "hash", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "isEqual", + "printedName": "isEqual(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Any?", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)isEqual:", + "mangledName": "$s13FBSDKShareKit7HashtagC7isEqualySbypSgF", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "isEqual:", + "declAttributes": [ + "Final", + "ObjC", + "Override", + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag(im)init", + "mangledName": "$s13FBSDKShareKit7HashtagCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag", + "mangledName": "$s13FBSDKShareKit7HashtagC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKHashtag", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "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": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "MediaLibrarySearching", + "printedName": "MediaLibrarySearching", + "children": [ + { + "kind": "Function", + "name": "fb_findImage", + "printedName": "fb_findImage(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.MediaLibrarySearching>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fb_getVideoURL", + "printedName": "fb_getVideoURL(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP14fb_getVideoURL3for10Foundation0I0VSo7PHAssetC_tKF", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP14fb_getVideoURL3for10Foundation0I0VSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.MediaLibrarySearching>", + "sugared_genericSig": "", + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessageDialog", + "printedName": "MessageDialog", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)delegate", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)delegate", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setDelegate:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8delegateAA15SharingDelegate_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)shareContent", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)shareContent", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShareContent:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "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@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShouldFailOnDataError:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC21shouldFailOnDataErrorSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)init", + "mangledName": "$s13FBSDKShareKit13MessageDialogCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Convenience", + "Override", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)initWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7content8delegateAcA14SharingContent_pSg_AA0G8Delegate_pSgtcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithContent:delegate:", + "declAttributes": [ + "Convenience", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(content:delegate:shareDialogConfiguration:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "ShareDialogConfigurationProtocol", + "printedName": "FBSDKShareKit.ShareDialogConfigurationProtocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessageDialogC7content8delegate05shareD13ConfigurationAcA14SharingContent_pSg_AA0I8Delegate_pSgAA05SharedH8Protocol_ptcfc", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7content8delegate05shareD13ConfigurationAcA14SharingContent_pSg_AA0I8Delegate_pSgAA05SharedH8Protocol_ptcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "dialog", + "printedName": "dialog(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(cm)dialogWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC6dialog7content8delegateAcA14SharingContent_pSg_AA0H8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "objc_name": "dialogWithContent:delegate:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show(content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MessageDialog", + "printedName": "FBSDKShareKit.MessageDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(cm)showWithContent:delegate:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC4show7content8delegateAcA14SharingContent_pSg_AA0H8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "objc_name": "showWithContent:delegate:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7canShowSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit13MessageDialogC7canShowSbvg", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)show", + "mangledName": "$s13FBSDKShareKit13MessageDialogC4showSbyF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "show", + "declAttributes": [ + "ObjC", + "AccessControl", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC8validateyyKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "ObjC", + "AccessControl", + "RawDocComment" + ], + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleCompletion", + "printedName": "handleCompletion(dialogResults:response:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIResponse", + "printedName": "FBSDKCoreKit.BridgeAPIResponse", + "usr": "c:objc(cs)FBSDKBridgeAPIResponse" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog(im)handleCompletionWithDialogResults:response:", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16handleCompletion13dialogResults8responseySDySSypG_So22FBSDKBridgeAPIResponseCtF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "accessTokenWallet", + "printedName": "accessTokenWallet", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWalletSo011FBSDKAccessH9Providing_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestFactory", + "printedName": "bridgeAPIRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestOpener", + "printedName": "bridgeAPIRequestOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV11eventLoggerAA17ShareEventLogging_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV15internalUtilitySo27FBSDKAppAvailabilityChecker_So013FBSDKInternalH0pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUtility", + "printedName": "shareUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvp", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvg", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvs", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvM", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV12shareUtilityAA05ShareH8Protocol_AA0I10ValidatingpXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(accessTokenWallet:bridgeAPIRequestFactory:bridgeAPIRequestOpener:errorFactory:eventLogger:internalUtility:shareUtility:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKCoreKit._AccessTokenProviding.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "_AccessTokenProviding", + "printedName": "FBSDKCoreKit._AccessTokenProviding", + "usr": "c:objc(pl)FBSDKAccessTokenProviding" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKCoreKit.AppAvailabilityChecker & FBSDKCoreKit.InternalUtilityProtocol" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWallet23bridgeAPIRequestFactory0jK6Opener05errorL011eventLogger15internalUtility05shareR0AESo011FBSDKAccessH9Providing_pXp_So011FBSDKBridgeK8Creating_pSo0vK7Opening_pSo010FBSDKErrorW0_pAA17ShareEventLogging_pSo27FBSDKAppAvailabilityChecker_So013FBSDKInternalR0pAA0zR8Protocol_AA0Z10ValidatingpXptcfc", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV17accessTokenWallet23bridgeAPIRequestFactory0jK6Opener05errorL011eventLogger15internalUtility05shareR0AESo011FBSDKAccessH9Providing_pXp_So011FBSDKBridgeK8Creating_pSo0vK7Opening_pSo010FBSDKErrorW0_pAA17ShareEventLogging_pSo27FBSDKAppAvailabilityChecker_So013FBSDKInternalR0pAA0zR8Protocol_AA0Z10ValidatingpXptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit13MessageDialogC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.MessageDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit13MessageDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKMessageDialog", + "mangledName": "$s13FBSDKShareKit13MessageDialogC", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "FBSDKMessageDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingDialog", + "printedName": "SharingDialog", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP" + }, + { + "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": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.MessageDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit13MessageDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "MessengerIcon", + "printedName": "MessengerIcon", + "children": [ + { + "kind": "Function", + "name": "path", + "printedName": "path(with:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "CoreGraphics.CGPath?", + "children": [ + { + "kind": "TypeNominal", + "name": "CGPath", + "printedName": "CoreGraphics.CGPath", + "usr": "c:@T@CGPathRef" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "CGSize", + "printedName": "CoreFoundation.CGSize", + "usr": "c:@S@CGSize" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13MessengerIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "mangledName": "$s13FBSDKShareKit13MessengerIconC4path4withSo9CGPathRefaSgSo6CGSizeV_tF", + "moduleName": "FBSDKShareKit", + "overriding": true, + "objc_name": "pathWith:", + "declAttributes": [ + "Final", + "ObjC", + "Override" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MessengerIcon", + "printedName": "FBSDKShareKit.MessengerIcon", + "usr": "s:13FBSDKShareKit13MessengerIconC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit13MessengerIconCACycfc", + "mangledName": "$s13FBSDKShareKit13MessengerIconCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit13MessengerIconC", + "mangledName": "$s13FBSDKShareKit13MessengerIconC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKMessengerIcon", + "declAttributes": [ + "ObjCRuntimeName", + "Final", + "ObjC", + "ObjCMembers" + ], + "superclassUsr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKIcon", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "FBSDKCoreKit.FBIcon", + "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": "MissingDependenciesError", + "printedName": "MissingDependenciesError", + "children": [ + { + "kind": "Var", + "name": "dependentType", + "printedName": "dependentType", + "children": [ + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV13dependentType025_F6BEFA4E8B98C73B76B4E918H6DF1851LLxmvp", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV13dependentType025_F6BEFA4E8B98C73B76B4E918H6DF1851LLxmvp", + "moduleName": "FBSDKShareKit", + "isInternal": true, + "declAttributes": [ + "HasStorage", + "AccessControl" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MissingDependenciesError", + "printedName": "FBSDKShareKit.MissingDependenciesError<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "τ_0_0.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV3forACyxGxm_tcfc", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvp", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvg", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24MissingDependenciesErrorV", + "mangledName": "$s13FBSDKShareKit24MissingDependenciesErrorV", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0>", + "sugared_genericSig": "", + "declAttributes": [ + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareAppEventsParameters", + "printedName": "ShareAppEventsParameters", + "children": [ + { + "kind": "TypeDecl", + "name": "DialogOutcomeValue", + "printedName": "DialogOutcomeValue", + "children": [ + { + "kind": "Var", + "name": "cancelled", + "printedName": "cancelled", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9cancelledSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "completed", + "printedName": "completed", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO9completedSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "failed", + "printedName": "failed", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO6failedSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO18DialogOutcomeValueO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ContentTypeValue", + "printedName": "ContentTypeValue", + "children": [ + { + "kind": "Var", + "name": "status", + "printedName": "status", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6statusSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "photo", + "printedName": "photo", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5photoSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO5videoSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "camera", + "printedName": "camera", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO6cameraSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvpZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvgZ", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO7unknownSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO16ContentTypeValueO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit24ShareAppEventsParametersO", + "mangledName": "$s13FBSDKShareKit24ShareAppEventsParametersO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareBridgeAPI", + "printedName": "ShareBridgeAPI", + "children": [ + { + "kind": "TypeDecl", + "name": "MethodName", + "printedName": "MethodName", + "children": [ + { + "kind": "Var", + "name": "camera", + "printedName": "camera", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO6cameraSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "share", + "printedName": "share", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO5shareSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO10MethodNameO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO10MethodNameO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "CompletionGesture", + "printedName": "CompletionGesture", + "children": [ + { + "kind": "Var", + "name": "key", + "printedName": "key", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO3keySSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "cancelValue", + "printedName": "cancelValue", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO11cancelValueSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO17CompletionGestureO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PostIDKey", + "printedName": "PostIDKey", + "children": [ + { + "kind": "Var", + "name": "results", + "printedName": "results", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO7resultsSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "webParameters", + "printedName": "webParameters", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvpZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "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:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvgZ", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO13webParametersSSvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO9PostIDKeyO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit14ShareBridgeAPIO", + "mangledName": "$s13FBSDKShareKit14ShareBridgeAPIO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareBridgeAPIRequestFactory", + "printedName": "ShareBridgeAPIRequestFactory", + "children": [ + { + "kind": "Function", + "name": "bridgeAPIRequest", + "printedName": "bridgeAPIRequest(with:scheme:methodName:parameters:userInfo:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol?", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestProtocol", + "printedName": "FBSDKCoreKit.BridgeAPIRequestProtocol", + "usr": "c:objc(pl)FBSDKBridgeAPIRequest" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "FBSDKBridgeAPIProtocolType", + "printedName": "FBSDKCoreKit.FBSDKBridgeAPIProtocolType", + "usr": "c:@E@FBSDKBridgeAPIProtocolType" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC06bridgeE04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeE0_pSgSo0O15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryC06bridgeE04with6scheme10methodName10parameters8userInfoSo011FBSDKBridgeE0_pSgSo0O15APIProtocolTypeV_S2SSgSDySSypGSgAPtF", + "moduleName": "FBSDKShareKit", + "objc_name": "bridgeAPIRequestWithProtocolType:scheme:methodName:parameters:userInfo:", + "declAttributes": [ + "Final", + "ObjC" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareBridgeAPIRequestFactory", + "printedName": "FBSDKShareKit.ShareBridgeAPIRequestFactory", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryCACycfc", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryCACycfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit28ShareBridgeAPIRequestFactoryC", + "mangledName": "$s13FBSDKShareKit28ShareBridgeAPIRequestFactoryC", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareCameraEffectContent", + "printedName": "ShareCameraEffectContent", + "children": [ + { + "kind": "Var", + "name": "effectID", + "printedName": "effectID", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8effectIDSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "effectArguments", + "printedName": "effectArguments", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectArguments", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectArguments", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CameraEffectArguments", + "printedName": "FBSDKShareKit.CameraEffectArguments", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectArguments" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectArguments:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0CvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC15effectArgumentsAA0deH0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "effectTextures", + "printedName": "effectTextures", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)effectTextures", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)effectTextures", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "CameraEffectTextures", + "printedName": "FBSDKShareKit.CameraEffectTextures", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKCameraEffectTextures" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setEffectTextures:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0CvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC14effectTexturesAA0deH0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC10contentURL10Foundation0H0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)placeID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)placeID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)ref", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)ref", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)pageID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)pageID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "SetterAccess", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareCameraEffectContent", + "printedName": "FBSDKShareKit.ShareCameraEffectContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)init", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtilitySo013FBSDKInternalJ0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalUtility:errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtility12errorFactoryAESo013FBSDKInternalJ0_p_So18FBSDKErrorCreating_ptcfc", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV15internalUtility12errorFactoryAESo013FBSDKInternalJ0_p_So18FBSDKErrorCreating_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC22configuredDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvpZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvgZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvsZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvMZ", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC19defaultDependenciesAC04TypeH0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareCameraEffectContent", + "mangledName": "$s13FBSDKShareKit24ShareCameraEffectContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareCameraEffectContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareCameraEffectContent.TypeDependencies", + "usr": "s:13FBSDKShareKit24ShareCameraEffectContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareDialog", + "printedName": "ShareDialog", + "children": [ + { + "kind": "Var", + "name": "fromViewController", + "printedName": "fromViewController", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "UIKit.UIViewController?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)fromViewController", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)fromViewController", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setFromViewController:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC18fromViewControllerSo06UIViewG0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)mode", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)mode", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setMode:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC4modeAC4ModeOvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4modeAC4ModeOvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)delegate", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "ReferenceOwnership", + "AccessControl", + "RawDocComment" + ], + "ownership": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)delegate", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "delegate", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setDelegate:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8delegateAA15SharingDelegate_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)shareContent", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)shareContent", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shareContent", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShareContent:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC12shareContentAA07SharingF0_pSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "declAttributes": [ + "HasInitialValue", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "shouldFailOnDataError", + "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@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "objc_name": "setShouldFailOnDataError:", + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC21shouldFailOnDataErrorSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "webDialog", + "printedName": "webDialog", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)webDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit._WebDialog?", + "children": [ + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)setWebDialog:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "declAttributes": [ + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD009FBSDKCoreB004_WebD0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "isOpen": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)initWithViewController:content:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC14viewController7content8delegateACSo06UIViewF0CSg_AA14SharingContent_pSgAA0J8Delegate_pSgtcfc", + "moduleName": "FBSDKShareKit", + "objc_name": "initWithViewController:content:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "dialog", + "printedName": "dialog(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(cm)dialogWithViewController:withContent:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC6dialog14viewController7content8delegateACSo06UIViewG0CSg_AA14SharingContent_pSgAA0K8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isOpen": true, + "objc_name": "dialogWithViewController:withContent:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "show", + "printedName": "show(viewController:content:delegate:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + }, + { + "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": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(cm)showFromViewController:withContent:delegate:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4show14viewController7content8delegateACSo06UIViewG0CSg_AA14SharingContent_pSgAA0K8Delegate_pSgtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isOpen": true, + "objc_name": "showFromViewController:withContent:delegate:", + "declAttributes": [ + "AccessControl", + "ObjC", + "DiscardableResult", + "RawDocComment" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareDialog", + "printedName": "FBSDKShareKit.ShareDialog", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)init", + "mangledName": "$s13FBSDKShareKit11ShareDialogCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "internalURLOpener", + "printedName": "internalURLOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpenerAA0C18InternalURLOpening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "internalUtility", + "printedName": "internalUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV15internalUtilitySo013FBSDKInternalH0_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "settings", + "printedName": "settings", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 2, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV8settings09FBSDKCoreB016SettingsProtocol_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUtility", + "printedName": "shareUtility", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 3, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12shareUtilityAA0cH8Protocol_AA0C10ValidatingpXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestFactory", + "printedName": "bridgeAPIRequestFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 4, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV23bridgeAPIRequestFactorySo011FBSDKBridgeH8Creating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "bridgeAPIRequestOpener", + "printedName": "bridgeAPIRequestOpener", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 5, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV22bridgeAPIRequestOpenerSo011FBSDKBridgeH7Opening_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "socialComposeViewControllerFactory", + "printedName": "socialComposeViewControllerFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 6, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV34socialComposeViewControllerFactoryAA06SocialhijK8Protocol_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "windowFinder", + "printedName": "windowFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 7, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12windowFinderSo19_FBSDKWindowFinding_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 8, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "eventLogger", + "printedName": "eventLogger", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 9, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV11eventLoggerAA0C12EventLogging_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mediaLibrarySearcher", + "printedName": "mediaLibrarySearcher", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 10, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvs", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvM", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV20mediaLibrarySearcherAA05MediaH9Searching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(internalURLOpener:internalUtility:settings:shareUtility:bridgeAPIRequestFactory:bridgeAPIRequestOpener:socialComposeViewControllerFactory:windowFinder:errorFactory:eventLogger:mediaLibrarySearcher:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + }, + { + "kind": "TypeNominal", + "name": "InternalUtilityProtocol", + "printedName": "FBSDKCoreKit.InternalUtilityProtocol", + "usr": "c:objc(pl)FBSDKInternalUtility" + }, + { + "kind": "TypeNominal", + "name": "SettingsProtocol", + "printedName": "FBSDKCoreKit.SettingsProtocol", + "usr": "c:@M@FBSDKCoreKit@objc(pl)FBSDKSettings" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "(FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating).Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "FBSDKShareKit.ShareUtilityProtocol & FBSDKShareKit.ShareValidating" + } + ] + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestCreating", + "printedName": "FBSDKCoreKit.BridgeAPIRequestCreating", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestCreating" + }, + { + "kind": "TypeNominal", + "name": "BridgeAPIRequestOpening", + "printedName": "FBSDKCoreKit.BridgeAPIRequestOpening", + "usr": "c:objc(pl)FBSDKBridgeAPIRequestOpening" + }, + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + }, + { + "kind": "TypeNominal", + "name": "_WindowFinding", + "printedName": "FBSDKCoreKit._WindowFinding", + "usr": "c:objc(pl)_FBSDKWindowFinding" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + }, + { + "kind": "TypeNominal", + "name": "ShareEventLogging", + "printedName": "FBSDKShareKit.ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpener0G7Utility8settings05shareI023bridgeAPIRequestFactory0lM6Opener027socialComposeViewControllerN012windowFinder05errorN011eventLogger20mediaLibrarySearcherAeA0C18InternalURLOpening_p_So013FBSDKInternalI0_p09FBSDKCoreB016SettingsProtocol_pAA0cI8Protocol_AA0C10ValidatingpXpSo011FBSDKBridgeM8Creating_pSo011FBSDKBridgeM7Opening_pAA06SocialqrsN8Protocol_pSo19_FBSDKWindowFinding_pSo18FBSDKErrorCreating_pAA0C12EventLogging_pAA05MediaZ9Searching_ptcfc", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV17internalURLOpener0G7Utility8settings05shareI023bridgeAPIRequestFactory0lM6Opener027socialComposeViewControllerN012windowFinder05errorN011eventLogger20mediaLibrarySearcherAeA0C18InternalURLOpening_p_So013FBSDKInternalI0_p09FBSDKCoreB016SettingsProtocol_pAA0cI8Protocol_AA0C10ValidatingpXpSo011FBSDKBridgeM8Creating_pSo011FBSDKBridgeM7Opening_pAA06SocialqrsN8Protocol_pSo19_FBSDKWindowFinding_pSo18FBSDKErrorCreating_pAA0C12EventLogging_pAA05MediaZ9Searching_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit11ShareDialogC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareDialog.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit11ShareDialogC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit11ShareDialogC7canShowSbvp", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "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@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit11ShareDialogC7canShowSbvg", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "canShow", + "declAttributes": [ + "Dynamic", + "ObjC" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)show", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4showSbyF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "show", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl", + "DiscardableResult" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC8validateyyKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialog", + "printedName": "webDialog(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog:didCompleteWithResults:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD0_22didCompleteWithResultsy09FBSDKCoreB004_WebD0C_SDySSypGtF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialog:didCompleteWithResults:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialog", + "printedName": "webDialog(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialog:didFailWithError:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD0_16didFailWithErrory09FBSDKCoreB004_WebD0C_s0I0_ptF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialog:didFailWithError:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "webDialogDidCancel", + "printedName": "webDialogDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "_WebDialog", + "printedName": "FBSDKCoreKit._WebDialog", + "usr": "c:@M@FBSDKCoreKit@objc(cs)FBSDKWebDialog" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareDialog(im)webDialogDidCancel:", + "mangledName": "$s13FBSDKShareKit11ShareDialogC03webD9DidCancelyy09FBSDKCoreB004_WebD0CF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "webDialogDidCancel:", + "declAttributes": [ + "Dynamic", + "ObjC", + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Mode", + "printedName": "Mode", + "children": [ + { + "kind": "Var", + "name": "automatic", + "printedName": "automatic", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO9automaticyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO9automaticyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "native", + "printedName": "native", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO6nativeyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO6nativeyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "shareSheet", + "printedName": "shareSheet", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO10shareSheetyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO10shareSheetyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "browser", + "printedName": "browser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO7browseryA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO7browseryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "web", + "printedName": "web", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO3webyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO3webyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "feedBrowser", + "printedName": "feedBrowser", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO11feedBrowseryA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11feedBrowseryA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 5 + }, + { + "kind": "Var", + "name": "feedWeb", + "printedName": "feedWeb", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareDialog.Mode.Type) -> FBSDKShareKit.ShareDialog.Mode", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareDialog.Mode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO7feedWebyA2EmF", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO7feedWebyA2EmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 6 + }, + { + "kind": "Var", + "name": "description", + "printedName": "description", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO11descriptionSSvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareDialog.Mode?", + "children": [ + { + "kind": "TypeNominal", + "name": "Mode", + "printedName": "FBSDKShareKit.ShareDialog.Mode", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO8rawValueAESgSu_tcfc", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueAESgSu_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvp", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt", + "printedName": "Swift.UInt", + "usr": "s:Su" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvg", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO8rawValueSuvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit11ShareDialogC4ModeO", + "mangledName": "$s13FBSDKShareKit11ShareDialogC4ModeO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareDialogMode", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "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": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareDialog", + "mangledName": "$s13FBSDKShareKit11ShareDialogC", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "objc_name": "FBSDKShareDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingDialog", + "printedName": "SharingDialog", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP" + }, + { + "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": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + }, + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareDialog.TypeDependencies", + "usr": "s:13FBSDKShareKit11ShareDialogC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareDialogConfigurationProtocol", + "printedName": "ShareDialogConfigurationProtocol", + "children": [ + { + "kind": "Function", + "name": "shouldUseNativeDialog", + "printedName": "shouldUseNativeDialog(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP015shouldUseNativeD003forD4NameSbSS_tF", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP015shouldUseNativeD003forD4NameSbSS_tF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareDialogConfigurationProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shouldUseSafariViewController", + "printedName": "shouldUseSafariViewController(forDialogName:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP29shouldUseSafariViewController03forD4NameSbSS_tF", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP29shouldUseSafariViewController03forD4NameSbSS_tF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareDialogConfigurationProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Var", + "name": "ShareErrorDomain", + "printedName": "ShareErrorDomain", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit16ShareErrorDomainSSvp", + "mangledName": "$s13FBSDKShareKit16ShareErrorDomainSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "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:13FBSDKShareKit16ShareErrorDomainSSvg", + "mangledName": "$s13FBSDKShareKit16ShareErrorDomainSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "TypeDecl", + "name": "ShareError", + "printedName": "ShareError", + "children": [ + { + "kind": "Var", + "name": "reserved", + "printedName": "reserved", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorReserved", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8reservedyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "openGraph", + "printedName": "openGraph", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorOpenGraph", + "mangledName": "$s13FBSDKShareKit10ShareErrorO9openGraphyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "dialogNotAvailable", + "printedName": "dialogNotAvailable", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorDialogNotAvailable", + "mangledName": "$s13FBSDKShareKit10ShareErrorO18dialogNotAvailableyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareError.Type) -> FBSDKShareKit.ShareError", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareError.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError@FBSDKShareErrorUnknown", + "mangledName": "$s13FBSDKShareKit10ShareErrorO7unknownyA2CmF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareError?", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareError", + "printedName": "FBSDKShareKit.ShareError", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareErrorO8rawValueACSgSi_tcfc", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueACSgSi_tcfc", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareErrorO8rawValueSivp", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueSivp", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareErrorO8rawValueSivg", + "mangledName": "$s13FBSDKShareKit10ShareErrorO8rawValueSivg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@FBSDKShareKit@E@FBSDKShareError", + "mangledName": "$s13FBSDKShareKit10ShareErrorO", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareError", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "enumRawTypeName": "Int", + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareEventLogging", + "printedName": "ShareEventLogging", + "children": [ + { + "kind": "Function", + "name": "logInternalEvent", + "printedName": "logInternalEvent(_:parameters:isImplicitlyLogged:accessToken:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[FBSDKCoreKit.AppEvents.ParameterName : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKCoreKit.AccessToken?", + "children": [ + { + "kind": "TypeNominal", + "name": "AccessToken", + "printedName": "FBSDKCoreKit.AccessToken", + "usr": "c:objc(cs)FBSDKAccessToken" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP011logInternalD0_10parameters18isImplicitlyLogged11accessTokenySo08FBSDKAppD4Namea_SDySo0nd9ParameterO0aypGSgSbSo011FBSDKAccessM0CSgtF", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP011logInternalD0_10parameters18isImplicitlyLogged11accessTokenySo08FBSDKAppD4Namea_SDySo0nd9ParameterO0aypGSgSbSo011FBSDKAccessM0CSgtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareEventLogging>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareInternalURLOpening", + "printedName": "ShareInternalURLOpening", + "children": [ + { + "kind": "Function", + "name": "canOpenURL", + "printedName": "canOpenURL(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening(im)canOpenURL:", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP10canOpenURLySb10Foundation0H0VF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareInternalURLOpening>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKShareInternalURLOpening", + "declAttributes": [ + "ObjC" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareLinkContent", + "printedName": "ShareLinkContent", + "children": [ + { + "kind": "Var", + "name": "quote", + "printedName": "quote", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)quote", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)quote", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setQuote:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC5quoteSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC5quoteSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)placeID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)placeID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)ref", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)ref", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)pageID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)pageID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareLinkContent", + "printedName": "FBSDKShareKit.ShareLinkContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)init", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareLinkContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareLinkContent", + "mangledName": "$s13FBSDKShareKit16ShareLinkContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareLinkContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "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": "ShareMedia", + "printedName": "ShareMedia", + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKShareMedia", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareMediaContent", + "printedName": "ShareMediaContent", + "children": [ + { + "kind": "Var", + "name": "media", + "printedName": "media", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)media", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)media", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.ShareMedia]", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMedia", + "printedName": "FBSDKShareKit.ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setMedia:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC5mediaSayAA0cD0_pGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)ref", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)ref", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)init", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareMediaContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent", + "mangledName": "$s13FBSDKShareKit17ShareMediaContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareMediaContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharePhoto", + "printedName": "SharePhoto", + "children": [ + { + "kind": "Var", + "name": "image", + "printedName": "image", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)image", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)image", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setImage:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5imageSo7UIImageCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "imageURL", + "printedName": "imageURL", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)imageURL", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)imageURL", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setImageURL:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL10Foundation0F0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "photoAsset", + "printedName": "photoAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)photoAsset", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)photoAsset", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setPhotoAsset:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAssetSo7PHAssetCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isUserGenerated", + "printedName": "isUserGenerated", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)isUserGenerated", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)isUserGenerated", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvg", + "moduleName": "FBSDKShareKit", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setIsUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC15isUserGeneratedSbvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "caption", + "printedName": "caption", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhoto(py)caption", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)caption", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)setCaption:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC7captionSSSgvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC7captionSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(image:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithImage:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC5image15isUserGeneratedACSo7UIImageC_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageURL:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithImageURL:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8imageURL15isUserGeneratedAC10Foundation0F0V_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(photoAsset:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)initWithPhotoAsset:isUserGenerated:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC10photoAsset15isUserGeneratedACSo7PHAssetC_Sbtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(source:isUserGenerated:)", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6source15isUserGeneratedA2C6SourceOSg_Sbtcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6source15isUserGeneratedA2C6SourceOSg_Sbtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)init", + "mangledName": "$s13FBSDKShareKit10SharePhotoCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit10SharePhotoC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhoto.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10SharePhotoC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhoto(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit10SharePhotoC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Source", + "printedName": "Source", + "children": [ + { + "kind": "Var", + "name": "image", + "printedName": "image", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (UIKit.UIImage) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(UIKit.UIImage) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5imageyAESo7UIImageCcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageyAESo7UIImageCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (Foundation.URL) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.SharePhoto.Source.Type) -> (Photos.PHAsset) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Photos.PHAsset) -> FBSDKShareKit.SharePhoto.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.SharePhoto.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetyAESo7PHAssetCcAEmF", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetyAESo7PHAssetCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "image", + "printedName": "image", + "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:13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5imageSo7UIImageCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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:13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO3url10Foundation3URLVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvp", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvg", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO5assetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7UIImageCSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7UIImageCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "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:13FBSDKShareKit10SharePhotoC6SourceOyAESg10Foundation3URLVSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESg10Foundation3URLVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.SharePhoto.Source", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7PHAssetCSgcfc", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceOyAESgSo7PHAssetCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit10SharePhotoC6SourceO", + "mangledName": "$s13FBSDKShareKit10SharePhotoC6SourceO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto", + "mangledName": "$s13FBSDKShareKit10SharePhotoC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSharePhoto", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareMedia", + "printedName": "ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhoto.TypeDependencies", + "usr": "s:13FBSDKShareKit10SharePhotoC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharePhotoContent", + "printedName": "SharePhotoContent", + "children": [ + { + "kind": "Var", + "name": "photos", + "printedName": "photos", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)photos", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)photos", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[FBSDKShareKit.SharePhoto]", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPhotos:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6photosSayAA0cD0CGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)ref", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)ref", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)init", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "imageFinder", + "printedName": "imageFinder", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvp", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvg", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinderAA21MediaLibrarySearching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(imageFinder:validator:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinder9validatorAeA21MediaLibrarySearching_p_AA0C10Validating_pXptcfc", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV11imageFinder9validatorAeA21MediaLibrarySearching_p_AA0C10Validating_pXptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent", + "mangledName": "$s13FBSDKShareKit17SharePhotoContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKSharePhotoContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.SharePhotoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17SharePhotoContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareUIApplication", + "printedName": "ShareUIApplication", + "children": [ + { + "kind": "Var", + "name": "shared", + "printedName": "shared", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvpZ", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareInternalURLOpening", + "printedName": "FBSDKShareKit.ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvgZ", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO6sharedAA0C18InternalURLOpening_pvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit18ShareUIApplicationO", + "mangledName": "$s13FBSDKShareKit18ShareUIApplicationO", + "moduleName": "FBSDKShareKit", + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareUtilityProtocol", + "printedName": "ShareUtilityProtocol", + "children": [ + { + "kind": "Function", + "name": "feedShareDictionary", + "printedName": "feedShareDictionary(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAsyncWebPhotoContent", + "printedName": "buildAsyncWebPhotoContent(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any])", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP25buildAsyncWebPhotoContent_10completionyAA0ciJ0C_ySb_SSSDySSypGtctFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP25buildAsyncWebPhotoContent_10completionyAA0ciJ0C_ySb_SSSDySSypGtctFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWebShareBridgeComponents", + "printedName": "buildWebShareBridgeComponents(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP08buildWebC16BridgeComponents3forAA0gchI0VAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP08buildWebC16BridgeComponents3forAA0gchI0VAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hashtagString", + "printedName": "hashtagString(from:)", + "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": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bridgeParameters", + "printedName": "bridgeParameters(for:options:shouldFailOnDataError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentFlags", + "printedName": "getContentFlags(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP15getContentFlags3forAA0gH0VAA07SharingG0_p_tFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP15getContentFlags3forAA0gH0VAA07SharingG0_p_tFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shareMediaContentContainsPhotosAndVideos", + "printedName": "shareMediaContentContainsPhotosAndVideos(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP40shareMediaContentContainsPhotosAndVideosySbAA0cgH0CFZ", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP40shareMediaContentContainsPhotosAndVideosySbAA0cgH0CFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareUtilityProtocol>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "WebShareBridgeComponents", + "printedName": "WebShareBridgeComponents", + "children": [ + { + "kind": "Var", + "name": "methodName", + "printedName": "methodName", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvp", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvg", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "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:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvs", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvM", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodNameSSvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "parameters", + "printedName": "parameters", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvp", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvg", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvs", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvM", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10parametersSDySSypGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(methodName:parameters:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV10methodName10parametersACSS_SDySSypGtcfc", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV10methodName10parametersACSS_SDySSypGtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV", + "mangledName": "$s13FBSDKShareKit24WebShareBridgeComponentsV", + "moduleName": "FBSDKShareKit", + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "ShareValidating", + "printedName": "ShareValidating", + "children": [ + { + "kind": "Function", + "name": "validateRequiredValue", + "printedName": "validateRequiredValue(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP21validateRequiredValue_5namedyyp_SStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP21validateRequiredValue_5namedyyp_SStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArgument", + "printedName": "validateArgument(_:named:in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_1_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_1_0" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP16validateArgument_5named2inyqd___SSShyqd__GtKSHRd__lFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP16validateArgument_5named2inyqd___SSShyqd__GtKSHRd__lFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0, τ_1_0 where τ_0_0 : FBSDKShareKit.ShareValidating, τ_1_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArray", + "printedName": "validateArray(_:minCount:maxCount:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateNetworkURL", + "printedName": "validateNetworkURL(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateShareContent", + "printedName": "validateShareContent(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit15ShareValidatingP08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.ShareValidating>", + "sugared_genericSig": "", + "static": true, + "protocolReq": true, + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit15ShareValidatingP", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareVideo", + "printedName": "ShareVideo", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)data", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)data", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setData:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data10Foundation4DataVSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "videoAsset", + "printedName": "videoAsset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)videoAsset", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)videoAsset", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setVideoAsset:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAssetSo7PHAssetCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "videoURL", + "printedName": "videoURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)videoURL", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)videoURL", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setVideoURL:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL10Foundation0F0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "previewPhoto", + "printedName": "previewPhoto", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(py)previewPhoto", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)previewPhoto", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)setPreviewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC12previewPhotoAA0cF0CSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(data:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithData:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC4data12previewPhotoAC10Foundation4DataV_AA0cG0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(videoAsset:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithVideoAsset:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC10videoAsset12previewPhotoACSo7PHAssetC_AA0cH0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(videoURL:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)initWithVideoURL:previewPhoto:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8videoURL12previewPhotoAC10Foundation0F0V_AA0cH0CSgtcfc", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Convenience", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "init_kind": "Convenience" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(source:previewPhoto:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharePhoto?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharePhoto", + "printedName": "FBSDKShareKit.SharePhoto", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhoto" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6source12previewPhotoA2C6SourceOSg_AA0cG0CSgtcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6source12previewPhotoA2C6SourceOSg_AA0cG0CSgtcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)init", + "mangledName": "$s13FBSDKShareKit10ShareVideoCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "errorFactory", + "printedName": "errorFactory", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactorySo18FBSDKErrorCreating_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(errorFactory:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ErrorCreating", + "printedName": "FBSDKCoreKit.ErrorCreating", + "usr": "c:objc(pl)FBSDKErrorCreating" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV12errorFactoryAESo18FBSDKErrorCreating_p_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit10ShareVideoC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC22configuredDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvpZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvgZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideo.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvsZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvMZ", + "mangledName": "$s13FBSDKShareKit10ShareVideoC19defaultDependenciesAC04TypeF0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideo(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit10ShareVideoC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Source", + "printedName": "Source", + "children": [ + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Foundation.Data) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.Data) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4datayAE10Foundation4DataVcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4datayAE10Foundation4DataVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Foundation.URL) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Foundation.URL) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3urlyAE10Foundation3URLVcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(FBSDKShareKit.ShareVideo.Source.Type) -> (Photos.PHAsset) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Photos.PHAsset) -> FBSDKShareKit.ShareVideo.Source", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ] + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "FBSDKShareKit.ShareVideo.Source.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetyAESo7PHAssetCcAEmF", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetyAESo7PHAssetCcAEmF", + "moduleName": "FBSDKShareKit", + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "data", + "printedName": "data", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO4data10Foundation4DataVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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:13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvp", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO3url10Foundation3URLVSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvp", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvp", + "moduleName": "FBSDKShareKit", + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvg", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO5assetSo7PHAssetCSgvg", + "moduleName": "FBSDKShareKit", + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation4DataVSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation4DataVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "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:13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation3URLVSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESg10Foundation3URLVSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideo.Source?", + "children": [ + { + "kind": "TypeNominal", + "name": "Source", + "printedName": "FBSDKShareKit.ShareVideo.Source", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Photos.PHAsset?", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceOyAESgSo7PHAssetCSgcfc", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceOyAESgSo7PHAssetCSgcfc", + "moduleName": "FBSDKShareKit", + "init_kind": "Designated" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit10ShareVideoC6SourceO", + "mangledName": "$s13FBSDKShareKit10ShareVideoC6SourceO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ], + "isFromExtension": true, + "isEnumExhaustive": true, + "conformances": [ + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo", + "mangledName": "$s13FBSDKShareKit10ShareVideoC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareVideo", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareMedia", + "printedName": "ShareMedia", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareMedia", + "mangledName": "$s13FBSDKShareKit10ShareMediaP" + }, + { + "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": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideo.TypeDependencies", + "usr": "s:13FBSDKShareKit10ShareVideoC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "ShareVideoContent", + "printedName": "ShareVideoContent", + "children": [ + { + "kind": "Var", + "name": "video", + "printedName": "video", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)video", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage", + "AccessControl", + "RawDocComment", + "ObjC" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)video", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareVideo", + "printedName": "FBSDKShareKit.ShareVideo", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideo" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setVideo:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0Cvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC5videoAA0cD0CvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC5videoAA0cD0CvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "contentURL", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "contentURL", + "declAttributes": [ + "Final", + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setContentURL:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC10contentURL10Foundation0G0VSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "hashtag", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "hashtag", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setHashtag:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7hashtagAA7HashtagCSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "objc_name": "peopleIDs", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "AccessControl", + "RawDocComment" + ], + "hasStorage": true, + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "peopleIDs", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPeopleIDs:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9peopleIDsSaySSGvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)placeID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "placeID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)placeID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "placeID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPlaceID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC7placeIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)ref", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "ref", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)ref", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "ref", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setRef:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC3refSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC3refSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)pageID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "pageID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)pageID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "pageID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "setPageID:", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC6pageIDSSSgvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Final" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "objc_name": "shareUUID", + "declAttributes": [ + "HasInitialValue", + "Final", + "ObjC", + "HasStorage", + "SetterAccess", + "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": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "objc_name": "shareUUID", + "declAttributes": [ + "Final", + "ObjC" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareVideoContent", + "printedName": "FBSDKShareKit.ShareVideoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent" + } + ], + "declKind": "Constructor", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)init", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentCACycfc", + "moduleName": "FBSDKShareKit", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind": "Designated" + }, + { + "kind": "TypeDecl", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "Var", + "name": "validator", + "printedName": "validator", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validatorAA0C10Validating_pXpvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "mediaLibrarySearcher", + "printedName": "mediaLibrarySearcher", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvp", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 1, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvg", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvs", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvs", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvM", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV20mediaLibrarySearcherAA05MediaI9Searching_pvM", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(validator:mediaLibrarySearcher:)", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + }, + { + "kind": "TypeNominal", + "name": "ExistentialMetatype", + "printedName": "FBSDKShareKit.ShareValidating.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "ShareValidating", + "printedName": "FBSDKShareKit.ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP" + } + ] + }, + { + "kind": "TypeNominal", + "name": "MediaLibrarySearching", + "printedName": "FBSDKShareKit.MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validator20mediaLibrarySearcherAeA0C10Validating_pXp_AA05MediaJ9Searching_ptcfc", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV9validator20mediaLibrarySearcherAeA0C10Validating_pXp_AA05MediaJ9Searching_ptcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true + }, + { + "kind": "Var", + "name": "configuredDependencies", + "printedName": "configuredDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC22configuredDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "defaultDependencies", + "printedName": "defaultDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "Final", + "HasStorage" + ], + "isFromExtension": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvgZ", + "moduleName": "FBSDKShareKit", + "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": "FBSDKShareKit.ShareVideoContent.TypeDependencies?", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvsZ", + "moduleName": "FBSDKShareKit", + "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:13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC19defaultDependenciesAC04TypeG0VSgvMZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Final" + ], + "isFromExtension": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@CM@FBSDKShareKit@objc(cs)FBSDKShareVideoContent(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareVideoContent", + "mangledName": "$s13FBSDKShareKit17ShareVideoContentC", + "moduleName": "FBSDKShareKit", + "objc_name": "FBSDKShareVideoContent", + "declAttributes": [ + "Final", + "AccessControl", + "ObjC", + "ObjCMembers", + "RawDocComment" + ], + "superclassUsr": "c:objc(cs)NSObject", + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "DependentAsType", + "printedName": "DependentAsType", + "children": [ + { + "kind": "TypeWitness", + "name": "TypeDependencies", + "printedName": "TypeDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "TypeDependencies", + "printedName": "FBSDKShareKit.ShareVideoContent.TypeDependencies", + "usr": "s:13FBSDKShareKit17ShareVideoContentC16TypeDependenciesV" + } + ] + } + ], + "usr": "s:13FBSDKShareKit15DependentAsTypeP", + "mangledName": "$s13FBSDKShareKit15DependentAsTypeP" + }, + { + "kind": "Conformance", + "name": "SharingContent", + "printedName": "SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP" + }, + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + }, + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "Sharing", + "printedName": "Sharing", + "children": [ + { + "kind": "Var", + "name": "delegate", + "printedName": "delegate", + "children": [ + { + "kind": "TypeNominal", + "name": "WeakStorage", + "printedName": "FBSDKShareKit.SharingDelegate?" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)delegate", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "ReferenceOwnership", + "RawDocComment", + "ObjC" + ], + "ownership": 1, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)delegate", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingDelegate", + "printedName": "FBSDKShareKit.SharingDelegate", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setDelegate:", + "mangledName": "$s13FBSDKShareKit7SharingP8delegateAA0C8Delegate_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)shareContent", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)shareContent", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit7SharingP12shareContentAA0cE0_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shouldFailOnDataError", + "printedName": "shouldFailOnDataError", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(py)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)shouldFailOnDataError", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)setShouldFailOnDataError:", + "mangledName": "$s13FBSDKShareKit7SharingP21shouldFailOnDataErrorSbvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Function", + "name": "validate", + "printedName": "validate()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing(im)validateWithError:", + "mangledName": "$s13FBSDKShareKit7SharingP8validateyyKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "validateWithError:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharing", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingButton", + "printedName": "SharingButton", + "children": [ + { + "kind": "Var", + "name": "shareContent", + "printedName": "shareContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(py)shareContent", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(im)shareContent", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingButton>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.SharingContent?", + "children": [ + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton(im)setShareContent:", + "mangledName": "$s13FBSDKShareKit13SharingButtonP12shareContentAA0cF0_pSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingButton>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingButton", + "mangledName": "$s13FBSDKShareKit13SharingButtonP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingButton", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "SharingContent", + "printedName": "SharingContent", + "children": [ + { + "kind": "Var", + "name": "contentURL", + "printedName": "contentURL", + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)contentURL", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)contentURL", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setContentURL:", + "mangledName": "$s13FBSDKShareKit14SharingContentP10contentURL10Foundation0F0VSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "hashtag", + "printedName": "hashtag", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)hashtag", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)hashtag", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setHashtag:", + "mangledName": "$s13FBSDKShareKit14SharingContentP7hashtagAA7HashtagCSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "peopleIDs", + "printedName": "peopleIDs", + "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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)peopleIDs", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "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": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)peopleIDs", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "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": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPeopleIDs:", + "mangledName": "$s13FBSDKShareKit14SharingContentP9peopleIDsSaySSGvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "placeID", + "printedName": "placeID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)placeID", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)placeID", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPlaceID:", + "mangledName": "$s13FBSDKShareKit14SharingContentP7placeIDSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "ref", + "printedName": "ref", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)ref", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)ref", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setRef:", + "mangledName": "$s13FBSDKShareKit14SharingContentP3refSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "pageID", + "printedName": "pageID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)pageID", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)pageID", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": 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:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)setPageID:", + "mangledName": "$s13FBSDKShareKit14SharingContentP6pageIDSSSgvs", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "set" + } + ] + }, + { + "kind": "Var", + "name": "shareUUID", + "printedName": "shareUUID", + "children": [ + { + "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@FBSDKShareKit@objc(pl)FBSDKSharingContent(py)shareUUID", + "mangledName": "$s13FBSDKShareKit14SharingContentP9shareUUIDSSSgvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)shareUUID", + "mangledName": "$s13FBSDKShareKit14SharingContentP9shareUUIDSSSgvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "addParameters", + "printedName": "addParameters(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent(im)addParameters:bridgeOptions:", + "mangledName": "$s13FBSDKShareKit14SharingContentP13addParameters_7optionsSDySSypGAF_So0A13BridgeOptionsVtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingContent>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "addParameters:bridgeOptions:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent", + "mangledName": "$s13FBSDKShareKit14SharingContentP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : FBSDKShareKit.SharingValidatable, τ_0_0 : ObjectiveC.NSObjectProtocol>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingContent", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingDelegate", + "printedName": "SharingDelegate", + "children": [ + { + "kind": "Function", + "name": "sharer", + "printedName": "sharer(_:didCompleteWithResults:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharer:didCompleteWithResults:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP6sharer_22didCompleteWithResultsyAA0C0_p_SDySSypGtF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharer:didCompleteWithResults:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sharer", + "printedName": "sharer(_:didFailWithError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + }, + { + "kind": "TypeNominal", + "name": "Error", + "printedName": "Swift.Error", + "usr": "s:s5ErrorP" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharer:didFailWithError:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP6sharer_16didFailWithErroryAA0C0_p_s0I0_ptF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharer:didFailWithError:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "sharerDidCancel", + "printedName": "sharerDidCancel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Sharing", + "printedName": "FBSDKShareKit.Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate(im)sharerDidCancel:", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP15sharerDidCancelyyAA0C0_pF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "sharerDidCancel:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDelegate", + "mangledName": "$s13FBSDKShareKit15SharingDelegateP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingDelegate", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingDialog", + "printedName": "SharingDialog", + "children": [ + { + "kind": "Var", + "name": "canShow", + "printedName": "canShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(py)canShow", + "mangledName": "$s13FBSDKShareKit13SharingDialogP7canShowSbvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "declAttributes": [ + "RawDocComment", + "ObjC" + ], + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(im)canShow", + "mangledName": "$s13FBSDKShareKit13SharingDialogP7canShowSbvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDialog>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Function", + "name": "show", + "printedName": "show()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog(im)show", + "mangledName": "$s13FBSDKShareKit13SharingDialogP4showSbyF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingDialog>", + "sugared_genericSig": "", + "protocolReq": true, + "declAttributes": [ + "DiscardableResult", + "RawDocComment", + "ObjC" + ], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingDialog", + "mangledName": "$s13FBSDKShareKit13SharingDialogP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : FBSDKShareKit.Sharing>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingDialog", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Sharing", + "printedName": "Sharing", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharing", + "mangledName": "$s13FBSDKShareKit7SharingP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SharingValidatable", + "printedName": "SharingValidatable", + "children": [ + { + "kind": "Function", + "name": "validate", + "printedName": "validate(options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable(im)validateWithOptions:error:", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP8validate7optionsySo0A13BridgeOptionsV_tKF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SharingValidatable>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "validateWithOptions:error:", + "declAttributes": [ + "ObjC", + "RawDocComment" + ], + "throwing": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingValidatable", + "mangledName": "$s13FBSDKShareKit18SharingValidatableP", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "objc_name": "FBSDKSharingValidatable", + "declAttributes": [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Social", + "printedName": "Social", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SocialComposeViewControllerFactory", + "printedName": "SocialComposeViewControllerFactory", + "children": [ + { + "kind": "Function", + "name": "makeSocialComposeViewController", + "printedName": "makeSocialComposeViewController()", + "children": [ + { + "kind": "TypeNominal", + "name": "SLComposeViewController", + "printedName": "Social.SLComposeViewController", + "usr": "c:objc(cs)SLComposeViewController" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC04makecdeF0So09SLComposeeF0CyF", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryC04makecdeF0So09SLComposeeF0CyF", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "SocialComposeViewControllerFactory", + "printedName": "FBSDKShareKit.SocialComposeViewControllerFactory", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC" + } + ], + "declKind": "Constructor", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryCACycfc", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryCACycfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "s:13FBSDKShareKit34SocialComposeViewControllerFactoryC", + "mangledName": "$s13FBSDKShareKit34SocialComposeViewControllerFactoryC", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "Final" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "SocialComposeViewControllerFactoryProtocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP" + } + ] + }, + { + "kind": "Import", + "name": "Social", + "printedName": "Social", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "TypeDecl", + "name": "SocialComposeViewControllerFactoryProtocol", + "printedName": "SocialComposeViewControllerFactoryProtocol", + "children": [ + { + "kind": "Function", + "name": "makeSocialComposeViewController", + "printedName": "makeSocialComposeViewController()", + "children": [ + { + "kind": "TypeNominal", + "name": "SLComposeViewController", + "printedName": "Social.SLComposeViewController", + "usr": "c:objc(cs)SLComposeViewController" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP04makecdeF0So09SLComposeeF0CyF", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP04makecdeF0So09SLComposeeF0CyF", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.SocialComposeViewControllerFactoryProtocol>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "mangledName": "$s13FBSDKShareKit42SocialComposeViewControllerFactoryProtocolP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "children": [ + { + "kind": "Var", + "name": "bundleForStrings", + "printedName": "bundleForStrings", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Var", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvp", + "moduleName": "FBSDKShareKit", + "protocolReq": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bundle", + "printedName": "Foundation.Bundle", + "usr": "c:objc(cs)NSBundle" + } + ], + "declKind": "Accessor", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP16bundleForStringsSo8NSBundleCvg", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : FBSDKShareKit.UserInterfaceStringProviding>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Protocol", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "FBSDKCoreKit", + "printedName": "FBSDKCoreKit", + "declKind": "Import", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Import", + "name": "FBSDKCoreKit_Basics", + "printedName": "FBSDKCoreKit_Basics", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "FBSDKShareKit" + }, + { + "kind": "TypeDecl", + "name": "_ShareUtility", + "printedName": "_ShareUtility", + "children": [ + { + "kind": "Function", + "name": "validateRequiredValue", + "printedName": "validateRequiredValue(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO21validateRequiredValue_5namedyyp_SStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO21validateRequiredValue_5namedyyp_SStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArgument", + "printedName": "validateArgument(_:named:in:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Set", + "printedName": "Swift.Set<τ_0_0>", + "children": [ + { + "kind": "TypeNominal", + "name": "GenericTypeParam", + "printedName": "τ_0_0" + } + ], + "usr": "s:Sh" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO16validateArgument_5named2inyx_SSShyxGtKSHRzlFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO16validateArgument_5named2inyx_SSShyxGtKSHRzlFZ", + "moduleName": "FBSDKShareKit", + "genericSig": "<τ_0_0 where τ_0_0 : Swift.Hashable>", + "sugared_genericSig": "", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateArray", + "printedName": "validateArray(_:minCount:maxCount:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO13validateArray_8minCount03maxH05namedySayypG_S2iSStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateNetworkURL", + "printedName": "validateNetworkURL(_:named:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO18validateNetworkURL_5namedy10Foundation0G0V_SStKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "validateShareContent", + "printedName": "validateShareContent(_:options:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "hasDefaultArg": true, + "usr": "c:@E@FBSDKShareBridgeOptions" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO08validateC7Content_7optionsyAA07SharingF0_p_So0A13BridgeOptionsVtKFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildWebShareBridgeComponents", + "printedName": "buildWebShareBridgeComponents(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "WebShareBridgeComponents", + "printedName": "FBSDKShareKit.WebShareBridgeComponents", + "usr": "s:13FBSDKShareKit24WebShareBridgeComponentsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO08buildWebC16BridgeComponents3forAA0fcgH0VAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO08buildWebC16BridgeComponents3forAA0fcgH0VAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "buildAsyncWebPhotoContent", + "printedName": "buildAsyncWebPhotoContent(_:completion:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "SharePhotoContent", + "printedName": "FBSDKShareKit.SharePhotoContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKSharePhotoContent" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any]) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Tuple", + "printedName": "(Swift.Bool, Swift.String, [Swift.String : Any])", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ] + } + ] + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO25buildAsyncWebPhotoContent_10completionyAA0chI0C_ySb_SSSDySSypGtctFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO25buildAsyncWebPhotoContent_10completionyAA0chI0C_ySb_SSSDySSypGtctFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "feedShareDictionary", + "printedName": "feedShareDictionary(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "[Swift.String : Any]?", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO04feedC10Dictionary3forSDySSypGSgAA14SharingContent_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "hashtagString", + "printedName": "hashtagString(from:)", + "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": "Optional", + "printedName": "FBSDKShareKit.Hashtag?", + "children": [ + { + "kind": "TypeNominal", + "name": "Hashtag", + "printedName": "FBSDKShareKit.Hashtag", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKHashtag" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO13hashtagString4fromSSSgAA7HashtagCSg_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bridgeParameters", + "printedName": "bridgeParameters(for:options:shouldFailOnDataError:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + }, + { + "kind": "TypeNominal", + "name": "ShareBridgeOptions", + "printedName": "FBSDKShareKit.ShareBridgeOptions", + "hasDefaultArg": true, + "usr": "c:@E@FBSDKShareBridgeOptions" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO16bridgeParameters3for7options21shouldFailOnDataErrorSDySSypGAA14SharingContent_p_So0A13BridgeOptionsVSbtFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "getContentFlags", + "printedName": "getContentFlags(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "ContentFlags", + "printedName": "FBSDKShareKit.ContentFlags", + "usr": "s:13FBSDKShareKit12ContentFlagsV" + }, + { + "kind": "TypeNominal", + "name": "SharingContent", + "printedName": "FBSDKShareKit.SharingContent", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKSharingContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO15getContentFlags3forAA0fG0VAA07SharingF0_p_tFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO15getContentFlags3forAA0fG0VAA07SharingF0_p_tFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "shareMediaContentContainsPhotosAndVideos", + "printedName": "shareMediaContentContainsPhotosAndVideos(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + }, + { + "kind": "TypeNominal", + "name": "ShareMediaContent", + "printedName": "FBSDKShareKit.ShareMediaContent", + "usr": "c:@M@FBSDKShareKit@objc(cs)FBSDKShareMediaContent" + } + ], + "declKind": "Func", + "usr": "s:13FBSDKShareKit13_ShareUtilityO40shareMediaContentContainsPhotosAndVideosySbAA0cfG0CFZ", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO40shareMediaContentContainsPhotosAndVideosySbAA0cfG0CFZ", + "moduleName": "FBSDKShareKit", + "static": true, + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Enum", + "usr": "s:13FBSDKShareKit13_ShareUtilityO", + "mangledName": "$s13FBSDKShareKit13_ShareUtilityO", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "AccessControl", + "RawDocComment" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "ShareValidating", + "printedName": "ShareValidating", + "usr": "s:13FBSDKShareKit15ShareValidatingP", + "mangledName": "$s13FBSDKShareKit15ShareValidatingP" + }, + { + "kind": "Conformance", + "name": "ShareUtilityProtocol", + "printedName": "ShareUtilityProtocol", + "usr": "s:13FBSDKShareKit20ShareUtilityProtocolP", + "mangledName": "$s13FBSDKShareKit20ShareUtilityProtocolP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "PHImageManager", + "printedName": "PHImageManager", + "children": [ + { + "kind": "TypeDecl", + "name": "MediaLibrarySearchError", + "printedName": "MediaLibrarySearchError", + "children": [ + { + "kind": "Var", + "name": "asset", + "printedName": "asset", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Var", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvp", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvp", + "moduleName": "FBSDKShareKit", + "declAttributes": [ + "HasStorage" + ], + "fixedbinaryorder": 0, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Accessor", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvg", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetSo7PHAssetCvg", + "moduleName": "FBSDKShareKit", + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "accessorKind": "get" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(asset:)", + "children": [ + { + "kind": "TypeNominal", + "name": "MediaLibrarySearchError", + "printedName": "Photos.PHImageManager.MediaLibrarySearchError", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Constructor", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetAESo7PHAssetC_tcfc", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV5assetAESo7PHAssetC_tcfc", + "moduleName": "FBSDKShareKit", + "implicit": true, + "init_kind": "Designated" + } + ], + "declKind": "Struct", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE23MediaLibrarySearchErrorV", + "moduleName": "FBSDKShareKit", + "isFromExtension": true, + "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": "fb_findImage", + "printedName": "fb_findImage(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE12fb_findImage3forSo7UIImageCSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "fb_getVideoURL", + "printedName": "fb_getVideoURL(for:)", + "children": [ + { + "kind": "TypeNominal", + "name": "URL", + "printedName": "Foundation.URL", + "usr": "s:10Foundation3URLV" + }, + { + "kind": "TypeNominal", + "name": "PHAsset", + "printedName": "Photos.PHAsset", + "usr": "c:objc(cs)PHAsset" + } + ], + "declKind": "Func", + "usr": "s:So14PHImageManagerC13FBSDKShareKitE14fb_getVideoURL3for10Foundation0H0VSo7PHAssetC_tKF", + "mangledName": "$sSo14PHImageManagerC13FBSDKShareKitE14fb_getVideoURL3for10Foundation0H0VSo7PHAssetC_tKF", + "moduleName": "FBSDKShareKit", + "isOpen": true, + "isFromExtension": true, + "throwing": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)PHImageManager", + "moduleName": "Photos", + "isOpen": true, + "intro_iOS": "8", + "objc_name": "PHImageManager", + "declAttributes": [ + "Available", + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "MediaLibrarySearching", + "printedName": "MediaLibrarySearching", + "usr": "s:13FBSDKShareKit21MediaLibrarySearchingP", + "mangledName": "$s13FBSDKShareKit21MediaLibrarySearchingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Name", + "printedName": "Name", + "children": [ + { + "kind": "Var", + "name": "messengerShareDialogShow", + "printedName": "messengerShareDialogShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE24messengerShareDialogShowABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "messengerShareDialogResult", + "printedName": "messengerShareDialogResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE26messengerShareDialogResultABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sendButtonImpression", + "printedName": "sendButtonImpression", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE20sendButtonImpressionABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "sendButtonDidTap", + "printedName": "sendButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE16sendButtonDidTapABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareButtonImpression", + "printedName": "shareButtonImpression", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE21shareButtonImpressionABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareButtonDidTap", + "printedName": "shareButtonDidTap", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareButtonDidTapABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareDialogShow", + "printedName": "shareDialogShow", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage", + "RawDocComment" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE15shareDialogShowABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareDialogResult", + "printedName": "shareDialogResult", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Var", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvpZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Name", + "printedName": "FBSDKCoreKit.AppEvents.Name", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName" + } + ], + "declKind": "Accessor", + "usr": "s:So17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvgZ", + "mangledName": "$sSo17FBSDKAppEventNamea13FBSDKShareKitE17shareDialogResultABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventName.h@T@FBSDKAppEventName", + "moduleName": "FBSDKCoreKit", + "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": "ParameterName", + "printedName": "ParameterName", + "children": [ + { + "kind": "Var", + "name": "errorMessage", + "printedName": "errorMessage", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE12errorMessageABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "outcome", + "printedName": "outcome", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE7outcomeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentType", + "printedName": "shareContentType", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentTypeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "mode", + "printedName": "mode", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE4modeABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentPageID", + "printedName": "shareContentPageID", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE18shareContentPageIDABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "shareContentUUID", + "printedName": "shareContentUUID", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Var", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvpZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvpZ", + "moduleName": "FBSDKShareKit", + "static": true, + "declAttributes": [ + "HasInitialValue", + "HasStorage" + ], + "isFromExtension": true, + "isLet": true, + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "ParameterName", + "printedName": "FBSDKCoreKit.AppEvents.ParameterName", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName" + } + ], + "declKind": "Accessor", + "usr": "s:So26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvgZ", + "mangledName": "$sSo26FBSDKAppEventParameterNamea13FBSDKShareKitE16shareContentUUIDABvgZ", + "moduleName": "FBSDKShareKit", + "static": true, + "implicit": true, + "declAttributes": [ + "Transparent" + ], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Struct", + "usr": "c:FBSDKAppEventParameterName.h@T@FBSDKAppEventParameterName", + "moduleName": "FBSDKCoreKit", + "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": "ShareDialogConfiguration", + "printedName": "ShareDialogConfiguration", + "declKind": "Struct", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV", + "mangledName": "$s12FBSDKCoreKit24ShareDialogConfigurationV", + "moduleName": "FBSDKCoreKit", + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ShareDialogConfigurationProtocol", + "printedName": "ShareDialogConfigurationProtocol", + "usr": "s:13FBSDKShareKit32ShareDialogConfigurationProtocolP", + "mangledName": "$s13FBSDKShareKit32ShareDialogConfigurationProtocolP" + }, + { + "kind": "Conformance", + "name": "DependentAsValue", + "printedName": "DependentAsValue", + "children": [ + { + "kind": "TypeWitness", + "name": "ValueDependencies", + "printedName": "ValueDependencies", + "children": [ + { + "kind": "TypeNominal", + "name": "ValueDependencies", + "printedName": "FBSDKCoreKit.ShareDialogConfiguration.ValueDependencies", + "usr": "s:12FBSDKCoreKit24ShareDialogConfigurationV17ValueDependenciesV" + } + ] + } + ], + "usr": "s:12FBSDKCoreKit16DependentAsValueP", + "mangledName": "$s12FBSDKCoreKit16DependentAsValueP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "AppEvents", + "printedName": "AppEvents", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKAppEvents", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKAppEvents", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "ShareEventLogging", + "printedName": "ShareEventLogging", + "usr": "s:13FBSDKShareKit17ShareEventLoggingP", + "mangledName": "$s13FBSDKShareKit17ShareEventLoggingP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "UIApplication", + "printedName": "UIApplication", + "declKind": "Class", + "usr": "c:objc(cs)UIApplication", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIApplication", + "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": "Conformance", + "name": "ShareInternalURLOpening", + "printedName": "ShareInternalURLOpening", + "usr": "c:@M@FBSDKShareKit@objc(pl)FBSDKShareInternalURLOpening", + "mangledName": "$s13FBSDKShareKit23ShareInternalURLOpeningP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "InternalUtility", + "printedName": "InternalUtility", + "declKind": "Class", + "usr": "c:objc(cs)FBSDKInternalUtility", + "moduleName": "FBSDKCoreKit", + "isOpen": true, + "objc_name": "FBSDKInternalUtility", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "UserInterfaceStringProviding", + "printedName": "UserInterfaceStringProviding", + "usr": "s:13FBSDKShareKit28UserInterfaceStringProvidingP", + "mangledName": "$s13FBSDKShareKit28UserInterfaceStringProvidingP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "IntegerLiteral", + "offset": 560, + "length": 9, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/AppInviteContent.swift", + "kind": "StringLiteral", + "offset": 338, + "length": 16, + "value": "\"FBSDKShareKit.AppInviteContent\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 367, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 401, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ContentFlags.swift", + "kind": "BooleanLiteral", + "offset": 435, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/Hashtag.swift", + "kind": "StringLiteral", + "offset": 354, + "length": 7, + "value": "\"FBSDKShareKit.Hashtag\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/MessageDialog.swift", + "kind": "BooleanLiteral", + "offset": 1367, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/MessageDialog.swift", + "kind": "BooleanLiteral", + "offset": 1508, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 341, + "length": 32, + "value": "\"fb_messenger_dialog_share_show\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 432, + "length": 34, + "value": "\"fb_messenger_dialog_share_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 544, + "length": 27, + "value": "\"fb_send_button_impression\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 620, + "length": 24, + "value": "\"fb_send_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 724, + "length": 28, + "value": "\"fb_share_button_impression\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 802, + "length": 25, + "value": "\"fb_share_button_did_tap\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 901, + "length": 22, + "value": "\"fb_dialog_share_show\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventNames.swift", + "kind": "StringLiteral", + "offset": 973, + "length": 24, + "value": "\"fb_dialog_share_result\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 33, + "value": "\"fb_dialog_outcome_error_message\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 402, + "length": 19, + "value": "\"fb_dialog_outcome\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 479, + "length": 30, + "value": "\"fb_dialog_share_content_type\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 555, + "length": 16, + "value": "\"fb_dialog_mode\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 631, + "length": 33, + "value": "\"fb_dialog_share_content_page_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 30, + "value": "\"fb_dialog_share_content_uuid\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 844, + "length": 11, + "value": "\"Cancelled\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 883, + "length": 11, + "value": "\"Completed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 919, + "length": 8, + "value": "\"Failed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 983, + "length": 8, + "value": "\"Status\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1015, + "length": 7, + "value": "\"Photo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1046, + "length": 7, + "value": "\"Video\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1078, + "length": 8, + "value": "\"Camera\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Reporting\/ShareAppEventParameters.swift", + "kind": "StringLiteral", + "offset": 1112, + "length": 9, + "value": "\"Unknown\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 296, + "length": 8, + "value": "\"camera\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 328, + "length": 7, + "value": "\"share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 389, + "length": 19, + "value": "\"completionGesture\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 8, + "value": "\"cancel\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 496, + "length": 8, + "value": "\"postId\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Bridging\/ShareBridgeAPI.swift", + "kind": "StringLiteral", + "offset": 536, + "length": 9, + "value": "\"post_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ShareCameraEffectContent.swift", + "kind": "StringLiteral", + "offset": 523, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 676, + "length": 6, + "value": "\"feed\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 741, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 856, + "length": 4, + "value": "true" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "BooleanLiteral", + "offset": 1817, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 400, + "length": 11, + "value": "\"FBSDKShareKit.ShareDialog\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "Array", + "offset": 22128, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 29908, + "length": 8, + "value": "\"app_id\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 29976, + "length": 10, + "value": "\"hashtags\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialog.swift", + "kind": "StringLiteral", + "offset": 30047, + "length": 8, + "value": "\"quotes\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 772, + "length": 10, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 7, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 967, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 1053, + "length": 7, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 6, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 772, + "length": 10, + "value": "2" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 7, + "value": "3" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 909, + "length": 3, + "value": "4" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 967, + "length": 11, + "value": "5" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/ShareDialogMode.swift", + "kind": "IntegerLiteral", + "offset": 1053, + "length": 7, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 24, + "value": "\"com.facebook.sdk.share\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 687, + "length": 9, + "value": "201" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 845, + "length": 18, + "value": "202" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 7, + "value": "203" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 608, + "length": 3, + "value": "200" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 687, + "length": 9, + "value": "201" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 845, + "length": 18, + "value": "202" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Core\/ShareError.swift", + "kind": "IntegerLiteral", + "offset": 913, + "length": 7, + "value": "203" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhoto.swift", + "kind": "BooleanLiteral", + "offset": 3009, + "length": 5, + "value": "false" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhoto.swift", + "kind": "StringLiteral", + "offset": 357, + "length": 10, + "value": "\"FBSDKShareKit.SharePhoto\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhotoContent.swift", + "kind": "IntegerLiteral", + "offset": 3474, + "length": 1, + "value": "1" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/SharePhotoContent.swift", + "kind": "IntegerLiteral", + "offset": 3480, + "length": 1, + "value": "6" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/ShareVideo.swift", + "kind": "StringLiteral", + "offset": 344, + "length": 10, + "value": "\"FBSDKShareKit.ShareVideo\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/UserInterface\/SocialComposeViewControllerFactory.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 27, + "value": "\"com.apple.social.facebook\"" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/_ShareUtility.swift", + "kind": "Array", + "offset": 2340, + "length": 2, + "value": "[]" + }, + { + "filePath": "\/Users\/kylinchang\/Workspace\/internal\/facebook-ios-sdk\/FBSDKShareKit\/FBSDKShareKit\/Content\/_ShareUtility.swift", + "kind": "Array", + "offset": 5265, + "length": 2, + "value": "[]" + } + ] +} \ No newline at end of file diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 00000000..3e43d47b --- /dev/null +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,368 @@ +// 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-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit +// swift-module-flags-ignorable: -enable-bare-slash-regex +import FBSDKCoreKit +import FBSDKCoreKit_Basics +@_exported import FBSDKShareKit +import Foundation +import Photos +import Social +import Swift +import UIKit +import _Concurrency +import _StringProcessing +@objcMembers @objc(FBSDKAppInviteContent) final public class AppInviteContent : ObjectiveC.NSObject { + @objc(FBSDKAppInviteDestination) public enum Destination : Swift.Int { + case facebook + case messenger + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } + } + @objc final public var appInvitePreviewImageURL: Foundation.URL? + @objc final public var appLinkURL: Foundation.URL + @objc final public var promotionCode: Swift.String? + @objc final public var promotionText: Swift.String? + @objc final public var destination: FBSDKShareKit.AppInviteContent.Destination + @objc(initWithAppLinkURL:) public init(appLinkURL: Foundation.URL) + @objc deinit +} +extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { + @objc final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCameraEffectArguments) final public class CameraEffectArguments : ObjectiveC.NSObject { + @objc(setString:forKey:) final public func set(_ string: Swift.String?, forKey key: Swift.String) + @objc final public func string(forKey key: Swift.String) -> Swift.String? + @objc(setArray:forKey:) final public func set(_ array: [Swift.String]?, forKey key: Swift.String) + @objc final public func array(forKey key: Swift.String) -> [Swift.String]? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKCameraEffectTextures) final public class CameraEffectTextures : ObjectiveC.NSObject { + @objc(setImage:forKey:) final public func set(_ image: UIKit.UIImage?, forKey key: Swift.String) + @objc(imageForKey:) final public func image(forKey key: Swift.String) -> UIKit.UIImage? + @objc override dynamic public init() + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSendButton) @_Concurrency.MainActor(unsafe) final public class FBSendButton : FBSDKCoreKit.FBButton, FBSDKShareKit.SharingButton, FBSDKCoreKit.FBButtonImpressionLogging { + @objc @_Concurrency.MainActor(unsafe) final public var dialog: FBSDKShareKit.MessageDialog? + @_Concurrency.MainActor(unsafe) @objc final public var shareContent: FBSDKShareKit.SharingContent? { + @objc get + @objc set + } + @_Concurrency.MainActor(unsafe) @objc final public var analyticsParameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]? { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc final public var impressionTrackingEventName: FBSDKCoreKit.AppEvents.Name { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc final public var impressionTrackingIdentifier: Swift.String { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public func configureButton() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareButton) @_Concurrency.MainActor(unsafe) final public class FBShareButton : FBSDKCoreKit.FBButton, FBSDKShareKit.SharingButton { + @_Concurrency.MainActor(unsafe) @objc final public var shareContent: FBSDKShareKit.SharingContent? { + @objc get + @objc set + } + @objc @_Concurrency.MainActor(unsafe) final public var analyticsParameters: [FBSDKCoreKit.AppEvents.ParameterName : Any]? { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public var impressionTrackingEventName: FBSDKCoreKit.AppEvents.Name { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public var impressionTrackingIdentifier: Swift.String { + @objc get + } + @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { + @objc get + } + @objc @_Concurrency.MainActor(unsafe) final public func configureButton() + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) + @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objcMembers @objc(FBSDKHashtag) final public class Hashtag : ObjectiveC.NSObject { + @objc final public var stringRepresentation: Swift.String + @objc(initWithString:) public init(_ string: Swift.String) + @objc override final public var description: Swift.String { + @objc get + } + @objc final public var isValid: Swift.Bool { + @objc get + } + @objc override final public var hash: Swift.Int { + @objc get + } + @objc override final public func isEqual(_ object: Any?) -> Swift.Bool + @objc deinit +} +@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKMessageDialog) public class MessageDialog : ObjectiveC.NSObject, FBSDKShareKit.SharingDialog { + @objc weak public var delegate: FBSDKShareKit.SharingDelegate? + @objc public var shareContent: FBSDKShareKit.SharingContent? + @objc public var shouldFailOnDataError: Swift.Bool + @objc(initWithContent:delegate:) convenience public init(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) + @objc(dialogWithContent:delegate:) public static func dialog(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.MessageDialog + @objc(showWithContent:delegate:) public static func show(content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.MessageDialog + @objc public var canShow: Swift.Bool { + @objc get + } + @discardableResult + @objc public func show() -> Swift.Bool + @objc public func validate() throws + @objc deinit +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareCameraEffectContent) final public class ShareCameraEffectContent : ObjectiveC.NSObject { + @objc final public var effectID: Swift.String + @objc final public var effectArguments: FBSDKShareKit.CameraEffectArguments + @objc final public var effectTextures: FBSDKShareKit.CameraEffectTextures + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public var shareUUID: Swift.String? { + get + } + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareCameraEffectContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objcMembers @objc(FBSDKShareDialog) public class ShareDialog : ObjectiveC.NSObject, FBSDKShareKit.SharingDialog { + @objc weak public var fromViewController: UIKit.UIViewController? + @objc public var mode: FBSDKShareKit.ShareDialog.Mode + @objc weak public var delegate: FBSDKShareKit.SharingDelegate? + @objc public var shareContent: FBSDKShareKit.SharingContent? + @objc public var shouldFailOnDataError: Swift.Bool + @objc(initWithViewController:content:delegate:) public init(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) + @objc deinit + @objc(dialogWithViewController:withContent:delegate:) public class func dialog(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.ShareDialog + @discardableResult + @objc(showFromViewController:withContent:delegate:) public class func show(viewController: UIKit.UIViewController?, content: FBSDKShareKit.SharingContent?, delegate: FBSDKShareKit.SharingDelegate?) -> FBSDKShareKit.ShareDialog +} +extension FBSDKShareKit.ShareDialog { + @objc dynamic public var canShow: Swift.Bool { + @objc get + } + @discardableResult + @objc dynamic public func show() -> Swift.Bool + @objc dynamic public func validate() throws +} +extension FBSDKShareKit.ShareDialog : FBSDKCoreKit.WebDialogDelegate { + @objc dynamic public func webDialog(_ webDialog: FBSDKCoreKit._WebDialog, didCompleteWithResults results: [Swift.String : Any]) + @objc dynamic public func webDialog(_ webDialog: FBSDKCoreKit._WebDialog, didFailWithError error: Swift.Error) + @objc dynamic public func webDialogDidCancel(_ webDialog: FBSDKCoreKit._WebDialog) +} +extension FBSDKShareKit.ShareDialog { + @objc(FBSDKShareDialogMode) public enum Mode : Swift.UInt, Swift.CustomStringConvertible { + case automatic + case native + case shareSheet + case browser + case web + case feedBrowser + case feedWeb + public var description: Swift.String { + get + } + public init?(rawValue: Swift.UInt) + public typealias RawValue = Swift.UInt + public var rawValue: Swift.UInt { + get + } + } +} +public let ShareErrorDomain: Swift.String +@objc(FBSDKShareError) public enum ShareError : Swift.Int { + case reserved = 200 + case openGraph + case dialogNotAvailable + case unknown + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareLinkContent) final public class ShareLinkContent : ObjectiveC.NSObject { + @objc final public var quote: Swift.String? + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objc(FBSDKShareMedia) public protocol ShareMedia { +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareMediaContent) final public class ShareMediaContent : ObjectiveC.NSObject { + @objc final public var media: [FBSDKShareKit.ShareMedia] + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKSharePhoto) final public class SharePhoto : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { + @objc final public var image: UIKit.UIImage? { + @objc get + @objc set + } + @objc final public var imageURL: Foundation.URL? { + @objc get + @objc set + } + @objc final public var photoAsset: Photos.PHAsset? { + @objc get + @objc set + } + @objc final public var isUserGenerated: Swift.Bool + @objc final public var caption: Swift.String? + @objc convenience public init(image: UIKit.UIImage, isUserGenerated: Swift.Bool) + @objc convenience public init(imageURL: Foundation.URL, isUserGenerated: Swift.Bool) + @objc convenience public init(photoAsset: Photos.PHAsset, isUserGenerated: Swift.Bool) + @objc deinit +} +extension FBSDKShareKit.SharePhoto : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSharePhotoContent) final public class SharePhotoContent : ObjectiveC.NSObject { + @objc final public var photos: [FBSDKShareKit.SharePhoto] + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public let shareUUID: Swift.String? + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKShareVideo) final public class ShareVideo : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { + @objc final public var data: Foundation.Data? { + @objc get + @objc set + } + @objc final public var videoAsset: Photos.PHAsset? { + @objc get + @objc set + } + @objc final public var videoURL: Foundation.URL? { + @objc get + @objc set + } + @objc final public var previewPhoto: FBSDKShareKit.SharePhoto? + @objc convenience public init(data: Foundation.Data, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc convenience public init(videoAsset: Photos.PHAsset, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc convenience public init(videoURL: Foundation.URL, previewPhoto: FBSDKShareKit.SharePhoto? = nil) + @objc deinit +} +extension FBSDKShareKit.ShareVideo : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareVideoContent) final public class ShareVideoContent : ObjectiveC.NSObject { + @objc final public var video: FBSDKShareKit.ShareVideo + @objc final public var contentURL: Foundation.URL? + @objc final public var hashtag: FBSDKShareKit.Hashtag? + @objc final public var peopleIDs: [Swift.String] + @objc final public var placeID: Swift.String? + @objc final public var ref: Swift.String? + @objc final public var pageID: Swift.String? + @objc final public var shareUUID: Swift.String? { + get + } + @objc override dynamic public init() + @objc deinit +} +extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingContent { + @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { + @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws +} +@objc(FBSDKSharing) public protocol Sharing { + @objc weak var delegate: FBSDKShareKit.SharingDelegate? { get set } + @objc var shareContent: FBSDKShareKit.SharingContent? { get set } + @objc var shouldFailOnDataError: Swift.Bool { get set } + @objc(validateWithError:) func validate() throws +} +@objc(FBSDKSharingButton) public protocol SharingButton { + @objc var shareContent: FBSDKShareKit.SharingContent? { get set } +} +@objc(FBSDKSharingContent) public protocol SharingContent : FBSDKShareKit.SharingValidatable, ObjectiveC.NSObjectProtocol { + @objc var contentURL: Foundation.URL? { get set } + @objc var hashtag: FBSDKShareKit.Hashtag? { get set } + @objc var peopleIDs: [Swift.String] { get set } + @objc var placeID: Swift.String? { get set } + @objc var ref: Swift.String? { get set } + @objc var pageID: Swift.String? { get set } + @objc var shareUUID: Swift.String? { get } + @objc(addParameters:bridgeOptions:) func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] +} +@objc(FBSDKSharingDelegate) public protocol SharingDelegate { + @objc(sharer:didCompleteWithResults:) func sharer(_ sharer: FBSDKShareKit.Sharing, didCompleteWithResults results: [Swift.String : Any]) + @objc(sharer:didFailWithError:) func sharer(_ sharer: FBSDKShareKit.Sharing, didFailWithError error: Swift.Error) + @objc(sharerDidCancel:) func sharerDidCancel(_ sharer: FBSDKShareKit.Sharing) +} +@objc(FBSDKSharingDialog) public protocol SharingDialog : FBSDKShareKit.Sharing { + @objc var canShow: Swift.Bool { get } + @objc @discardableResult + func show() -> Swift.Bool +} +@objc(FBSDKSharingValidatable) public protocol SharingValidatable { + @objc(validateWithOptions:error:) func validate(options: FBSDKShareKit.ShareBridgeOptions) throws +} +public enum _ShareUtility { +} +extension FBSDKShareKit._ShareUtility { + public static func validateRequiredValue(_ value: Any, named name: Swift.String) throws + public static func validateArgument(_ value: Argument, named name: Swift.String, in possibleValues: Swift.Set) throws where Argument : Swift.Hashable +} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.Equatable {} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.Hashable {} +extension FBSDKShareKit.AppInviteContent.Destination : Swift.RawRepresentable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.Equatable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.Hashable {} +extension FBSDKShareKit.ShareDialog.Mode : Swift.RawRepresentable {} +extension FBSDKShareKit.ShareError : Swift.Equatable {} +extension FBSDKShareKit.ShareError : Swift.Hashable {} +extension FBSDKShareKit.ShareError : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 1ace0153..7e6636f7 100644 Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 62dc0a49..3e43d47b 100644 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit +// swift-module-flags-ignorable: -enable-bare-slash-regex import FBSDKCoreKit import FBSDKCoreKit_Basics @_exported import FBSDKShareKit @@ -10,6 +11,7 @@ import Social import Swift import UIKit import _Concurrency +import _StringProcessing @objcMembers @objc(FBSDKAppInviteContent) final public class AppInviteContent : ObjectiveC.NSObject { @objc(FBSDKAppInviteDestination) public enum Destination : Swift.Int { case facebook @@ -61,10 +63,10 @@ extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { @objc get } @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { - @_Concurrency.MainActor(unsafe) @objc get + @objc get } @objc @_Concurrency.MainActor(unsafe) final public func configureButton() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } @@ -83,10 +85,10 @@ extension FBSDKShareKit.AppInviteContent : FBSDKShareKit.SharingValidatable { @objc get } @_Concurrency.MainActor(unsafe) @objc override final public var isImplicitlyDisabled: Swift.Bool { - @_Concurrency.MainActor(unsafe) @objc get + @objc get } @objc @_Concurrency.MainActor(unsafe) final public func configureButton() - @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreGraphics.CGRect) + @_Concurrency.MainActor(unsafe) @objc override dynamic public init(frame: CoreFoundation.CGRect) @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder: Foundation.NSCoder) @objc deinit } @@ -323,7 +325,6 @@ extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { @objc var shouldFailOnDataError: Swift.Bool { get set } @objc(validateWithError:) func validate() throws } -@available(tvOS, unavailable) @objc(FBSDKSharingButton) public protocol SharingButton { @objc var shareContent: FBSDKShareKit.SharingContent? { get set } } diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/module.modulemap b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/module.modulemap index 3d203af2..7cc573a3 100644 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/module.modulemap +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/module.modulemap @@ -6,6 +6,6 @@ framework module FBSDKShareKit { } module FBSDKShareKit.Swift { - header "FBSDKShareKit-Swift.h" - requires objc + header "FBSDKShareKit-Swift.h" + requires objc } diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeDirectory b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeDirectory new file mode 100644 index 00000000..6187d29a Binary files /dev/null and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeDirectory differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeRequirements b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeRequirements new file mode 100644 index 00000000..dbf9d614 Binary files /dev/null and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeRequirements differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeRequirements-1 b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeRequirements-1 new file mode 100644 index 00000000..50aa2adf Binary files /dev/null and b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeResources b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeResources index ca88ccab..f081b1f4 100644 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeResources +++ b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeResources @@ -14,7 +14,7 @@ Headers/FBSDKShareKit-Swift.h - Y/uGDs56A39E1WGhcPxa3Lu5ewc= + /XxByTTVHGbJPqyzmCjSOq3E3cE= Headers/FBSDKShareKit.h @@ -22,41 +22,61 @@ Info.plist - dRQGD3x9+baLZYlFlnJVJhYTfi4= + mPJLcIfTr08loo+y9JIY4Ptaw1Q= + + Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.abi.json + + +tfHeflY/owD0DSNcRqOLRosEC8= + + Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + HN1+5axS7LmkM+BIp9wIyL7QQJ8= Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc - AJZXiBSxKMJwKFr+pkTwKdrYJ2Y= + isgGUP0hxoH4Nsh93Iihff4f6eE= Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface - kK/w6n8fgWtHnXCioXJ+iQSPnts= + HN1+5axS7LmkM+BIp9wIyL7QQJ8= Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule - Ylby8H/ZylRZht9WPuWZOLcG5Jo= + upqXx2dzcgRccxlR0kLhu8Ml7q0= + + Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.abi.json + + +tfHeflY/owD0DSNcRqOLRosEC8= + + Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + wpuLKWB3r/mtIYRUQf71Us/GAs8= Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - sS/A/LP+VYxAaqHRYjNWA2BITZ0= + Twj7p/SfBTKWoNZBa5IKfKg01Hw= Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - WI0WX4DJNEXKgRJJSIh0ap5h+Ro= + wpuLKWB3r/mtIYRUQf71Us/GAs8= Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - m7kKmksClepI/PjhU0k+vi1hQzY= + 2EOuDeD+JJdVLkfyx6hu1S8HeCA= Modules/module.modulemap - c/1l3+MTRWj+XKPFv/2HWhKeUtA= + F2phmox2/Nyl1bfdxSueRQruwII= files2 Headers/FBSDKShareBridgeOptions.h + hash + + UnSjaUXm5qLeLGXDUNVRzXY9NrQ= + hash2 IxpwBSGJEUrCXBdjRGpZ0yehzDl7wfNF5HReqM5qO/8= @@ -64,6 +84,10 @@ Headers/FBSDKShareErrorDomain.h + hash + + ccdtzvuodQ/lvKIVoHt8KIM9u2U= + hash2 Gq/jBWHIi9/+dLPC1EqzBf+XM4GcHg1JpVUb0DiK6jM= @@ -71,65 +95,145 @@ Headers/FBSDKShareKit-Swift.h + hash + + /XxByTTVHGbJPqyzmCjSOq3E3cE= + hash2 - MN0qZ4UlSkHBW4qJvID47LVEiu3Km+S6wbSfXvjYju4= + 8xvCz1rDSSwXPpqylxpa40n0YD2srudhoMs+bOQRh3s= Headers/FBSDKShareKit.h + hash + + 3Vlzn/6bUD/wgctBGh6x9fepcJg= + hash2 BizbBQ3VvhD8p64UL0pkalRRg0wPwYLFP3IXGeJnkE4= + Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.abi.json + + hash + + +tfHeflY/owD0DSNcRqOLRosEC8= + + hash2 + + +3XrS/gcsJgcZPB+wePczyMFSQhsSfcbE8yGSb8gzPY= + + + Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + hash + + HN1+5axS7LmkM+BIp9wIyL7QQJ8= + + hash2 + + 7yOjDSibWCMkbDD63eEHE+cYRkGCOxkCTEX1R2gKwlw= + + Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc + hash + + isgGUP0hxoH4Nsh93Iihff4f6eE= + hash2 - Q1iJH/cVLRF4eHyn9lISOU+70/3DeNva9lIvKWzpsQw= + aIV49l/385w/uNuxUIFFp/BTST4sb7lytFBHOqLYOqM= Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface + hash + + HN1+5axS7LmkM+BIp9wIyL7QQJ8= + hash2 - gkdqMhDoi/RVkxwsXLr089gikCpdPCNcbneANFksIjY= + 7yOjDSibWCMkbDD63eEHE+cYRkGCOxkCTEX1R2gKwlw= Modules/FBSDKShareKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule + hash + + upqXx2dzcgRccxlR0kLhu8Ml7q0= + hash2 - /ZctSiPG/p11+iOIpD4GxKzE3Q3kgpmtP/NOZm0A5QI= + NU1dM4cua6VDXfpX4VL2eY1lt0Gc6FGmqE7FNKjzcY4= + + + Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.abi.json + + hash + + +tfHeflY/owD0DSNcRqOLRosEC8= + + hash2 + + +3XrS/gcsJgcZPB+wePczyMFSQhsSfcbE8yGSb8gzPY= + + + Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + hash + + wpuLKWB3r/mtIYRUQf71Us/GAs8= + + hash2 + + hH59HZlb8jhmtjG0J/FaQ/YvVjK4DGzOjsplG2AAaY4= Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + hash + + Twj7p/SfBTKWoNZBa5IKfKg01Hw= + hash2 - RmokB5WMXPDBvpSCFXVCe5j7VpOeeJdbEcF6Wb7q/cQ= + mzrjz1d63rMm/Q7r9OiSP2AoWviGIVMjQRXaRDthnjU= Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + hash + + wpuLKWB3r/mtIYRUQf71Us/GAs8= + hash2 - IFQahetPyqq67PYsM0fnL0McrLs965QbqvG/kgPtuJE= + hH59HZlb8jhmtjG0J/FaQ/YvVjK4DGzOjsplG2AAaY4= Modules/FBSDKShareKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule + hash + + 2EOuDeD+JJdVLkfyx6hu1S8HeCA= + hash2 - 6QDJQuBBLdY9Hl8bNFEOhAS+XyfRh0P0zZG9ZUAvwVE= + y7S+5LzJTv30KcABBYVMenoBZpnMZnDoByntxOLRnOE= Modules/module.modulemap + hash + + F2phmox2/Nyl1bfdxSueRQruwII= + hash2 - LFKLAS36xoxx786XN6Efo7GDNLqGNFpjOc/zQ1+JRXY= + Vg70H8UUVY5JoGFeTc5wpApvZn+OvWSQT41qOJiOU2o= diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeSignature b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeSignature new file mode 100644 index 00000000..e69de29b diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index a57ddd8e..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKShareKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit b/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit deleted file mode 100644 index bd3ce64d..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/ios-arm64_x86_64-simulator/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/FBSDKShareKit b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/FBSDKShareKit deleted file mode 100755 index 826b9bca..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/FBSDKShareKit and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Headers/FBSDKShareBridgeOptions.h b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Headers/FBSDKShareBridgeOptions.h deleted file mode 100644 index 02dcbb27..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Headers/FBSDKShareBridgeOptions.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// Flags to indicate support for newer bridge options beyond the initial 20130410 implementation. -typedef NS_OPTIONS(NSUInteger, FBSDKShareBridgeOptions) { - FBSDKShareBridgeOptionsDefault = 0, - FBSDKShareBridgeOptionsPhotoAsset = 1 << 0, - FBSDKShareBridgeOptionsPhotoImageURL = 1 << 1, // if set, a web-based URL is required; asset, image, and imageURL.isFileURL not allowed - FBSDKShareBridgeOptionsVideoAsset = 1 << 2, - FBSDKShareBridgeOptionsVideoData = 1 << 3, - FBSDKShareBridgeOptionsWebHashtag = 1 << 4, // if set, pass the hashtag as a string value, not an array of one string -} NS_SWIFT_NAME(ShareBridgeOptions); - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Headers/FBSDKShareErrorDomain.h b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Headers/FBSDKShareErrorDomain.h deleted file mode 100644 index a4dfe609..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Headers/FBSDKShareErrorDomain.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - The error domain for all errors from FBSDKShareKit. - - Error codes from the SDK in the range 200-299 are reserved for this domain. - */ -FOUNDATION_EXPORT NSErrorDomain const FBSDKShareErrorDomain; - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h deleted file mode 100644 index 52387f71..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h +++ /dev/null @@ -1,595 +0,0 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef FBSDKSHAREKIT_SWIFT_H -#define FBSDKSHAREKIT_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#import - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBSDKShareKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - -@class NSString; - -/// Represents a single hashtag that can be used with the share dialog. -SWIFT_CLASS_NAMED("Hashtag") -@interface FBSDKHashtag : NSObject -/// The hashtag string. -/// You are responsible for making sure that stringRepresentation is a valid hashtag (a single ‘#’ followed by one or more -/// word characters). Invalid hashtags are ignored when sharing content. You can check validity with thevalid property. -/// @return The hashtag string -@property (nonatomic, copy) NSString * _Nonnull stringRepresentation; -- (nonnull instancetype)initWithString:(NSString * _Nonnull)string OBJC_DESIGNATED_INITIALIZER; -@property (nonatomic, readonly, copy) NSString * _Nonnull description; -/// Tests if a hashtag is valid. -/// A valid hashtag matches the regular expression “#\w+”: A single ‘#’ followed by one or more word characters. -/// @return true if the hashtag is valid, false otherwise. -@property (nonatomic, readonly) BOOL isValid; -@property (nonatomic, readonly) NSUInteger hash; -- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - -/// ShareError -/// Error codes for ShareErrorDomain. -typedef SWIFT_ENUM_NAMED(NSInteger, FBSDKShareError, "ShareError", open) { -/// Reserved - FBSDKShareErrorReserved = 200, -/// The error code for errors from uploading open graph objects. - FBSDKShareErrorOpenGraph = 201, -/// The error code for when a sharing dialog is not available. -/// Use the canShare methods to check for this case before calling show. - FBSDKShareErrorDialogNotAvailable = 202, -/// The error code for unknown errors. - FBSDKShareErrorUnknown = 203, -}; - -@class NSURL; - -/// A model for status and link content to be shared. -SWIFT_CLASS_NAMED("ShareLinkContent") -@interface FBSDKShareLinkContent : NSObject -/// Some quote text of the link. -/// If specified, the quote text will render with custom styling on top of the link. -@property (nonatomic, copy) NSString * _Nullable quote; -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. See documentation -/// for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// An interface for validatable content and media. -SWIFT_PROTOCOL_NAMED("SharingValidatable") -@protocol FBSDKSharingValidatable -/// Validate that this content or media contains valid values. -/// \param options The share bridge options to use for validation. -/// -/// -/// throws: -/// If the values are not valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)options error:(NSError * _Nullable * _Nullable)error; -@end - - -/// A base interface for content to be shared. -SWIFT_PROTOCOL_NAMED("SharingContent") -@protocol FBSDKSharingContent -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. -/// See documentation for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface FBSDKShareLinkContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface FBSDKShareLinkContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Asks the receiver to validate that its content or media values are valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - -/// A protocol for media content (photo or video) to be shared. -SWIFT_PROTOCOL_NAMED("ShareMedia") -@protocol FBSDKShareMedia -@end - - -/// A model for media content (photo or video) to be shared. -SWIFT_CLASS_NAMED("ShareMediaContent") -@interface FBSDKShareMediaContent : NSObject -/// Media to be shared: an array of SharePhoto or ShareVideo -@property (nonatomic, copy) NSArray> * _Nonnull media; -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. See documentation -/// for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface FBSDKShareMediaContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Asks the receiver to validate that its content or media values are valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - -@interface FBSDKShareMediaContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - -@class UIImage; -@class PHAsset; - -/// A photo for sharing. -SWIFT_CLASS_NAMED("SharePhoto") -@interface FBSDKSharePhoto : NSObject -/// If the photo is resident in memory, this method supplies the data. -@property (nonatomic, strong) UIImage * _Nullable image; -/// URL that points to a network location or the location of the photo on disk -@property (nonatomic, copy) NSURL * _Nullable imageURL; -/// The representation of the photo in the Photos library. -@property (nonatomic, strong) PHAsset * _Nullable photoAsset; -/// Specifies whether the photo represented by the receiver was generated by the user (true) -/// or by the application (false). -@property (nonatomic) BOOL isUserGenerated; -/// The user-generated caption for the photo. Note that the ‘caption’ must come from -/// the user, as pre-filled content is forbidden by the Platform Policies (2.3). -@property (nonatomic, copy) NSString * _Nullable caption; -/// Convenience method to build a new photo object with an image. -/// \param image If the photo is resident in memory, this method supplies the data -/// -/// \param isUserGenerated Specifies whether the photo represented by the receiver was generated by the user or by the -/// application -/// -- (nonnull instancetype)initWithImage:(UIImage * _Nonnull)image isUserGenerated:(BOOL)isUserGenerated; -/// Convenience method to build a new photo object with an imageURL. -/// This method should only be used when adding photo content to open graph stories. -/// For example, if you’re trying to share a photo from the web by itself, download the image and use -/// init(image:isUserGenerated:) instead. -/// \param imageURL The URL to the photo -/// -/// \param isUserGenerated Specifies whether the photo represented by the receiver was generated by the user or by the -/// application -/// -- (nonnull instancetype)initWithImageURL:(NSURL * _Nonnull)imageURL isUserGenerated:(BOOL)isUserGenerated; -/// Convenience method to build a new photo object with a PHAsset. -/// \param photoAsset The PHAsset that represents the photo in the Photos library. -/// -/// \param isUserGenerated Specifies whether the photo represented by the receiver was generated by the user or by -/// the application -/// -- (nonnull instancetype)initWithPhotoAsset:(PHAsset * _Nonnull)photoAsset isUserGenerated:(BOOL)isUserGenerated; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - -@interface FBSDKSharePhoto (SWIFT_EXTENSION(FBSDKShareKit)) -/// Asks the receiver to validate that its content or media values are valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - - -/// A model for photo content to be shared. -SWIFT_CLASS_NAMED("SharePhotoContent") -@interface FBSDKSharePhotoContent : NSObject -/// Photos to be shared. -@property (nonatomic, copy) NSArray * _Nonnull photos; -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. See documentation -/// for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface FBSDKSharePhotoContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface FBSDKSharePhotoContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Validate that this content contains valid values -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - -@class NSData; - -/// A video for sharing. -SWIFT_CLASS_NAMED("ShareVideo") -@interface FBSDKShareVideo : NSObject -/// The raw video data. -@property (nonatomic, copy) NSData * _Nullable data; -/// The representation of the video in the Photos library. -@property (nonatomic, strong) PHAsset * _Nullable videoAsset; -/// The file URL to the video. -@property (nonatomic, copy) NSURL * _Nullable videoURL; -/// The photo that represents the video. -@property (nonatomic, strong) FBSDKSharePhoto * _Nullable previewPhoto; -/// Convenience method to build a new video object from raw data and an optional preview photo. -/// \param data The Data object that holds the raw video data. -/// -/// \param previewPhoto The photo that represents the video. -/// -- (nonnull instancetype)initWithData:(NSData * _Nonnull)data previewPhoto:(FBSDKSharePhoto * _Nullable)previewPhoto; -/// Convenience method to build a new video object from a PHAsset and an optional preview photo. -/// \param videoAsset The PHAsset that represents the video in the Photos library. -/// -/// \param previewPhoto The photo that represents the video. -/// -- (nonnull instancetype)initWithVideoAsset:(PHAsset * _Nonnull)videoAsset previewPhoto:(FBSDKSharePhoto * _Nullable)previewPhoto; -/// Convenience method to build a new video object from a URL and an optional preview photo. -/// \param videoURL The URL to the video. -/// -/// \param previewPhoto The photo that represents the video. -/// -- (nonnull instancetype)initWithVideoURL:(NSURL * _Nonnull)videoURL previewPhoto:(FBSDKSharePhoto * _Nullable)previewPhoto; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - -@interface FBSDKShareVideo (SWIFT_EXTENSION(FBSDKShareKit)) -/// Asks the receiver to validate that its content or media values are valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - - -/// A model for video content to be shared. -SWIFT_CLASS_NAMED("ShareVideoContent") -@interface FBSDKShareVideoContent : NSObject -/// The video to be shared -@property (nonatomic, strong) FBSDKShareVideo * _Nonnull video; -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. See documentation -/// for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface FBSDKShareVideoContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface FBSDKShareVideoContent (SWIFT_EXTENSION(FBSDKShareKit)) -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - - -/// The common interface for sharing buttons. -/// See FBSendButton and FBShareButton -SWIFT_PROTOCOL_NAMED("SharingButton") SWIFT_AVAILABILITY(tvos,unavailable) -@protocol FBSDKSharingButton -/// The content to be shared. -@property (nonatomic, strong) id _Nullable shareContent; -@end - - - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Headers/FBSDKShareKit.h b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Headers/FBSDKShareKit.h deleted file mode 100644 index 1600ab9e..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Headers/FBSDKShareKit.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Info.plist b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Info.plist deleted file mode 100644 index 3af924c3..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Info.plist and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos.swiftdoc b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos.swiftdoc deleted file mode 100644 index e1999e06..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos.swiftdoc and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos.swiftinterface deleted file mode 100644 index 02645388..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos.swiftinterface +++ /dev/null @@ -1,185 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-tvos12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit -import FBSDKCoreKit -import FBSDKCoreKit_Basics -@_exported import FBSDKShareKit -import Foundation -import Photos -import Swift -import UIKit -import _Concurrency -@objcMembers @objc(FBSDKHashtag) final public class Hashtag : ObjectiveC.NSObject { - @objc final public var stringRepresentation: Swift.String - @objc(initWithString:) public init(_ string: Swift.String) - @objc override final public var description: Swift.String { - @objc get - } - @objc final public var isValid: Swift.Bool { - @objc get - } - @objc override final public var hash: Swift.Int { - @objc get - } - @objc override final public func isEqual(_ object: Any?) -> Swift.Bool - @objc deinit -} -public let ShareErrorDomain: Swift.String -@objc(FBSDKShareError) public enum ShareError : Swift.Int { - case reserved = 200 - case openGraph - case dialogNotAvailable - case unknown - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareLinkContent) final public class ShareLinkContent : ObjectiveC.NSObject { - @objc final public var quote: Swift.String? - @objc final public var contentURL: Foundation.URL? - @objc final public var hashtag: FBSDKShareKit.Hashtag? - @objc final public var peopleIDs: [Swift.String] - @objc final public var placeID: Swift.String? - @objc final public var ref: Swift.String? - @objc final public var pageID: Swift.String? - @objc final public let shareUUID: Swift.String? - @objc override dynamic public init() - @objc deinit -} -extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingContent { - @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@objc(FBSDKShareMedia) public protocol ShareMedia { -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareMediaContent) final public class ShareMediaContent : ObjectiveC.NSObject { - @objc final public var media: [FBSDKShareKit.ShareMedia] - @objc final public var contentURL: Foundation.URL? - @objc final public var hashtag: FBSDKShareKit.Hashtag? - @objc final public var peopleIDs: [Swift.String] - @objc final public var placeID: Swift.String? - @objc final public var ref: Swift.String? - @objc final public var pageID: Swift.String? - @objc final public let shareUUID: Swift.String? - @objc override dynamic public init() - @objc deinit -} -extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingContent { - @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKSharePhoto) final public class SharePhoto : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { - @objc final public var image: UIKit.UIImage? { - @objc get - @objc set - } - @objc final public var imageURL: Foundation.URL? { - @objc get - @objc set - } - @objc final public var photoAsset: Photos.PHAsset? { - @objc get - @objc set - } - @objc final public var isUserGenerated: Swift.Bool - @objc final public var caption: Swift.String? - @objc convenience public init(image: UIKit.UIImage, isUserGenerated: Swift.Bool) - @objc convenience public init(imageURL: Foundation.URL, isUserGenerated: Swift.Bool) - @objc convenience public init(photoAsset: Photos.PHAsset, isUserGenerated: Swift.Bool) - @objc deinit -} -extension FBSDKShareKit.SharePhoto : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSharePhotoContent) final public class SharePhotoContent : ObjectiveC.NSObject { - @objc final public var photos: [FBSDKShareKit.SharePhoto] - @objc final public var contentURL: Foundation.URL? - @objc final public var hashtag: FBSDKShareKit.Hashtag? - @objc final public var peopleIDs: [Swift.String] - @objc final public var placeID: Swift.String? - @objc final public var ref: Swift.String? - @objc final public var pageID: Swift.String? - @objc final public let shareUUID: Swift.String? - @objc override dynamic public init() - @objc deinit -} -extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingContent { - @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKShareVideo) final public class ShareVideo : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { - @objc final public var data: Foundation.Data? { - @objc get - @objc set - } - @objc final public var videoAsset: Photos.PHAsset? { - @objc get - @objc set - } - @objc final public var videoURL: Foundation.URL? { - @objc get - @objc set - } - @objc final public var previewPhoto: FBSDKShareKit.SharePhoto? - @objc convenience public init(data: Foundation.Data, previewPhoto: FBSDKShareKit.SharePhoto? = nil) - @objc convenience public init(videoAsset: Photos.PHAsset, previewPhoto: FBSDKShareKit.SharePhoto? = nil) - @objc convenience public init(videoURL: Foundation.URL, previewPhoto: FBSDKShareKit.SharePhoto? = nil) - @objc deinit -} -extension FBSDKShareKit.ShareVideo : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareVideoContent) final public class ShareVideoContent : ObjectiveC.NSObject { - @objc final public var video: FBSDKShareKit.ShareVideo - @objc final public var contentURL: Foundation.URL? - @objc final public var hashtag: FBSDKShareKit.Hashtag? - @objc final public var peopleIDs: [Swift.String] - @objc final public var placeID: Swift.String? - @objc final public var ref: Swift.String? - @objc final public var pageID: Swift.String? - @objc final public var shareUUID: Swift.String? { - get - } - @objc override dynamic public init() - @objc deinit -} -extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingContent { - @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@available(tvOS, unavailable) -@objc(FBSDKSharingButton) public protocol SharingButton { - @objc var shareContent: FBSDKShareKit.SharingContent? { get set } -} -@objc(FBSDKSharingContent) public protocol SharingContent : FBSDKShareKit.SharingValidatable, ObjectiveC.NSObjectProtocol { - @objc var contentURL: Foundation.URL? { get set } - @objc var hashtag: FBSDKShareKit.Hashtag? { get set } - @objc var peopleIDs: [Swift.String] { get set } - @objc var placeID: Swift.String? { get set } - @objc var ref: Swift.String? { get set } - @objc var pageID: Swift.String? { get set } - @objc var shareUUID: Swift.String? { get } - @objc(addParameters:bridgeOptions:) func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -@objc(FBSDKSharingValidatable) public protocol SharingValidatable { - @objc(validateWithOptions:error:) func validate(options: FBSDKShareKit.ShareBridgeOptions) throws -} -public enum _ShareUtility { -} -extension FBSDKShareKit._ShareUtility { - public static func validateRequiredValue(_ value: Any, named name: Swift.String) throws - public static func validateArgument(_ value: Argument, named name: Swift.String, in possibleValues: Swift.Set) throws where Argument : Swift.Hashable -} -extension FBSDKShareKit.ShareError : Swift.Equatable {} -extension FBSDKShareKit.ShareError : Swift.Hashable {} -extension FBSDKShareKit.ShareError : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index a57ddd8e..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKShareKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit deleted file mode 100644 index 1bd0326c..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/FBSDKShareKit b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/FBSDKShareKit deleted file mode 100755 index 78a60239..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/FBSDKShareKit and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareBridgeOptions.h b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareBridgeOptions.h deleted file mode 100644 index 02dcbb27..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareBridgeOptions.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// Flags to indicate support for newer bridge options beyond the initial 20130410 implementation. -typedef NS_OPTIONS(NSUInteger, FBSDKShareBridgeOptions) { - FBSDKShareBridgeOptionsDefault = 0, - FBSDKShareBridgeOptionsPhotoAsset = 1 << 0, - FBSDKShareBridgeOptionsPhotoImageURL = 1 << 1, // if set, a web-based URL is required; asset, image, and imageURL.isFileURL not allowed - FBSDKShareBridgeOptionsVideoAsset = 1 << 2, - FBSDKShareBridgeOptionsVideoData = 1 << 3, - FBSDKShareBridgeOptionsWebHashtag = 1 << 4, // if set, pass the hashtag as a string value, not an array of one string -} NS_SWIFT_NAME(ShareBridgeOptions); - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareErrorDomain.h b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareErrorDomain.h deleted file mode 100644 index a4dfe609..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareErrorDomain.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - The error domain for all errors from FBSDKShareKit. - - Error codes from the SDK in the range 200-299 are reserved for this domain. - */ -FOUNDATION_EXPORT NSErrorDomain const FBSDKShareErrorDomain; - -NS_ASSUME_NONNULL_END diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h deleted file mode 100644 index e2793988..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareKit-Swift.h +++ /dev/null @@ -1,1196 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef FBSDKSHAREKIT_SWIFT_H -#define FBSDKSHAREKIT_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#import - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBSDKShareKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - -@class NSString; - -/// Represents a single hashtag that can be used with the share dialog. -SWIFT_CLASS_NAMED("Hashtag") -@interface FBSDKHashtag : NSObject -/// The hashtag string. -/// You are responsible for making sure that stringRepresentation is a valid hashtag (a single ‘#’ followed by one or more -/// word characters). Invalid hashtags are ignored when sharing content. You can check validity with thevalid property. -/// @return The hashtag string -@property (nonatomic, copy) NSString * _Nonnull stringRepresentation; -- (nonnull instancetype)initWithString:(NSString * _Nonnull)string OBJC_DESIGNATED_INITIALIZER; -@property (nonatomic, readonly, copy) NSString * _Nonnull description; -/// Tests if a hashtag is valid. -/// A valid hashtag matches the regular expression “#\w+”: A single ‘#’ followed by one or more word characters. -/// @return true if the hashtag is valid, false otherwise. -@property (nonatomic, readonly) BOOL isValid; -@property (nonatomic, readonly) NSUInteger hash; -- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - -/// ShareError -/// Error codes for ShareErrorDomain. -typedef SWIFT_ENUM_NAMED(NSInteger, FBSDKShareError, "ShareError", open) { -/// Reserved - FBSDKShareErrorReserved = 200, -/// The error code for errors from uploading open graph objects. - FBSDKShareErrorOpenGraph = 201, -/// The error code for when a sharing dialog is not available. -/// Use the canShare methods to check for this case before calling show. - FBSDKShareErrorDialogNotAvailable = 202, -/// The error code for unknown errors. - FBSDKShareErrorUnknown = 203, -}; - -@class NSURL; - -/// A model for status and link content to be shared. -SWIFT_CLASS_NAMED("ShareLinkContent") -@interface FBSDKShareLinkContent : NSObject -/// Some quote text of the link. -/// If specified, the quote text will render with custom styling on top of the link. -@property (nonatomic, copy) NSString * _Nullable quote; -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. See documentation -/// for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// An interface for validatable content and media. -SWIFT_PROTOCOL_NAMED("SharingValidatable") -@protocol FBSDKSharingValidatable -/// Validate that this content or media contains valid values. -/// \param options The share bridge options to use for validation. -/// -/// -/// throws: -/// If the values are not valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)options error:(NSError * _Nullable * _Nullable)error; -@end - - -/// A base interface for content to be shared. -SWIFT_PROTOCOL_NAMED("SharingContent") -@protocol FBSDKSharingContent -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. -/// See documentation for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface FBSDKShareLinkContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface FBSDKShareLinkContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Asks the receiver to validate that its content or media values are valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - -/// A protocol for media content (photo or video) to be shared. -SWIFT_PROTOCOL_NAMED("ShareMedia") -@protocol FBSDKShareMedia -@end - - -/// A model for media content (photo or video) to be shared. -SWIFT_CLASS_NAMED("ShareMediaContent") -@interface FBSDKShareMediaContent : NSObject -/// Media to be shared: an array of SharePhoto or ShareVideo -@property (nonatomic, copy) NSArray> * _Nonnull media; -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. See documentation -/// for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface FBSDKShareMediaContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Asks the receiver to validate that its content or media values are valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - -@interface FBSDKShareMediaContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - -@class UIImage; -@class PHAsset; - -/// A photo for sharing. -SWIFT_CLASS_NAMED("SharePhoto") -@interface FBSDKSharePhoto : NSObject -/// If the photo is resident in memory, this method supplies the data. -@property (nonatomic, strong) UIImage * _Nullable image; -/// URL that points to a network location or the location of the photo on disk -@property (nonatomic, copy) NSURL * _Nullable imageURL; -/// The representation of the photo in the Photos library. -@property (nonatomic, strong) PHAsset * _Nullable photoAsset; -/// Specifies whether the photo represented by the receiver was generated by the user (true) -/// or by the application (false). -@property (nonatomic) BOOL isUserGenerated; -/// The user-generated caption for the photo. Note that the ‘caption’ must come from -/// the user, as pre-filled content is forbidden by the Platform Policies (2.3). -@property (nonatomic, copy) NSString * _Nullable caption; -/// Convenience method to build a new photo object with an image. -/// \param image If the photo is resident in memory, this method supplies the data -/// -/// \param isUserGenerated Specifies whether the photo represented by the receiver was generated by the user or by the -/// application -/// -- (nonnull instancetype)initWithImage:(UIImage * _Nonnull)image isUserGenerated:(BOOL)isUserGenerated; -/// Convenience method to build a new photo object with an imageURL. -/// This method should only be used when adding photo content to open graph stories. -/// For example, if you’re trying to share a photo from the web by itself, download the image and use -/// init(image:isUserGenerated:) instead. -/// \param imageURL The URL to the photo -/// -/// \param isUserGenerated Specifies whether the photo represented by the receiver was generated by the user or by the -/// application -/// -- (nonnull instancetype)initWithImageURL:(NSURL * _Nonnull)imageURL isUserGenerated:(BOOL)isUserGenerated; -/// Convenience method to build a new photo object with a PHAsset. -/// \param photoAsset The PHAsset that represents the photo in the Photos library. -/// -/// \param isUserGenerated Specifies whether the photo represented by the receiver was generated by the user or by -/// the application -/// -- (nonnull instancetype)initWithPhotoAsset:(PHAsset * _Nonnull)photoAsset isUserGenerated:(BOOL)isUserGenerated; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - -@interface FBSDKSharePhoto (SWIFT_EXTENSION(FBSDKShareKit)) -/// Asks the receiver to validate that its content or media values are valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - - -/// A model for photo content to be shared. -SWIFT_CLASS_NAMED("SharePhotoContent") -@interface FBSDKSharePhotoContent : NSObject -/// Photos to be shared. -@property (nonatomic, copy) NSArray * _Nonnull photos; -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. See documentation -/// for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface FBSDKSharePhotoContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface FBSDKSharePhotoContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Validate that this content contains valid values -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - -@class NSData; - -/// A video for sharing. -SWIFT_CLASS_NAMED("ShareVideo") -@interface FBSDKShareVideo : NSObject -/// The raw video data. -@property (nonatomic, copy) NSData * _Nullable data; -/// The representation of the video in the Photos library. -@property (nonatomic, strong) PHAsset * _Nullable videoAsset; -/// The file URL to the video. -@property (nonatomic, copy) NSURL * _Nullable videoURL; -/// The photo that represents the video. -@property (nonatomic, strong) FBSDKSharePhoto * _Nullable previewPhoto; -/// Convenience method to build a new video object from raw data and an optional preview photo. -/// \param data The Data object that holds the raw video data. -/// -/// \param previewPhoto The photo that represents the video. -/// -- (nonnull instancetype)initWithData:(NSData * _Nonnull)data previewPhoto:(FBSDKSharePhoto * _Nullable)previewPhoto; -/// Convenience method to build a new video object from a PHAsset and an optional preview photo. -/// \param videoAsset The PHAsset that represents the video in the Photos library. -/// -/// \param previewPhoto The photo that represents the video. -/// -- (nonnull instancetype)initWithVideoAsset:(PHAsset * _Nonnull)videoAsset previewPhoto:(FBSDKSharePhoto * _Nullable)previewPhoto; -/// Convenience method to build a new video object from a URL and an optional preview photo. -/// \param videoURL The URL to the video. -/// -/// \param previewPhoto The photo that represents the video. -/// -- (nonnull instancetype)initWithVideoURL:(NSURL * _Nonnull)videoURL previewPhoto:(FBSDKSharePhoto * _Nullable)previewPhoto; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - -@interface FBSDKShareVideo (SWIFT_EXTENSION(FBSDKShareKit)) -/// Asks the receiver to validate that its content or media values are valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - - -/// A model for video content to be shared. -SWIFT_CLASS_NAMED("ShareVideoContent") -@interface FBSDKShareVideoContent : NSObject -/// The video to be shared -@property (nonatomic, strong) FBSDKShareVideo * _Nonnull video; -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. See documentation -/// for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface FBSDKShareVideoContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface FBSDKShareVideoContent (SWIFT_EXTENSION(FBSDKShareKit)) -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - - -/// The common interface for sharing buttons. -/// See FBSendButton and FBShareButton -SWIFT_PROTOCOL_NAMED("SharingButton") SWIFT_AVAILABILITY(tvos,unavailable) -@protocol FBSDKSharingButton -/// The content to be shared. -@property (nonatomic, strong) id _Nullable shareContent; -@end - - - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif - -#elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef FBSDKSHAREKIT_SWIFT_H -#define FBSDKSHAREKIT_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif - -#if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -#else -# define SWIFT_RUNTIME_NAME(X) -#endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) -#endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) -#endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE -#endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT -#endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT -#endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif - -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif - -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif - -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -#else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -#endif -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#endif - -#import - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="FBSDKShareKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - -@class NSString; - -/// Represents a single hashtag that can be used with the share dialog. -SWIFT_CLASS_NAMED("Hashtag") -@interface FBSDKHashtag : NSObject -/// The hashtag string. -/// You are responsible for making sure that stringRepresentation is a valid hashtag (a single ‘#’ followed by one or more -/// word characters). Invalid hashtags are ignored when sharing content. You can check validity with thevalid property. -/// @return The hashtag string -@property (nonatomic, copy) NSString * _Nonnull stringRepresentation; -- (nonnull instancetype)initWithString:(NSString * _Nonnull)string OBJC_DESIGNATED_INITIALIZER; -@property (nonatomic, readonly, copy) NSString * _Nonnull description; -/// Tests if a hashtag is valid. -/// A valid hashtag matches the regular expression “#\w+”: A single ‘#’ followed by one or more word characters. -/// @return true if the hashtag is valid, false otherwise. -@property (nonatomic, readonly) BOOL isValid; -@property (nonatomic, readonly) NSUInteger hash; -- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - -/// ShareError -/// Error codes for ShareErrorDomain. -typedef SWIFT_ENUM_NAMED(NSInteger, FBSDKShareError, "ShareError", open) { -/// Reserved - FBSDKShareErrorReserved = 200, -/// The error code for errors from uploading open graph objects. - FBSDKShareErrorOpenGraph = 201, -/// The error code for when a sharing dialog is not available. -/// Use the canShare methods to check for this case before calling show. - FBSDKShareErrorDialogNotAvailable = 202, -/// The error code for unknown errors. - FBSDKShareErrorUnknown = 203, -}; - -@class NSURL; - -/// A model for status and link content to be shared. -SWIFT_CLASS_NAMED("ShareLinkContent") -@interface FBSDKShareLinkContent : NSObject -/// Some quote text of the link. -/// If specified, the quote text will render with custom styling on top of the link. -@property (nonatomic, copy) NSString * _Nullable quote; -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. See documentation -/// for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -/// An interface for validatable content and media. -SWIFT_PROTOCOL_NAMED("SharingValidatable") -@protocol FBSDKSharingValidatable -/// Validate that this content or media contains valid values. -/// \param options The share bridge options to use for validation. -/// -/// -/// throws: -/// If the values are not valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)options error:(NSError * _Nullable * _Nullable)error; -@end - - -/// A base interface for content to be shared. -SWIFT_PROTOCOL_NAMED("SharingContent") -@protocol FBSDKSharingContent -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. -/// See documentation for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface FBSDKShareLinkContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface FBSDKShareLinkContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Asks the receiver to validate that its content or media values are valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - -/// A protocol for media content (photo or video) to be shared. -SWIFT_PROTOCOL_NAMED("ShareMedia") -@protocol FBSDKShareMedia -@end - - -/// A model for media content (photo or video) to be shared. -SWIFT_CLASS_NAMED("ShareMediaContent") -@interface FBSDKShareMediaContent : NSObject -/// Media to be shared: an array of SharePhoto or ShareVideo -@property (nonatomic, copy) NSArray> * _Nonnull media; -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. See documentation -/// for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface FBSDKShareMediaContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Asks the receiver to validate that its content or media values are valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - -@interface FBSDKShareMediaContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - -@class UIImage; -@class PHAsset; - -/// A photo for sharing. -SWIFT_CLASS_NAMED("SharePhoto") -@interface FBSDKSharePhoto : NSObject -/// If the photo is resident in memory, this method supplies the data. -@property (nonatomic, strong) UIImage * _Nullable image; -/// URL that points to a network location or the location of the photo on disk -@property (nonatomic, copy) NSURL * _Nullable imageURL; -/// The representation of the photo in the Photos library. -@property (nonatomic, strong) PHAsset * _Nullable photoAsset; -/// Specifies whether the photo represented by the receiver was generated by the user (true) -/// or by the application (false). -@property (nonatomic) BOOL isUserGenerated; -/// The user-generated caption for the photo. Note that the ‘caption’ must come from -/// the user, as pre-filled content is forbidden by the Platform Policies (2.3). -@property (nonatomic, copy) NSString * _Nullable caption; -/// Convenience method to build a new photo object with an image. -/// \param image If the photo is resident in memory, this method supplies the data -/// -/// \param isUserGenerated Specifies whether the photo represented by the receiver was generated by the user or by the -/// application -/// -- (nonnull instancetype)initWithImage:(UIImage * _Nonnull)image isUserGenerated:(BOOL)isUserGenerated; -/// Convenience method to build a new photo object with an imageURL. -/// This method should only be used when adding photo content to open graph stories. -/// For example, if you’re trying to share a photo from the web by itself, download the image and use -/// init(image:isUserGenerated:) instead. -/// \param imageURL The URL to the photo -/// -/// \param isUserGenerated Specifies whether the photo represented by the receiver was generated by the user or by the -/// application -/// -- (nonnull instancetype)initWithImageURL:(NSURL * _Nonnull)imageURL isUserGenerated:(BOOL)isUserGenerated; -/// Convenience method to build a new photo object with a PHAsset. -/// \param photoAsset The PHAsset that represents the photo in the Photos library. -/// -/// \param isUserGenerated Specifies whether the photo represented by the receiver was generated by the user or by -/// the application -/// -- (nonnull instancetype)initWithPhotoAsset:(PHAsset * _Nonnull)photoAsset isUserGenerated:(BOOL)isUserGenerated; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - -@interface FBSDKSharePhoto (SWIFT_EXTENSION(FBSDKShareKit)) -/// Asks the receiver to validate that its content or media values are valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - - -/// A model for photo content to be shared. -SWIFT_CLASS_NAMED("SharePhotoContent") -@interface FBSDKSharePhotoContent : NSObject -/// Photos to be shared. -@property (nonatomic, copy) NSArray * _Nonnull photos; -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. See documentation -/// for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface FBSDKSharePhotoContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface FBSDKSharePhotoContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Validate that this content contains valid values -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - -@class NSData; - -/// A video for sharing. -SWIFT_CLASS_NAMED("ShareVideo") -@interface FBSDKShareVideo : NSObject -/// The raw video data. -@property (nonatomic, copy) NSData * _Nullable data; -/// The representation of the video in the Photos library. -@property (nonatomic, strong) PHAsset * _Nullable videoAsset; -/// The file URL to the video. -@property (nonatomic, copy) NSURL * _Nullable videoURL; -/// The photo that represents the video. -@property (nonatomic, strong) FBSDKSharePhoto * _Nullable previewPhoto; -/// Convenience method to build a new video object from raw data and an optional preview photo. -/// \param data The Data object that holds the raw video data. -/// -/// \param previewPhoto The photo that represents the video. -/// -- (nonnull instancetype)initWithData:(NSData * _Nonnull)data previewPhoto:(FBSDKSharePhoto * _Nullable)previewPhoto; -/// Convenience method to build a new video object from a PHAsset and an optional preview photo. -/// \param videoAsset The PHAsset that represents the video in the Photos library. -/// -/// \param previewPhoto The photo that represents the video. -/// -- (nonnull instancetype)initWithVideoAsset:(PHAsset * _Nonnull)videoAsset previewPhoto:(FBSDKSharePhoto * _Nullable)previewPhoto; -/// Convenience method to build a new video object from a URL and an optional preview photo. -/// \param videoURL The URL to the video. -/// -/// \param previewPhoto The photo that represents the video. -/// -- (nonnull instancetype)initWithVideoURL:(NSURL * _Nonnull)videoURL previewPhoto:(FBSDKSharePhoto * _Nullable)previewPhoto; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - - -@interface FBSDKShareVideo (SWIFT_EXTENSION(FBSDKShareKit)) -/// Asks the receiver to validate that its content or media values are valid. -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - - -/// A model for video content to be shared. -SWIFT_CLASS_NAMED("ShareVideoContent") -@interface FBSDKShareVideoContent : NSObject -/// The video to be shared -@property (nonatomic, strong) FBSDKShareVideo * _Nonnull video; -/// URL for the content being shared. -/// This URL will be checked for all link meta tags for linking in platform specific ways. See documentation -/// for App Links (https://developers.facebook.com/docs/applinks/) -@property (nonatomic, copy) NSURL * _Nullable contentURL; -/// Hashtag for the content being shared. -@property (nonatomic, strong) FBSDKHashtag * _Nullable hashtag; -/// List of IDs for taggable people to tag with this content. -/// See documentation for Taggable Friends -/// (https://developers.facebook.com/docs/graph-api/reference/user/taggable_friends) -@property (nonatomic, copy) NSArray * _Nonnull peopleIDs; -/// The ID for a place to tag with this content. -@property (nonatomic, copy) NSString * _Nullable placeID; -/// A value to be added to the referrer URL when a person follows a link from this shared content on feed. -@property (nonatomic, copy) NSString * _Nullable ref; -/// For shares into Messenger, this pageID will be used to map the app to page and attach attribution to the share. -@property (nonatomic, copy) NSString * _Nullable pageID; -/// A unique identifier for a share involving this content, useful for tracking purposes. -@property (nonatomic, readonly, copy) NSString * _Nullable shareUUID; -- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; -@end - - -@interface FBSDKShareVideoContent (SWIFT_EXTENSION(FBSDKShareKit)) -/// Adds content to an existing dictionary as key/value pairs and returns the -/// updated dictionary -/// @param existingParameters An immutable dictionary of existing values -/// @param bridgeOptions The options for bridging -/// @return A new dictionary with the modified contents -- (NSDictionary * _Nonnull)addParameters:(NSDictionary * _Nonnull)existingParameters bridgeOptions:(FBSDKShareBridgeOptions)bridgeOptions SWIFT_WARN_UNUSED_RESULT; -@end - - -@interface FBSDKShareVideoContent (SWIFT_EXTENSION(FBSDKShareKit)) -- (BOOL)validateWithOptions:(FBSDKShareBridgeOptions)bridgeOptions error:(NSError * _Nullable * _Nullable)error; -@end - - - -/// The common interface for sharing buttons. -/// See FBSendButton and FBShareButton -SWIFT_PROTOCOL_NAMED("SharingButton") SWIFT_AVAILABILITY(tvos,unavailable) -@protocol FBSDKSharingButton -/// The content to be shared. -@property (nonatomic, strong) id _Nullable shareContent; -@end - - - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif - -#endif diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareKit.h b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareKit.h deleted file mode 100644 index 1600ab9e..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Headers/FBSDKShareKit.h +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * All rights reserved. - * - * This source code is licensed under the license found in the - * LICENSE file in the root directory of this source tree. - */ - -#import -#import diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Info.plist b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Info.plist deleted file mode 100644 index 5bc24992..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Info.plist and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc deleted file mode 100644 index b861c39b..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface deleted file mode 100644 index 926a2740..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface +++ /dev/null @@ -1,185 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit -import FBSDKCoreKit -import FBSDKCoreKit_Basics -@_exported import FBSDKShareKit -import Foundation -import Photos -import Swift -import UIKit -import _Concurrency -@objcMembers @objc(FBSDKHashtag) final public class Hashtag : ObjectiveC.NSObject { - @objc final public var stringRepresentation: Swift.String - @objc(initWithString:) public init(_ string: Swift.String) - @objc override final public var description: Swift.String { - @objc get - } - @objc final public var isValid: Swift.Bool { - @objc get - } - @objc override final public var hash: Swift.Int { - @objc get - } - @objc override final public func isEqual(_ object: Any?) -> Swift.Bool - @objc deinit -} -public let ShareErrorDomain: Swift.String -@objc(FBSDKShareError) public enum ShareError : Swift.Int { - case reserved = 200 - case openGraph - case dialogNotAvailable - case unknown - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareLinkContent) final public class ShareLinkContent : ObjectiveC.NSObject { - @objc final public var quote: Swift.String? - @objc final public var contentURL: Foundation.URL? - @objc final public var hashtag: FBSDKShareKit.Hashtag? - @objc final public var peopleIDs: [Swift.String] - @objc final public var placeID: Swift.String? - @objc final public var ref: Swift.String? - @objc final public var pageID: Swift.String? - @objc final public let shareUUID: Swift.String? - @objc override dynamic public init() - @objc deinit -} -extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingContent { - @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@objc(FBSDKShareMedia) public protocol ShareMedia { -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareMediaContent) final public class ShareMediaContent : ObjectiveC.NSObject { - @objc final public var media: [FBSDKShareKit.ShareMedia] - @objc final public var contentURL: Foundation.URL? - @objc final public var hashtag: FBSDKShareKit.Hashtag? - @objc final public var peopleIDs: [Swift.String] - @objc final public var placeID: Swift.String? - @objc final public var ref: Swift.String? - @objc final public var pageID: Swift.String? - @objc final public let shareUUID: Swift.String? - @objc override dynamic public init() - @objc deinit -} -extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingContent { - @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKSharePhoto) final public class SharePhoto : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { - @objc final public var image: UIKit.UIImage? { - @objc get - @objc set - } - @objc final public var imageURL: Foundation.URL? { - @objc get - @objc set - } - @objc final public var photoAsset: Photos.PHAsset? { - @objc get - @objc set - } - @objc final public var isUserGenerated: Swift.Bool - @objc final public var caption: Swift.String? - @objc convenience public init(image: UIKit.UIImage, isUserGenerated: Swift.Bool) - @objc convenience public init(imageURL: Foundation.URL, isUserGenerated: Swift.Bool) - @objc convenience public init(photoAsset: Photos.PHAsset, isUserGenerated: Swift.Bool) - @objc deinit -} -extension FBSDKShareKit.SharePhoto : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSharePhotoContent) final public class SharePhotoContent : ObjectiveC.NSObject { - @objc final public var photos: [FBSDKShareKit.SharePhoto] - @objc final public var contentURL: Foundation.URL? - @objc final public var hashtag: FBSDKShareKit.Hashtag? - @objc final public var peopleIDs: [Swift.String] - @objc final public var placeID: Swift.String? - @objc final public var ref: Swift.String? - @objc final public var pageID: Swift.String? - @objc final public let shareUUID: Swift.String? - @objc override dynamic public init() - @objc deinit -} -extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingContent { - @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKShareVideo) final public class ShareVideo : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { - @objc final public var data: Foundation.Data? { - @objc get - @objc set - } - @objc final public var videoAsset: Photos.PHAsset? { - @objc get - @objc set - } - @objc final public var videoURL: Foundation.URL? { - @objc get - @objc set - } - @objc final public var previewPhoto: FBSDKShareKit.SharePhoto? - @objc convenience public init(data: Foundation.Data, previewPhoto: FBSDKShareKit.SharePhoto? = nil) - @objc convenience public init(videoAsset: Photos.PHAsset, previewPhoto: FBSDKShareKit.SharePhoto? = nil) - @objc convenience public init(videoURL: Foundation.URL, previewPhoto: FBSDKShareKit.SharePhoto? = nil) - @objc deinit -} -extension FBSDKShareKit.ShareVideo : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareVideoContent) final public class ShareVideoContent : ObjectiveC.NSObject { - @objc final public var video: FBSDKShareKit.ShareVideo - @objc final public var contentURL: Foundation.URL? - @objc final public var hashtag: FBSDKShareKit.Hashtag? - @objc final public var peopleIDs: [Swift.String] - @objc final public var placeID: Swift.String? - @objc final public var ref: Swift.String? - @objc final public var pageID: Swift.String? - @objc final public var shareUUID: Swift.String? { - get - } - @objc override dynamic public init() - @objc deinit -} -extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingContent { - @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@available(tvOS, unavailable) -@objc(FBSDKSharingButton) public protocol SharingButton { - @objc var shareContent: FBSDKShareKit.SharingContent? { get set } -} -@objc(FBSDKSharingContent) public protocol SharingContent : FBSDKShareKit.SharingValidatable, ObjectiveC.NSObjectProtocol { - @objc var contentURL: Foundation.URL? { get set } - @objc var hashtag: FBSDKShareKit.Hashtag? { get set } - @objc var peopleIDs: [Swift.String] { get set } - @objc var placeID: Swift.String? { get set } - @objc var ref: Swift.String? { get set } - @objc var pageID: Swift.String? { get set } - @objc var shareUUID: Swift.String? { get } - @objc(addParameters:bridgeOptions:) func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -@objc(FBSDKSharingValidatable) public protocol SharingValidatable { - @objc(validateWithOptions:error:) func validate(options: FBSDKShareKit.ShareBridgeOptions) throws -} -public enum _ShareUtility { -} -extension FBSDKShareKit._ShareUtility { - public static func validateRequiredValue(_ value: Any, named name: Swift.String) throws - public static func validateArgument(_ value: Argument, named name: Swift.String, in possibleValues: Swift.Set) throws where Argument : Swift.Hashable -} -extension FBSDKShareKit.ShareError : Swift.Equatable {} -extension FBSDKShareKit.ShareError : Swift.Hashable {} -extension FBSDKShareKit.ShareError : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc deleted file mode 100644 index b1bc88cc..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc and /dev/null differ diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface deleted file mode 100644 index b85c5399..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/FBSDKShareKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface +++ /dev/null @@ -1,185 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target x86_64-apple-tvos12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKShareKit -import FBSDKCoreKit -import FBSDKCoreKit_Basics -@_exported import FBSDKShareKit -import Foundation -import Photos -import Swift -import UIKit -import _Concurrency -@objcMembers @objc(FBSDKHashtag) final public class Hashtag : ObjectiveC.NSObject { - @objc final public var stringRepresentation: Swift.String - @objc(initWithString:) public init(_ string: Swift.String) - @objc override final public var description: Swift.String { - @objc get - } - @objc final public var isValid: Swift.Bool { - @objc get - } - @objc override final public var hash: Swift.Int { - @objc get - } - @objc override final public func isEqual(_ object: Any?) -> Swift.Bool - @objc deinit -} -public let ShareErrorDomain: Swift.String -@objc(FBSDKShareError) public enum ShareError : Swift.Int { - case reserved = 200 - case openGraph - case dialogNotAvailable - case unknown - public init?(rawValue: Swift.Int) - public typealias RawValue = Swift.Int - public var rawValue: Swift.Int { - get - } -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareLinkContent) final public class ShareLinkContent : ObjectiveC.NSObject { - @objc final public var quote: Swift.String? - @objc final public var contentURL: Foundation.URL? - @objc final public var hashtag: FBSDKShareKit.Hashtag? - @objc final public var peopleIDs: [Swift.String] - @objc final public var placeID: Swift.String? - @objc final public var ref: Swift.String? - @objc final public var pageID: Swift.String? - @objc final public let shareUUID: Swift.String? - @objc override dynamic public init() - @objc deinit -} -extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingContent { - @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -extension FBSDKShareKit.ShareLinkContent : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@objc(FBSDKShareMedia) public protocol ShareMedia { -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareMediaContent) final public class ShareMediaContent : ObjectiveC.NSObject { - @objc final public var media: [FBSDKShareKit.ShareMedia] - @objc final public var contentURL: Foundation.URL? - @objc final public var hashtag: FBSDKShareKit.Hashtag? - @objc final public var peopleIDs: [Swift.String] - @objc final public var placeID: Swift.String? - @objc final public var ref: Swift.String? - @objc final public var pageID: Swift.String? - @objc final public let shareUUID: Swift.String? - @objc override dynamic public init() - @objc deinit -} -extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingContent { - @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -extension FBSDKShareKit.ShareMediaContent : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKSharePhoto) final public class SharePhoto : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { - @objc final public var image: UIKit.UIImage? { - @objc get - @objc set - } - @objc final public var imageURL: Foundation.URL? { - @objc get - @objc set - } - @objc final public var photoAsset: Photos.PHAsset? { - @objc get - @objc set - } - @objc final public var isUserGenerated: Swift.Bool - @objc final public var caption: Swift.String? - @objc convenience public init(image: UIKit.UIImage, isUserGenerated: Swift.Bool) - @objc convenience public init(imageURL: Foundation.URL, isUserGenerated: Swift.Bool) - @objc convenience public init(photoAsset: Photos.PHAsset, isUserGenerated: Swift.Bool) - @objc deinit -} -extension FBSDKShareKit.SharePhoto : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKSharePhotoContent) final public class SharePhotoContent : ObjectiveC.NSObject { - @objc final public var photos: [FBSDKShareKit.SharePhoto] - @objc final public var contentURL: Foundation.URL? - @objc final public var hashtag: FBSDKShareKit.Hashtag? - @objc final public var peopleIDs: [Swift.String] - @objc final public var placeID: Swift.String? - @objc final public var ref: Swift.String? - @objc final public var pageID: Swift.String? - @objc final public let shareUUID: Swift.String? - @objc override dynamic public init() - @objc deinit -} -extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingContent { - @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -extension FBSDKShareKit.SharePhotoContent : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@_hasMissingDesignatedInitializers @objcMembers @objc(FBSDKShareVideo) final public class ShareVideo : ObjectiveC.NSObject, FBSDKShareKit.ShareMedia { - @objc final public var data: Foundation.Data? { - @objc get - @objc set - } - @objc final public var videoAsset: Photos.PHAsset? { - @objc get - @objc set - } - @objc final public var videoURL: Foundation.URL? { - @objc get - @objc set - } - @objc final public var previewPhoto: FBSDKShareKit.SharePhoto? - @objc convenience public init(data: Foundation.Data, previewPhoto: FBSDKShareKit.SharePhoto? = nil) - @objc convenience public init(videoAsset: Photos.PHAsset, previewPhoto: FBSDKShareKit.SharePhoto? = nil) - @objc convenience public init(videoURL: Foundation.URL, previewPhoto: FBSDKShareKit.SharePhoto? = nil) - @objc deinit -} -extension FBSDKShareKit.ShareVideo : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@_inheritsConvenienceInitializers @objcMembers @objc(FBSDKShareVideoContent) final public class ShareVideoContent : ObjectiveC.NSObject { - @objc final public var video: FBSDKShareKit.ShareVideo - @objc final public var contentURL: Foundation.URL? - @objc final public var hashtag: FBSDKShareKit.Hashtag? - @objc final public var peopleIDs: [Swift.String] - @objc final public var placeID: Swift.String? - @objc final public var ref: Swift.String? - @objc final public var pageID: Swift.String? - @objc final public var shareUUID: Swift.String? { - get - } - @objc override dynamic public init() - @objc deinit -} -extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingContent { - @objc(addParameters:bridgeOptions:) final public func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -extension FBSDKShareKit.ShareVideoContent : FBSDKShareKit.SharingValidatable { - @objc(validateWithOptions:error:) final public func validate(options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) throws -} -@available(tvOS, unavailable) -@objc(FBSDKSharingButton) public protocol SharingButton { - @objc var shareContent: FBSDKShareKit.SharingContent? { get set } -} -@objc(FBSDKSharingContent) public protocol SharingContent : FBSDKShareKit.SharingValidatable, ObjectiveC.NSObjectProtocol { - @objc var contentURL: Foundation.URL? { get set } - @objc var hashtag: FBSDKShareKit.Hashtag? { get set } - @objc var peopleIDs: [Swift.String] { get set } - @objc var placeID: Swift.String? { get set } - @objc var ref: Swift.String? { get set } - @objc var pageID: Swift.String? { get set } - @objc var shareUUID: Swift.String? { get } - @objc(addParameters:bridgeOptions:) func addParameters(_ existingParameters: [Swift.String : Any], options bridgeOptions: FBSDKShareKit.ShareBridgeOptions) -> [Swift.String : Any] -} -@objc(FBSDKSharingValidatable) public protocol SharingValidatable { - @objc(validateWithOptions:error:) func validate(options: FBSDKShareKit.ShareBridgeOptions) throws -} -public enum _ShareUtility { -} -extension FBSDKShareKit._ShareUtility { - public static func validateRequiredValue(_ value: Any, named name: Swift.String) throws - public static func validateArgument(_ value: Argument, named name: Swift.String, in possibleValues: Swift.Set) throws where Argument : Swift.Hashable -} -extension FBSDKShareKit.ShareError : Swift.Equatable {} -extension FBSDKShareKit.ShareError : Swift.Hashable {} -extension FBSDKShareKit.ShareError : Swift.RawRepresentable {} diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/module.modulemap b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/module.modulemap deleted file mode 100644 index 3d203af2..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module FBSDKShareKit { - umbrella header "FBSDKShareKit.h" - - export * - module * { export * } -} - -module FBSDKShareKit.Swift { - header "FBSDKShareKit-Swift.h" - requires objc -} diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeResources b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeResources deleted file mode 100644 index cf449b43..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/FBSDKShareKit.framework/_CodeSignature/CodeResources +++ /dev/null @@ -1,223 +0,0 @@ - - - - - files - - Headers/FBSDKShareBridgeOptions.h - - UnSjaUXm5qLeLGXDUNVRzXY9NrQ= - - Headers/FBSDKShareErrorDomain.h - - ccdtzvuodQ/lvKIVoHt8KIM9u2U= - - Headers/FBSDKShareKit-Swift.h - - IlJHIa5V4nIPtBVUcadAmtFAlaE= - - Headers/FBSDKShareKit.h - - 3Vlzn/6bUD/wgctBGh6x9fepcJg= - - Info.plist - - SAhjv1ClwgB7/no8Jm6LD5a57j0= - - Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - gYkBaHa793DE1VHrwr8vWufYdyo= - - Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - i/dhlOvyUUvAE/Fy/rBW8D+/nfQ= - - Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos-simulator.swiftmodule - - gdgCOAT1bYY2uYck/u3CPGs2OHA= - - Modules/FBSDKShareKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - YyiLPTek/7K5hhsFbhS/xNJIrGo= - - Modules/FBSDKShareKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - XaY9ABPr6mTZMyvhspcwCK071+k= - - Modules/FBSDKShareKit.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule - - /jdb7rYNa9r++rffoWEWQ3OJqvc= - - Modules/module.modulemap - - c/1l3+MTRWj+XKPFv/2HWhKeUtA= - - - files2 - - Headers/FBSDKShareBridgeOptions.h - - hash2 - - IxpwBSGJEUrCXBdjRGpZ0yehzDl7wfNF5HReqM5qO/8= - - - Headers/FBSDKShareErrorDomain.h - - hash2 - - Gq/jBWHIi9/+dLPC1EqzBf+XM4GcHg1JpVUb0DiK6jM= - - - Headers/FBSDKShareKit-Swift.h - - hash2 - - N875vXdIkmSsn/87iFfE4oI9jUOMEnsT/ROToqbFweY= - - - Headers/FBSDKShareKit.h - - hash2 - - BizbBQ3VvhD8p64UL0pkalRRg0wPwYLFP3IXGeJnkE4= - - - Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos-simulator.swiftdoc - - hash2 - - bXLJ1jxR2f/4O2o+zY3BzST8Om1UMdj0OZxrm+BwwUc= - - - Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos-simulator.swiftinterface - - hash2 - - fP4poV0893oNxzSArk65p5pjWkUrP+WP1yWt2T5lUEo= - - - Modules/FBSDKShareKit.swiftmodule/arm64-apple-tvos-simulator.swiftmodule - - hash2 - - ZF+QDjTG86odVodpunPwbcX7AI0unBVMIEK/ZR8ZzwI= - - - Modules/FBSDKShareKit.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc - - hash2 - - iKT+zwE7NjVYGAWcg/nPRTrM1ae7+eIqoxXqfIvKIeg= - - - Modules/FBSDKShareKit.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface - - hash2 - - q/re/AQcUxoVHKu5cNSCZHY67pJiYkFrOHd6MPy6ZQw= - - - Modules/FBSDKShareKit.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule - - hash2 - - TuEq3gIaXiAXCbsvft3qyR65Py02nMjDvarC/b02tks= - - - Modules/module.modulemap - - hash2 - - LFKLAS36xoxx786XN6Efo7GDNLqGNFpjOc/zQ1+JRXY= - - - - rules - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^version.plist$ - - - rules2 - - .*\.dSYM($|/) - - weight - 11 - - ^(.*/)?\.DS_Store$ - - omit - - weight - 2000 - - ^.* - - ^.*\.lproj/ - - optional - - weight - 1000 - - ^.*\.lproj/locversion.plist$ - - omit - - weight - 1100 - - ^Base\.lproj/ - - weight - 1010 - - ^Info\.plist$ - - omit - - weight - 20 - - ^PkgInfo$ - - omit - - weight - 20 - - ^embedded\.provisionprofile$ - - weight - 20 - - ^version\.plist$ - - weight - 20 - - - - diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist deleted file mode 100644 index a57ddd8e..00000000 --- a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Info.plist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleIdentifier - com.apple.xcode.dsym.com.facebook.sdk.FBSDKShareKit - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - dSYM - CFBundleSignature - ???? - CFBundleShortVersionString - 1.0 - CFBundleVersion - 15.1.0 - - diff --git a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit b/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit deleted file mode 100644 index 064c7463..00000000 Binary files a/ios/platform/FBSDKShareKit.xcframework/tvos-arm64_x86_64-simulator/dSYMs/FBSDKShareKit.framework.dSYM/Contents/Resources/DWARF/FBSDKShareKit and /dev/null differ